diff --git a/src/i18n/en-US/index.ts b/src/i18n/en-US/index.ts index d8632cf9..f91326f8 100644 --- a/src/i18n/en-US/index.ts +++ b/src/i18n/en-US/index.ts @@ -57,6 +57,7 @@ export default { uploadFile: 'Upload File', newUpload: 'New Upload', baseOnDevice: 'Base on Device', + person: 'Person', ...status, ...main, ...address, diff --git a/src/i18n/th-th/index.ts b/src/i18n/th-th/index.ts index 14f9f442..cf4ce605 100644 --- a/src/i18n/th-th/index.ts +++ b/src/i18n/th-th/index.ts @@ -57,6 +57,7 @@ export default { uploadFile: 'อัปโหลดไฟล์', newUpload: 'อัปโหลดใหม่', baseOnDevice: 'สีตามอุปกรณ์', + person: 'คน', ...status, ...main, ...address, diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index 7bfc86c3..a8d017b9 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -1370,7 +1370,7 @@ watch([inputSearch, currentStatus], async () => { size="18px" />
- {{ statsEmployeeGender.female }} คน + {{ statsEmployeeGender.female ?? 0 }} {{ $t('person') }}
@@ -1389,7 +1389,7 @@ watch([inputSearch, currentStatus], async () => { >
- {{ statsEmployeeGender.male }} คน + {{ statsEmployeeGender.male ?? 0 }} {{ $t('person') }}