diff --git a/src/i18n/en-US/customer-main-page.ts b/src/i18n/en-US/customer-main-page.ts new file mode 100644 index 00000000..0f2d4b30 --- /dev/null +++ b/src/i18n/en-US/customer-main-page.ts @@ -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', +}; diff --git a/src/i18n/en-US/index.ts b/src/i18n/en-US/index.ts index af76c6ef..c5824eeb 100644 --- a/src/i18n/en-US/index.ts +++ b/src/i18n/en-US/index.ts @@ -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, }; diff --git a/src/i18n/th-th/customer-main-page.ts b/src/i18n/th-th/customer-main-page.ts new file mode 100644 index 00000000..983a2c04 --- /dev/null +++ b/src/i18n/th-th/customer-main-page.ts @@ -0,0 +1,9 @@ +export default { + costomerManagement: 'จัดการลูกค้า', + costomerTooltipTitle: 'ยังไม่มีข้อมูลนายจ้าง', + costomerTooltipCaption: 'คลิก + เพื่อเพิ่มนายจ้าง', + costomerAdd: 'เพิ่มนายจ้าง', + EMPLOYER: 'นายจ้าง', + WORKER: 'ลูกจ้าง', + costomerStatTitle: 'สรุปจำนวนข้อมูลนายจ้าง', +}; diff --git a/src/i18n/th-th/index.ts b/src/i18n/th-th/index.ts index 7cd568ef..a03b28ef 100644 --- a/src/i18n/th-th/index.ts +++ b/src/i18n/th-th/index.ts @@ -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, };