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, };