@icure/cardinal-prescription-be-react
Version:
This is a Belgian-specific React application for healthcare professionals to manage electronic prescriptions with SAM. Created by iCure.
55 lines (54 loc) • 1.06 kB
text/typescript
export const prescriptionDurationTranslations = {
fr: {
durationUnits: {
day: 'jour',
week: 'semaine',
},
periodicityUnits: {
none: 'aucune',
week: 'semaine',
twoWeeks: '2 semaines',
threeWeeks: '3 semaines',
numberOfDays: 'x nombre de jours',
},
},
en: {
durationUnits: {
day: 'day',
week: 'week',
},
periodicityUnits: {
none: 'none',
week: 'week',
twoWeeks: '2 weeks',
threeWeeks: '3 weeks',
numberOfDays: 'x number of days',
},
},
nl: {
durationUnits: {
day: 'dag',
week: 'week',
},
periodicityUnits: {
none: 'geen',
week: 'week',
twoWeeks: '2 weken',
threeWeeks: '3 weken',
numberOfDays: 'x aantal dagen',
},
},
de: {
durationUnits: {
day: 'tag',
week: 'woche',
},
periodicityUnits: {
none: 'keine',
week: 'woche',
twoWeeks: '2 wochen',
threeWeeks: '3 wochen',
numberOfDays: 'x anzahl der tage',
},
},
};