diff --git a/src/i18n/en-US/alert-dialog.ts b/src/i18n/en-US/alert-dialog.ts new file mode 100644 index 00000000..71942ba0 --- /dev/null +++ b/src/i18n/en-US/alert-dialog.ts @@ -0,0 +1,4 @@ +export default { + warning: 'Warning', + warningForgetInput: 'You have incomplete information.', +}; diff --git a/src/i18n/en-US/index.ts b/src/i18n/en-US/index.ts index 254bd0a0..cf5ec9ae 100644 --- a/src/i18n/en-US/index.ts +++ b/src/i18n/en-US/index.ts @@ -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, }; diff --git a/src/i18n/th-th/alert-dialog.ts b/src/i18n/th-th/alert-dialog.ts new file mode 100644 index 00000000..4c5e8001 --- /dev/null +++ b/src/i18n/th-th/alert-dialog.ts @@ -0,0 +1,4 @@ +export default { + warning: 'เตือน', + warningForgetInput: 'คุณกรอกข้อมูลไม่ครบ', +}; diff --git a/src/i18n/th-th/index.ts b/src/i18n/th-th/index.ts index db0a4853..7b8556dd 100644 --- a/src/i18n/th-th/index.ts +++ b/src/i18n/th-th/index.ts @@ -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, };