Skip to content

Commit

Permalink
initial mask for recovery (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
fOppenheimer authored May 4, 2021
1 parent 1fa5878 commit 5aabc39
Show file tree
Hide file tree
Showing 8 changed files with 582 additions and 16 deletions.
4 changes: 4 additions & 0 deletions src/assets/SCSS/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -338,4 +338,8 @@ hr {
display: flex;
flex-direction: column;
height: 100%;
}

.space-five {
padding: 5px;
}
12 changes: 4 additions & 8 deletions src/assets/i18n/de/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@
"totalTestCount": "Gesamtanzahl der Tests",
"positiveTestCount": "Anzahl der positiven Tests",
"successfull-transferred": "Die Daten wurden erfolgreich übermittelt",
"record-vaccination-cert-dat": "Impfpass erstellen",
"record-vaccination-cert-dat": "Impfzertifikat erstellen",
"record-recovery-cert-dat": "Genesungszertifikat erstellen",
"vaccination-cert": "Impfpass erstellen",
"identifierType": "Art des Ausweises",
"country": "Land",
Expand All @@ -90,11 +91,6 @@
"def-lot": "Eine unverwechselbare Kombination von Zahlen und / oder Buchstaben, die eine Charge spezifisch identifiziert",
"adm": "Verwaltungzentrum",
"def-adm": "Name oder Code des Verwaltungszentrums (z. B. Region Halland)",
"PPN": "Ausweisnummer",
"NN": "Nationale Personenkennung",
"CZ": "Staatsbürgerschaftskartennummer",
"HC": "Gesundheitskartennummer",
"NI": "Nationale eindeutige individuelle Kennung",
"MB": "Mitgliedsnummer",
"NH": "National Health Plan Identifier"
"recovery-first-date": "First Positive Test"

}
15 changes: 7 additions & 8 deletions src/assets/i18n/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"successfull-transferred": "Data successfully transferred",
"record-vaccination-cert-dat": "Record vaccination certification",
"record-test-cert-dat": "Record test certification",
"record-recovery-cert-dat": "Record recovery certification",
"vaccination-cert": "Record Vaccination Certification",
"test-cert": "Record Test Certification",
"identifierType": "Identifier Type",
Expand All @@ -96,18 +97,16 @@
"certificateIssuer": "Certificate Issuer",
"adm": "Administering Centre",
"def-adm": "Name or code of administering centre (e.g. Region Halland)",
"PPN": "Passport Number",
"NN": "National Person Identifier",
"CZ": "Citizenship Card Number",
"HC": "Health Card number",
"NI": "National Unique Individual Identifier",
"MB": "Member Number",
"NH": "National Health Plan Identifier",
"testManufacturers": "RAT Test name and manufacturer",
"testResult": "Test Result",
"testType": "Type of Test",
"testName": "NAA Test Name",
"sampleDateTime": "Date/Time of Sample Collection",
"testDateTime": "Date/Time of Test Result",
"testCenter": "Testing Centre"
"testCenter": "Testing Centre",
"recovery-first-date": "First Positive Test Result",
"recovery-test-country": "Country of Test",
"cert-valid-from-go": "Certificate Valid From - To",
"valid-from": "Certificate Valid From",
"valid-to": "Certificate Valid To"
}
1 change: 1 addition & 0 deletions src/components/landing-page.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const LandingPage = (props: any) => {

<Button block className='landing-btn' onClick={navigation!.toRecordVac}>{t('translation:record-vaccination-cert-dat')}</Button>
<Button block className='landing-btn' onClick={navigation!.toRecordTest}>{t('translation:record-test-cert-dat')}</Button>
<Button block className='landing-btn' onClick={navigation!.toRecordRecovery}>{t('translation:record-recovery-cert-dat')}</Button>

</Container>
)
Expand Down
Loading

0 comments on commit 5aabc39

Please sign in to comment.