33 lines
899 B
TypeScript
33 lines
899 B
TypeScript
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'cs_CZ',
|
|
today: 'Dnes',
|
|
now: 'NynĂ',
|
|
backToToday: 'ZpÄt na dneĹĄek',
|
|
ok: 'Ok',
|
|
clear: 'Vymazat',
|
|
month: 'MÄsĂc',
|
|
year: 'Rok',
|
|
timeSelect: 'Vybrat Äas',
|
|
dateSelect: 'Vybrat datum',
|
|
monthSelect: 'Vyberte mÄsĂc',
|
|
yearSelect: 'Vyberte rok',
|
|
decadeSelect: 'Vyberte dekĂĄdu',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D.M.YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'PĹedchozĂ mÄsĂc (PageUp)',
|
|
nextMonth: 'NĂĄsledujĂcĂ (PageDown)',
|
|
previousYear: 'PĹedchozĂ rok (Control + left)',
|
|
nextYear: 'NĂĄsledujĂcĂ rok (Control + right)',
|
|
previousDecade: 'PĹedchozĂ dekĂĄda',
|
|
nextDecade: 'NĂĄsledujĂcĂ dekĂĄda',
|
|
previousCentury: 'PĹedchozĂ stoletĂ',
|
|
nextCentury: 'NĂĄsledujĂcĂ stoletĂ',
|
|
};
|
|
|
|
export default locale;
|