feat: i18n branch label

This commit is contained in:
Methapon2001 2024-04-10 15:01:10 +07:00
parent edf2a5121f
commit 704f0b1ba8
6 changed files with 28 additions and 2 deletions

View file

@ -0,0 +1,5 @@
export default {
province: 'Province',
district: 'District',
subDistrict: 'Sub-district',
};

4
src/i18n/en-US/branch.ts Normal file
View file

@ -0,0 +1,4 @@
export default {
branchLabel: 'Branch',
branchHQLabel: 'Headquarters',
};

View file

@ -4,6 +4,8 @@ import main from './main';
import drawerComponent from './drawer-component';
import branchMainPage from './branch-main-page';
import personnelMainPage from './personnel-main-page';
import address from './address';
import branch from './branch';
export default {
ok: 'Confirm',
@ -16,7 +18,9 @@ export default {
edit: 'Edit',
delete: 'Delete',
...main,
...address,
...branch,
...drawerComponent,
...branchMainPage,
...personnelMainPage
...personnelMainPage,
};

View file

@ -0,0 +1,5 @@
export default {
province: 'จังหวัด',
district: 'อำเภอ',
subDistrict: 'ตำบล',
};

4
src/i18n/th-th/branch.ts Normal file
View file

@ -0,0 +1,4 @@
export default {
branchLabel: 'สาขา',
branchHQLabel: 'สาขาใหญ่',
};

View file

@ -2,6 +2,8 @@ import main from './main';
import drawerComponent from './drawer-component';
import branchMainPage from './branch-main-page';
import personnelMainPage from './personnel-main-page';
import address from './address';
import branch from './branch';
export default {
ok: 'ยืนยัน',
@ -14,7 +16,9 @@ export default {
edit: 'แก้ไขข้อมูล',
delete: 'ลบข้อมูล',
...main,
...address,
...branch,
...drawerComponent,
...branchMainPage,
...personnelMainPage
...personnelMainPage,
};