From 053c94b4945259daae574ca0e4095afcc58801d0 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Wed, 3 Apr 2024 14:22:29 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88?= =?UTF-8?q?=E0=B8=A1=E0=B8=84=E0=B8=B3=E0=B8=82=E0=B8=AD=E0=B8=87=20=20dra?= =?UTF-8?q?wer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/i18n/en-US/drawer-component.ts | 13 +++++++++++++ src/i18n/en-US/index.ts | 2 ++ src/i18n/th-th/drawer-component.ts | 13 +++++++++++++ src/i18n/th-th/index.ts | 3 +++ 4 files changed, 31 insertions(+) create mode 100644 src/i18n/en-US/drawer-component.ts create mode 100644 src/i18n/th-th/drawer-component.ts diff --git a/src/i18n/en-US/drawer-component.ts b/src/i18n/en-US/drawer-component.ts new file mode 100644 index 00000000..b511b0ed --- /dev/null +++ b/src/i18n/en-US/drawer-component.ts @@ -0,0 +1,13 @@ +export default { + drawerDashboard: 'Dashboard', + drawerBranchManagement: 'Branch Management', + drawerPersonnelManagement: 'Personnel Management', + drawerCustomerManagement: 'Customer Management', + drawerProductsAndServices: 'Products and Services', + drawerQuotation: 'Quotation', + drawerRequestList: 'Request List', + drawerWorkOrder: 'Work Order', + drawerInvoice: 'Invoice', + drawerAccountingLedger: 'Accounting Ledger', + drawerReport: 'Report', +}; diff --git a/src/i18n/en-US/index.ts b/src/i18n/en-US/index.ts index 64c0e5cf..d7f1fb3c 100644 --- a/src/i18n/en-US/index.ts +++ b/src/i18n/en-US/index.ts @@ -1,5 +1,6 @@ // This is just an example, // so you can safely delete all default props below +import drawerComponent from './drawer-component'; export default { ok: 'Confirm', @@ -9,4 +10,5 @@ export default { search: 'Search', download: 'Download', save: 'Save', + ...drawerComponent, }; diff --git a/src/i18n/th-th/drawer-component.ts b/src/i18n/th-th/drawer-component.ts new file mode 100644 index 00000000..80cb7c46 --- /dev/null +++ b/src/i18n/th-th/drawer-component.ts @@ -0,0 +1,13 @@ +export default { + drawerDashboard: 'Dashboard', + drawerBranchManagement: 'การจัดการสาขา', + drawerPersonnelManagement: 'จัดการบุคลากร', + drawerCustomerManagement: 'จัดการลูกค้า', + drawerProductsAndServices: 'สินค้าและบริการ', + drawerQuotation: 'ใบเสนอราคา', + drawerRequestList: 'รายการคําขอ', + drawerWorkOrder: 'ใบสั่งงาน', + drawerInvoice: 'ใบรับสินค้า', + drawerAccountingLedger: 'รายการทางบัญชี', + drawerReport: 'รายงาน', +}; diff --git a/src/i18n/th-th/index.ts b/src/i18n/th-th/index.ts index 2b72d1bf..75e5d2ea 100644 --- a/src/i18n/th-th/index.ts +++ b/src/i18n/th-th/index.ts @@ -1,3 +1,5 @@ +import drawerComponent from './drawer-component'; + export default { ok: 'ยืนยัน', cancel: 'ยกเลิก', @@ -6,4 +8,5 @@ export default { search: 'ค้นหา', download: 'ดาวน์โหลด', save: 'บันทึก', + ...drawerComponent, };