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.4 KiB
33 lines
1.4 KiB
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'km',
|
|
today: 'ថ្ងៃនេះ',
|
|
now: 'ឥឡូវនេះ',
|
|
backToToday: 'ត្រលប់ទៅថ្ងៃនេះ',
|
|
ok: 'កំណត់',
|
|
timeSelect: 'រយៈពេលជ្រើសរើស',
|
|
dateSelect: 'ជ្រើសរើសកាលបរិច្ឆេទ',
|
|
weekSelect: 'ជ្រើសរើសសប្តាហ៍',
|
|
clear: 'ច្បាស់',
|
|
month: 'ខែ',
|
|
year: 'ឆ្នាំ',
|
|
previousMonth: 'ខែមុន (ឡើងទំព័រ)',
|
|
nextMonth: 'ខែបន្ទាប់ (ប៊ូតុងចុះទំព័រ)',
|
|
monthSelect: 'ជ្រើសរើសខែ',
|
|
yearSelect: 'ជ្រើសរើសឆ្នាំ',
|
|
decadeSelect: 'ជ្រើសរើសអាយុ',
|
|
yearFormat: 'YYYY',
|
|
dayFormat: 'D',
|
|
dateFormat: 'YYYY-M-D',
|
|
dateTimeFormat: 'YYYY-M-D HH:mm:ss',
|
|
previousYear: 'ឆ្នាំមុន (Controlគ្រាប់ចុចបូកព្រួញខាងឆ្វេង)',
|
|
nextYear: 'ឆ្នាំក្រោយ (Control គ្រាប់ចុចបូកព្រួញស្ដាំ)',
|
|
previousDecade: 'ជំនាន់ចុងក្រោយ',
|
|
nextDecade: 'ជំនាន់ក្រោយ',
|
|
previousCentury: 'សតវត្សចុងក្រោយ',
|
|
nextCentury: 'សតវត្សរ៍បន្ទាប់',
|
|
};
|
|
|
|
export default locale;
|