feat: bankbook & i18n

This commit is contained in:
puriphatt 2024-08-02 11:13:21 +00:00
parent 5f26c8bcdc
commit 912fb7c4c3
9 changed files with 458 additions and 34 deletions

8
src/i18n/th-th/bank.ts Normal file
View file

@ -0,0 +1,8 @@
export default {
accountNumber: 'เลขที่บัญชี',
bankBranch: 'สาขาธนาคาร',
accountName: 'ชื่อบัญชี',
bankType: 'ประเภทของธนาคาร',
accountStatus: 'สถานะการใช้งาน ',
bankBookNo: 'ช่องทางที่',
};

View file

@ -11,6 +11,7 @@ import employerDialog from './employer-dialog';
import otherDocument from './other-document';
import productService from './product-service';
import alertDialog from './alert-dialog';
import bank from './bank';
export default {
ok: 'ยืนยัน',
agree: 'ตกลง',
@ -72,6 +73,8 @@ export default {
notRecorded: 'คุณยังไม่ได้บันทึก',
editImage: 'แก้ไขรูป',
bankBook: 'บัญชีธนาคาร',
use: 'ใช้งาน',
notUse: 'ไม่ใช้งาน',
...status,
...main,
...address,
@ -85,4 +88,5 @@ export default {
...otherDocument,
...productService,
...alertDialog,
...bank,
};