Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

feat(i18n): add translation resources #1668

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
03729e5
feat(i18n): add translation resources
ocBruno Dec 11, 2019
b1e830c
refactor: improve-translation-resources-structure
ocBruno Dec 13, 2019
642d5fe
refactor: organize static translations into subfolders
ocBruno Jan 5, 2020
83923b2
refactor: rename translations folder
ocBruno Jan 5, 2020
761deda
feat(i18n): reorganize public translation resources
ocBruno Jan 7, 2020
98c25b9
fix(i18n): fix file type and import
ocBruno Jan 7, 2020
6e70533
updates components
matteovivona Jan 10, 2020
59680a0
fix(i18n): fix search button properties
ocBruno Jan 12, 2020
dba5165
fix(i18n): fix i18n translation keys and reorganize files
ocBruno Jan 12, 2020
b4135b8
refactor(i18n): reorganize and decouple translation resources
ocBruno Jan 31, 2020
cf305bc
fix(i18n): fix file type
ocBruno Jan 31, 2020
97e01d9
fix(conflict): merge master
ocBruno Jan 31, 2020
0726ac3
fix(i18n): merge changes from upstream
ocBruno Jan 31, 2020
d9b7722
feat(i18n): update and resolve testing and lint issues
ocBruno Jan 31, 2020
f60fcf4
Merge branch 'master' into add-translation-resources
Jan 31, 2020
c7fd937
fix(navbar): add missing i18n t function
ocBruno Jan 31, 2020
553deda
Merge branch 'add-translation-resources' of https://github.com/ocBrun…
ocBruno Jan 31, 2020
1006506
Merge branch 'master' into add-translation-resources
Feb 2, 2020
68bb92c
fix(i18n): update translation resources for enUs and ptBr
ocBruno Feb 2, 2020
0a23b8c
fix(test): update patient slice test to match resource update
ocBruno Feb 3, 2020
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
22 changes: 22 additions & 0 deletions public/locales/ar/translation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"dashboard": {
"label": "لوحة القيادة"
},
"patients": {
"label": "المرضى",
"viewPatients": "عرض المرضى",
"viewPatient": "عرض المريض",
"newPatient": "مريض جديد"
},
"patient": {
"firstName": "الاسم الاول",
"lastName": "الكنية"
},
"actions": {
"edit": "تصحيح",
"save": "حفظ",
"cancel": "إلغاء",
"new": "الجديد",
"list": "قائمة"
}
}
22 changes: 22 additions & 0 deletions public/locales/de/translation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"dashboard": {
"label": "Dashboard"
},
"patients": {
"label": "Patienten",
"viewPatients": "Patienten anzeigen",
"viewPatient": "Patient anzeigen",
"newPatient": "Neuer Patient"
},
"patient": {
"firstName": "Vorname",
"lastName": "Nachname"
},
"actions": {
"edit": "Bearbeiten",
"save": "speichern",
"cancel": "Stornieren",
"new": "Neu",
"list": "Liste"
}
}
22 changes: 22 additions & 0 deletions public/locales/es/translation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"dashboard": {
"label": "Panel"
},
"patients": {
"label": "Pacientes",
"viewPatients": "Ver pacientes",
"viewPatient": "Ver pacientes",
"newPatient": "Nuevo paciente"
},
"patient": {
"firstName": "Nombre de pila",
"lastName": "Apellido"
},
"actions": {
"edit": "Editar",
"save": "Guardar",
"cancel": "Cancelar",
"new": "Nuevo",
"list": "Lista"
}
}
22 changes: 22 additions & 0 deletions public/locales/in/translation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"dashboard": {
"label": "Dasbor"
},
"patients": {
"label": "Pasien",
"viewPatients": "Lihat Pasien",
"viewPatient": "Lihat Pasien",
"newPatient": "Pasien Baru"
},
"patient": {
"firstName": "Nama depan",
"lastName": "Nama keluarga"
},
"actions": {
"edit": "Edit",
"save": "Menyimpan",
"cancel": "Membatalkan",
"new": "Baru",
"list": "Daftar"
}
}
22 changes: 22 additions & 0 deletions public/locales/ja/translation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"dashboard": {
"label": "ダッシュボード"
},
"patients": {
"label": "患者さん",
"viewPatients": "患者を見る",
"viewPatient": "患者を見る",
"newPatient": "新しい患者"
},
"patient": {
"firstName": "ファーストネーム",
"lastName": "苗字"
},
"actions": {
"edit": "編集",
"save": "セーブ",
"cancel": "キャンセル",
"new": "新しい",
"list": "リスト"
}
}
22 changes: 22 additions & 0 deletions public/locales/pt/translation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"dashboard": {
"label": "Painel de controle"
},
"patients": {
"label": "Pacientes",
"viewPatients": "Exibir pacientes",
"viewPatient": "Ver paciente",
"newPatient": "Novo Paciente"
},
"patient": {
"firstName": "Primeiro nome",
"lastName": "Último nome"
},
"actions": {
"edit": "Editar",
"save": "Salvar",
"cancel": "Cancelar",
"new": "Novo",
"list": "Lista"
}
}
22 changes: 22 additions & 0 deletions public/locales/ru/translation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"dashboard": {
"label": "Панель приборов"
},
"patients": {
"label": "Пациенты",
"viewPatients": "Просмотр пациентов",
"viewPatient": "Просмотр пациента",
"newPatient": "Новый пациент"
},
"patient": {
"firstName": "Имя",
"lastName": "Фамилия"
},
"actions": {
"edit": "редактировать",
"save": "Сохранить",
"cancel": "Отмена",
"new": "новый",
"list": "Список"
}
}
22 changes: 22 additions & 0 deletions public/locales/zr/translation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"dashboard": {
"label": "仪表板"
},
"patients": {
"label": "耐心",
"viewPatients": "查看患者",
"viewPatient": "查看患者",
"newPatient": "新病人"
},
"patient": {
"firstName": "名字",
"lastName": "姓"
},
"actions": {
"edit": "编辑",
"save": "保存",
"cancel": "取消",
"new": "新",
"list": "清单"
}
}