From 684f619168783ccfdc34b2fad7e43657abbc0f40 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Fri, 5 Apr 2024 17:19:39 +0700 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E0=B9=80=E0=B9=80=E0=B8=81=E0=B9=89?= =?UTF-8?q?=20=E0=B9=80=E0=B8=AD=E0=B8=B2=20th=20=E0=B8=AD=E0=B8=AD?= =?UTF-8?q?=E0=B8=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/address/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stores/address/index.ts b/src/stores/address/index.ts index da89566e..fe1be66b 100644 --- a/src/stores/address/index.ts +++ b/src/stores/address/index.ts @@ -10,7 +10,7 @@ export interface SubDistrict { districtId: string; zipCode: string; nameEN: string; - nameTH: string; + name: string; id: string; } @@ -21,7 +21,7 @@ export interface District { createdBy: string; provinceId: string; nameEN: string; - nameTH: string; + name: string; id: string; } @@ -31,7 +31,7 @@ export interface Province { createdAt: string; createdBy: string; nameEN: string; - nameTH: string; + name: string; id: string; } From bdf5d09375f4e400573e35161a2fae18f71160ae Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Fri, 5 Apr 2024 17:20:12 +0700 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20=E0=B9=80=E0=B8=9E=E0=B8=B4?= =?UTF-8?q?=E0=B9=88=E0=B8=A1=20=20i18n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/i18n/en-US/branch-main-page.ts | 5 ++++- src/i18n/th-th/branch-main-page.ts | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/i18n/en-US/branch-main-page.ts b/src/i18n/en-US/branch-main-page.ts index 1dcb5dde..65548f09 100644 --- a/src/i18n/en-US/branch-main-page.ts +++ b/src/i18n/en-US/branch-main-page.ts @@ -1,5 +1,8 @@ export default { branchManagement: 'Branch Management', - branchNoMainOfficeYet: 'No main office yet?', + branchNoMainOfficeYet: 'No Main Office Yet', branchClickToCreateMainOffice: 'Click + to create a main office', + closedStatus: 'Closed', + btnCreate: 'Create Main Office', + headQuarters: 'Headquarters', }; diff --git a/src/i18n/th-th/branch-main-page.ts b/src/i18n/th-th/branch-main-page.ts index 882b7fbc..1ddb2eb7 100644 --- a/src/i18n/th-th/branch-main-page.ts +++ b/src/i18n/th-th/branch-main-page.ts @@ -2,4 +2,7 @@ export default { branchManagement: 'จัดการสาขา', branchNoMainOfficeYet: 'ยังไม่มีสำนักงานใหญ่', branchClickToCreateMainOffice: 'คลิก + เพื่อสร้างสำนักงานใหญ่', // Click to create a main office. + closedStatus: 'ปิด', + btnCreate: 'สร้างสาขาใหญ่', + headQuarters: 'สำนักงานใหญ่ ', };