feat: i18n alert dialog

This commit is contained in:
puriphatt 2024-06-13 03:49:03 +00:00
parent f228f4cfda
commit 34cb58fbfd
4 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,4 @@
export default {
warning: 'Warning',
warningForgetInput: 'You have incomplete information.',
};

View file

@ -10,6 +10,7 @@ import customerMainPage from './customer-main-page';
import employerDialog from './employer-dialog';
import otherDocument from './other-document';
import productService from './product-service';
import alertDialog from './alert-dialog';
export default {
ok: 'Confirm',
agree: 'Agree',
@ -55,4 +56,5 @@ export default {
...employerDialog,
...otherDocument,
...productService,
...alertDialog,
};

View file

@ -0,0 +1,4 @@
export default {
warning: 'เตือน',
warningForgetInput: 'คุณกรอกข้อมูลไม่ครบ',
};

View file

@ -10,6 +10,7 @@ import status from './status';
import employerDialog from './employer-dialog';
import otherDocument from './other-document';
import productService from './product-service';
import alertDialog from './alert-dialog';
export default {
ok: 'ยืนยัน',
agree: 'ตกลง',
@ -55,4 +56,5 @@ export default {
...employerDialog,
...otherDocument,
...productService,
...alertDialog,
};