first commit

This commit is contained in:
Net 2024-04-02 11:02:16 +07:00
commit e8ec46d19f
60 changed files with 13652 additions and 0 deletions

12
src/i18n/en-US/index.ts Normal file
View file

@ -0,0 +1,12 @@
// This is just an example,
// so you can safely delete all default props below
export default {
ok: 'Confirm',
cancel: 'Cancel',
failed: 'Failed',
success: 'Success',
search: 'Search',
download: 'Download',
save: 'Save',
};

7
src/i18n/index.ts Normal file
View file

@ -0,0 +1,7 @@
import enUS from './en-US';
import th from './th-th';
export default {
'en-US': enUS,
'th-th': th,
};

9
src/i18n/th-th/index.ts Normal file
View file

@ -0,0 +1,9 @@
export default {
ok: 'ยืนยัน',
cancel: 'ยกเลิก',
failed: 'เกิดข้อผิดพลาด',
success: 'สำเร็จ',
search: 'ค้นหา',
download: 'ดาวน์โหลด',
save: 'บันทึก',
};