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
940 B
33 lines
940 B
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'lv_LV',
|
|
today: 'Šodien',
|
|
now: 'Tagad',
|
|
backToToday: 'Atpakaļ pie šodienas',
|
|
ok: 'Ok',
|
|
clear: 'Skaidrs',
|
|
month: 'Mēnesis',
|
|
year: 'Gads',
|
|
timeSelect: 'Izvēlieties laiku',
|
|
dateSelect: 'Izvēlieties datumu',
|
|
monthSelect: 'Izvēlieties mēnesi',
|
|
yearSelect: 'Izvēlieties gadu',
|
|
decadeSelect: 'Izvēlieties desmit gadus',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D.M.YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'Iepriekšējais mēnesis (PageUp)',
|
|
nextMonth: 'Nākammēnes (PageDown)',
|
|
previousYear: 'Pagājušais gads (Control + left)',
|
|
nextYear: 'Nākamgad (Control + right)',
|
|
previousDecade: 'Pēdējā desmitgadē',
|
|
nextDecade: 'Nākamā desmitgade',
|
|
previousCentury: 'Pagājušajā gadsimtā',
|
|
nextCentury: 'Nākamajā gadsimtā',
|
|
};
|
|
|
|
export default locale;
|