Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue/98/privacy notice #106

Open
wants to merge 5 commits into
base: issue/110-tirrc-form
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/components/disclaimer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ const Disclaimer = props => {
<div>{t('beforeStart')}</div>
</Box>
<Box pad={{horizontal: 'medium', vertical: 'none'}}>
<Paragraph margin="small">{t('useOfThisForm')}</Paragraph>
<Paragraph margin="small">
{t('legalInformationNotAdvice')}
<span className="disclaimer-bold">{t('doesNotTrackSaveRetain')}</span>
{t('useOfThisForm')}
</Paragraph>

<Paragraph>
{t('lawCanBeFound')}{' '}
<Anchor
Expand Down
4 changes: 4 additions & 0 deletions src/components/disclaimer/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@
color: inherit !important;
margin-bottom: 10px;
}

.disclaimer-bold {
font-weight: bold;
}
6 changes: 5 additions & 1 deletion src/strings/english.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,12 @@ const ENGLISH: TranslateStringsType = {
Home: 'Home',
FAQ: 'FAQ',
beforeStart: 'Before you start...',
legalInformationNotAdvice:
'This form is legal information, not legal advice. While this form in no way terminates your rights as a parent, it does provide a caregiver authority to care for your child(ren). If you are unsure of your rights or needs, you should consult an attorney to discuss your legal needs. ',
doesNotTrackSaveRetain:
'This site does not track, save, or retain any information entered. ',
useOfThisForm:
'This form is legal information, not legal advice. While this form in no way terminates your rights as a parent, it does provide a caregiver authority to care for your child(ren). If you are unsure of your rights or needs, you should consult an attorney to discuss your legal needs. This site does not track, save, or retain any information entered. If you leave this site before completing and downloading the form, you will need to start over. Use of this form is authorized by T.C.A. § 34-6-301 et seq. Completion of this form, along with the proper signatures, is sufficient to authorize enrollment of a minor in school and to authorize medical treatment. However, a school district may require additional documentation/information as permitted by this section of Tennessee law before enrolling a child in school or any extracurricular activities.',
'If you leave this site before completing and downloading the form, you will need to start over. Use of this form is authorized by T.C.A. § 34-6-301 et seq. Completion of this form, along with the proper signatures, is sufficient to authorize enrollment of a minor in school and to authorize medical treatment. However, a school district may require additional documentation/information as permitted by this section of Tennessee law before enrolling a child in school or any extracurricular activities.',
thisFormIsToBeFilled:
'This form is to be filled out and initialed by parent(s)/legal guardian(s).',
MORE_INFORMATION: 'MORE INFORMATION',
Expand Down
2 changes: 2 additions & 0 deletions src/strings/spanish.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ const SPANISH: TranslateStringsType = {
Home: 'Hogar',
FAQ: 'FAQ',
beforeStart: 'Antes de comenzar...',
legalInformationNotAdvice: '',
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bitcode Can you help with the translations here? I don't think that useThisForm is the complete translation. We also broke it up into separate parts so that the Does not track disclaimer is more obvious.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll be glad to, I'm looking into it, sorry for the late reply

doesNotTrackSaveRetain: '',
useOfThisForm:
'El uso de esta froma es autorizado por T.C.A. § 34-6-301 et seq. Al completar esta forma, con las firmas apropiadas, es sufficiente para autorizar inscripción de un menor a una escuela y autorizar trato médico. Aunque, una escuela del distrito escolar pueda requerir documentación/información adicional puede mientras permitida por esta sección de la ley de Tennessee antes de inscribir a un menor en la escuela o cualquier actividad extracurricular.',
thisFormIsToBeFilled:
Expand Down