feat: เพิ่ม i18n ของ mainPage branch

This commit is contained in:
Net 2024-04-03 14:55:37 +07:00
parent 4a4bf587f0
commit 130622962f
5 changed files with 26 additions and 8 deletions

View file

@ -0,0 +1,5 @@
export default {
branchManagement: 'Branch Management',
branchNoMainOfficeYet: 'No main office yet',
branchClickToCreateMainOffice: 'Click + to create a main office',
};

View file

@ -1,6 +1,7 @@
// This is just an example,
// so you can safely delete all default props below
import drawerComponent from './drawer-component';
import branchMainPage from './branch-main-page';
export default {
ok: 'Confirm',
@ -11,4 +12,5 @@ export default {
download: 'Download',
save: 'Save',
...drawerComponent,
...branchMainPage,
};

View file

@ -0,0 +1,5 @@
export default {
branchManagement: 'จัดการสาขา',
branchNoMainOfficeYet: 'ยังไม่มีสำนักงานใหญ่',
branchClickToCreateMainOffice: 'คลิก + เพื่อสร้างสำนักงานใหญ่', // Click to create a main office.
};

View file

@ -1,4 +1,5 @@
import drawerComponent from './drawer-component';
import branchMainPage from './branch-main-page';
export default {
ok: 'ยืนยัน',
@ -9,4 +10,5 @@ export default {
download: 'ดาวน์โหลด',
save: 'บันทึก',
...drawerComponent,
...branchMainPage,
};