feat:เพิ่ม i18n

This commit is contained in:
Net 2024-04-22 13:42:43 +07:00
parent 325b44f92b
commit 647876d113
4 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,9 @@
export default {
costomerManagement: 'Customer Management',
costomerTooltipTitle: 'No employer data available',
costomerTooltipCaption: 'Click + to add an employer',
costomerAdd: 'Add Employer',
EMPLOYER: 'Employer',
WORKER: 'Employee',
costomerStatTitle: 'Summary of Employer Data',
};

View file

@ -6,6 +6,7 @@ import branch from './branch';
import user from './user';
import formDialog from './form-dialog';
import status from './status';
import customerMainPage from './customer-main-page';
export default {
ok: 'Confirm',
@ -40,4 +41,5 @@ export default {
...drawerComponent,
...personnelMainPage,
...formDialog,
...customerMainPage,
};

View file

@ -0,0 +1,9 @@
export default {
costomerManagement: 'จัดการลูกค้า',
costomerTooltipTitle: 'ยังไม่มีข้อมูลนายจ้าง',
costomerTooltipCaption: 'คลิก + เพื่อเพิ่มนายจ้าง',
costomerAdd: 'เพิ่มนายจ้าง',
EMPLOYER: 'นายจ้าง',
WORKER: 'ลูกจ้าง',
costomerStatTitle: 'สรุปจำนวนข้อมูลนายจ้าง',
};

View file

@ -1,6 +1,7 @@
import main from './main';
import drawerComponent from './drawer-component';
import personnelMainPage from './personnel-main-page';
import customerMainPage from './customer-main-page';
import address from './address';
import branch from './branch';
import user from './user';
@ -40,4 +41,5 @@ export default {
...drawerComponent,
...personnelMainPage,
...formDialog,
...customerMainPage,
};