refactor: add i18n
This commit is contained in:
parent
6064d0b713
commit
05d1e28590
2 changed files with 70 additions and 0 deletions
|
|
@ -128,7 +128,31 @@ export default {
|
||||||
basicInfo: 'Basic Information',
|
basicInfo: 'Basic Information',
|
||||||
branch: 'Branch',
|
branch: 'Branch',
|
||||||
},
|
},
|
||||||
|
|
||||||
instance: '{index} instance',
|
instance: '{index} instance',
|
||||||
|
|
||||||
|
prefix: {
|
||||||
|
mr: 'Mr.',
|
||||||
|
mrs: 'Mrs.',
|
||||||
|
miss: 'Miss.',
|
||||||
|
},
|
||||||
|
|
||||||
|
prefixName: 'Prefix',
|
||||||
|
legalPersonNo: 'Legal Entity Registration Number',
|
||||||
|
registerName: 'Company Name',
|
||||||
|
registerNameEN: 'Company Name (EN)',
|
||||||
|
registerDate: 'Registered On',
|
||||||
|
registerCompanyName: 'Registered Name',
|
||||||
|
authorizedCapital: 'Authorized Capital',
|
||||||
|
|
||||||
|
workplace: 'Workplace',
|
||||||
|
workplaceEN: 'Workplace (EN)',
|
||||||
|
address: 'Address',
|
||||||
|
addressEN: 'Address (EN)',
|
||||||
|
branchCode: 'Branch Code',
|
||||||
|
customerCode: 'Employer Code',
|
||||||
|
legalPersonCode: 'Legal Entity Code',
|
||||||
|
|
||||||
codeAbbrev: 'Company Abbreviation',
|
codeAbbrev: 'Company Abbreviation',
|
||||||
codeNumber: 'Company Number',
|
codeNumber: 'Company Number',
|
||||||
registeredBranch: 'Registered Branch',
|
registeredBranch: 'Registered Branch',
|
||||||
|
|
@ -136,6 +160,19 @@ export default {
|
||||||
customerNameEN: 'Company Name (EN)',
|
customerNameEN: 'Company Name (EN)',
|
||||||
personName: 'Customer Name',
|
personName: 'Customer Name',
|
||||||
taxIdentificationNumber: 'Tax Identification Number',
|
taxIdentificationNumber: 'Tax Identification Number',
|
||||||
|
branch: {
|
||||||
|
title: 'Branch {name}',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
table: {
|
||||||
|
orderNumber: 'No.',
|
||||||
|
fullname: 'Full Name',
|
||||||
|
businessTypePure: 'Business Type',
|
||||||
|
address: 'Address',
|
||||||
|
workPlace: 'Workplace',
|
||||||
|
contactName: 'Contact Name',
|
||||||
|
contactPhone: 'Contact Phone',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
customerBranch: {
|
customerBranch: {
|
||||||
|
|
|
||||||
|
|
@ -130,7 +130,30 @@ export default {
|
||||||
basicInfo: 'ข้อมูลพื้นฐาน',
|
basicInfo: 'ข้อมูลพื้นฐาน',
|
||||||
branch: 'ข้อมูลสาขา',
|
branch: 'ข้อมูลสาขา',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
prefix: {
|
||||||
|
mr: 'Mr.',
|
||||||
|
mrs: 'Mrs.',
|
||||||
|
miss: 'Miss.',
|
||||||
|
},
|
||||||
|
|
||||||
|
prefixName: 'คํานําหน้า',
|
||||||
instance: 'ครั้งที่ {index}',
|
instance: 'ครั้งที่ {index}',
|
||||||
|
legalPersonNo: 'ทะเบียนนิติบุคคลเลขที่',
|
||||||
|
registerName: 'ชื่อบริษัท',
|
||||||
|
registerNameEN: 'ชื่อบริษัท (EN)',
|
||||||
|
registerDate: 'จดทะเบียนเมื่อ',
|
||||||
|
registerCompanyName: 'จดทะเบียนชื่อ',
|
||||||
|
authorizedCapital: 'ทุนที่จดทะเบียน',
|
||||||
|
|
||||||
|
workplace: 'สถานที่ทํางาน',
|
||||||
|
workplaceEN: 'สถานที่ทํางาน (EN)',
|
||||||
|
address: 'ที่อยู่',
|
||||||
|
addressEN: 'ที่อยู่ (EN)',
|
||||||
|
branchCode: 'รหัสสาขา',
|
||||||
|
customerCode: 'รหัสนายจ้าง',
|
||||||
|
legalPersonCode: 'รหัสนิติบุคคล',
|
||||||
|
|
||||||
codeAbbrev: 'ชื่อย่อบริษัท',
|
codeAbbrev: 'ชื่อย่อบริษัท',
|
||||||
codeNumber: 'เลขประจำตัวบริษัท',
|
codeNumber: 'เลขประจำตัวบริษัท',
|
||||||
registeredBranch: 'สาขาที่ลงทะเบียน',
|
registeredBranch: 'สาขาที่ลงทะเบียน',
|
||||||
|
|
@ -142,6 +165,16 @@ export default {
|
||||||
title: 'สาขาที่ {name}',
|
title: 'สาขาที่ {name}',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
table: {
|
||||||
|
orderNumber: 'ลําดับ',
|
||||||
|
fullname: 'ชื่อ-นามสกุล',
|
||||||
|
businessTypePure: 'ประเภทกิจการ',
|
||||||
|
address: 'ที่อยู่',
|
||||||
|
workPlace: 'สถานที่ทํางาน',
|
||||||
|
contactName: 'ชื่อผู้ติดต่อ',
|
||||||
|
contactPhone: 'โทรศัพท์ผู้ติดต่อ',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
customerBranch: {
|
customerBranch: {
|
||||||
tab: {
|
tab: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue