From 647876d11387d3bfb42bc163872396d271f746e6 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Mon, 22 Apr 2024 13:42:43 +0700 Subject: [PATCH] =?UTF-8?q?feat:=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88?= =?UTF-8?q?=E0=B8=A1=20=20i18n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/i18n/en-US/customer-main-page.ts | 9 +++++++++ src/i18n/en-US/index.ts | 2 ++ src/i18n/th-th/customer-main-page.ts | 9 +++++++++ src/i18n/th-th/index.ts | 2 ++ 4 files changed, 22 insertions(+) create mode 100644 src/i18n/en-US/customer-main-page.ts create mode 100644 src/i18n/th-th/customer-main-page.ts 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, };