You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'th_TH',
|
|
today: 'วันนี้',
|
|
now: 'ตอนนี้',
|
|
backToToday: 'กลับไปยังวันนี้',
|
|
ok: 'ตกลง',
|
|
clear: 'ลบล้าง',
|
|
month: 'เดือน',
|
|
year: 'ปี',
|
|
timeSelect: 'เลือกเวลา',
|
|
dateSelect: 'เลือกวัน',
|
|
monthSelect: 'เลือกเดือน',
|
|
yearSelect: 'เลือกปี',
|
|
decadeSelect: 'เลือกทศวรรษ',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D/M/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'เดือนก่อนหน้า (PageUp)',
|
|
nextMonth: 'เดือนถัดไป (PageDown)',
|
|
previousYear: 'ปีก่อนหน้า (Control + left)',
|
|
nextYear: 'ปีถัดไป (Control + right)',
|
|
previousDecade: 'ทศวรรษก่อนหน้า',
|
|
nextDecade: 'ทศวรรษถัดไป',
|
|
previousCentury: 'ศตวรรษก่อนหน้า',
|
|
nextCentury: 'ศตวรรษถัดไป',
|
|
};
|
|
|
|
export default locale;
|