diff --git a/src/i18n/en-US/address.ts b/src/i18n/en-US/address.ts index 55f3eea5..2f531b9c 100644 --- a/src/i18n/en-US/address.ts +++ b/src/i18n/en-US/address.ts @@ -1,4 +1,5 @@ export default { + address: 'Address', province: 'Province', district: 'District', subDistrict: 'Sub-district', diff --git a/src/i18n/en-US/index.ts b/src/i18n/en-US/index.ts index 0b62b165..0e051b34 100644 --- a/src/i18n/en-US/index.ts +++ b/src/i18n/en-US/index.ts @@ -6,6 +6,7 @@ import branchMainPage from './branch-main-page'; import personnelMainPage from './personnel-main-page'; import address from './address'; import branch from './branch'; +import user from './user'; export default { ok: 'Confirm', @@ -20,6 +21,7 @@ export default { ...main, ...address, ...branch, + ...user, ...drawerComponent, ...branchMainPage, ...personnelMainPage, diff --git a/src/i18n/en-US/user.ts b/src/i18n/en-US/user.ts new file mode 100644 index 00000000..f4288221 --- /dev/null +++ b/src/i18n/en-US/user.ts @@ -0,0 +1,5 @@ +export default { + firstname: 'First Name', + lastname: 'Last Name', + fullname: 'Full Name', +}; diff --git a/src/i18n/th-th/address.ts b/src/i18n/th-th/address.ts index 02d8a730..bde15a68 100644 --- a/src/i18n/th-th/address.ts +++ b/src/i18n/th-th/address.ts @@ -1,4 +1,5 @@ export default { + address: 'ที่อยู่', province: 'จังหวัด', district: 'อำเภอ', subDistrict: 'ตำบล', diff --git a/src/i18n/th-th/index.ts b/src/i18n/th-th/index.ts index ee36a836..434580d2 100644 --- a/src/i18n/th-th/index.ts +++ b/src/i18n/th-th/index.ts @@ -4,6 +4,7 @@ import branchMainPage from './branch-main-page'; import personnelMainPage from './personnel-main-page'; import address from './address'; import branch from './branch'; +import user from './user'; export default { ok: 'ยืนยัน', @@ -18,6 +19,7 @@ export default { ...main, ...address, ...branch, + ...user, ...drawerComponent, ...branchMainPage, ...personnelMainPage, diff --git a/src/i18n/th-th/user.ts b/src/i18n/th-th/user.ts new file mode 100644 index 00000000..27e8d431 --- /dev/null +++ b/src/i18n/th-th/user.ts @@ -0,0 +1,5 @@ +export default { + firstname: 'ชื่อ', + lastname: 'นามสกุล', + fullname: 'ชื่อ-นามสกุล', +};