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

Commit

Permalink
feat(i18n): add translation resources
Browse files Browse the repository at this point in the history
Add 8 other most used languages on the internet to static i18n translation resources with initial
rough translations from google tranlsate.
  • Loading branch information
ocBruno committed Dec 11, 2019
1 parent b7171aa commit 03729e5
Show file tree
Hide file tree
Showing 8 changed files with 176 additions and 0 deletions.
22 changes: 22 additions & 0 deletions public/locales/ar/translation.json
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -0,0 +1,22 @@
{
"dashboard": {
"label": "仪表板"
},
"patients": {
"label": "耐心",
"viewPatients": "查看患者",
"viewPatient": "查看患者",
"newPatient": "新病人"
},
"patient": {
"firstName": "名字",
"lastName": ""
},
"actions": {
"edit": "编辑",
"save": "保存",
"cancel": "取消",
"new": "",
"list": "清单"
}
}

0 comments on commit 03729e5

Please sign in to comment.