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.0 KiB
33 lines
1.0 KiB
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'kk_KZ',
|
|
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;
|