This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(i18n): update and resolve testing and lint issues
fix #1668
- Loading branch information
Showing
51 changed files
with
241 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export default { | ||
"actions": { | ||
"edit": "تصحيح", | ||
"save": "حفظ", | ||
"cancel": "إلغاء", | ||
"new": "الجديد", | ||
"list": "قائمة" | ||
} | ||
actions: { | ||
edit: 'تصحيح', | ||
save: 'حفظ', | ||
cancel: 'إلغاء', | ||
new: 'الجديد', | ||
list: 'قائمة', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export default { | ||
"dashboard": { | ||
"label": "لوحة القيادة" | ||
} | ||
dashboard: { | ||
label: 'لوحة القيادة', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export default { | ||
"patient": { | ||
"firstName": "الاسم الاول", | ||
"lastName": "الكنية" | ||
} | ||
patient: { | ||
firstName: 'الاسم الاول', | ||
lastName: 'الكنية', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export default { | ||
"patients": { | ||
"label": "المرضى", | ||
"viewPatients": "عرض المرضى", | ||
"viewPatient": "عرض المريض", | ||
"newPatient": "مريض جديد" | ||
} | ||
patients: { | ||
label: 'المرضى', | ||
viewPatients: 'عرض المرضى', | ||
viewPatient: 'عرض المريض', | ||
newPatient: 'مريض جديد', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export default { | ||
"actions": { | ||
"edit": "Bearbeiten", | ||
"save": "speichern", | ||
"cancel": "Stornieren", | ||
"new": "Neu", | ||
"list": "Liste" | ||
} | ||
actions: { | ||
edit: 'Bearbeiten', | ||
save: 'speichern', | ||
cancel: 'Stornieren', | ||
new: 'Neu', | ||
list: 'Liste', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export default { | ||
"dashboard": { | ||
"label": "Instrumententafel" | ||
} | ||
dashboard: { | ||
label: 'Instrumententafel', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export default { | ||
"patient": { | ||
"firstName": "Vorname", | ||
"lastName": "Nachname" | ||
} | ||
patient: { | ||
firstName: 'Vorname', | ||
lastName: 'Nachname', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export default { | ||
"patients": { | ||
"label": "Patienten", | ||
"viewPatients": "Patienten anzeigen", | ||
"viewPatient": "Patient anzeigen", | ||
"newPatient": "Neuer Patient" | ||
} | ||
patients: { | ||
label: 'Patienten', | ||
viewPatients: 'Patienten anzeigen', | ||
viewPatient: 'Patient anzeigen', | ||
newPatient: 'Neuer Patient', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export default { | ||
"actions": { | ||
"edit": "Edit", | ||
"save": "Save", | ||
"cancel": "Cancel", | ||
"new": "New", | ||
"list": "List" | ||
} | ||
actions: { | ||
edit: 'Edit', | ||
save: 'Save', | ||
cancel: 'Cancel', | ||
new: 'New', | ||
list: 'List', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export default { | ||
"dashboard": { | ||
"label": "Dashboard" | ||
} | ||
dashboard: { | ||
label: 'Dashboard', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export default { | ||
"patient": { | ||
"firstName": "First Name", | ||
"lastName": "Last Name" | ||
} | ||
patient: { | ||
firstName: 'First Name', | ||
lastName: 'Last Name', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export default { | ||
"patients": { | ||
"label": "Patients", | ||
"viewPatients": "View Patients", | ||
"viewPatient": "View Patient", | ||
"newPatient": "New Patient" | ||
} | ||
patients: { | ||
label: 'Patients', | ||
viewPatients: 'View Patients', | ||
viewPatient: 'View Patient', | ||
newPatient: 'New Patient', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export default { | ||
"actions": { | ||
"edit": "Editar", | ||
"save": "Guardar", | ||
"cancel": "Cancelar", | ||
"new": "Nuevo", | ||
"list": "Lista" | ||
} | ||
actions: { | ||
edit: 'Editar', | ||
save: 'Guardar', | ||
cancel: 'Cancelar', | ||
new: 'Nuevo', | ||
list: 'Lista', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export default { | ||
"dashboard": { | ||
"label": "Panel" | ||
} | ||
dashboard: { | ||
label: 'Panel', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export default { | ||
"patient": { | ||
"firstName": "Nombre de pila", | ||
"lastName": "Apellido" | ||
} | ||
patient: { | ||
firstName: 'Nombre de pila', | ||
lastName: 'Apellido', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export default { | ||
"patients": { | ||
"label": "Pacientes", | ||
"viewPatients": "Ver pacientes", | ||
"viewPatient": "Ver pacientes", | ||
"newPatient": "Nuevo paciente" | ||
} | ||
patients: { | ||
label: 'Pacientes', | ||
viewPatients: 'Ver pacientes', | ||
viewPatient: 'Ver pacientes', | ||
newPatient: 'Nuevo paciente', | ||
}, | ||
} |
Oops, something went wrong.