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
884 B
33 lines
884 B
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'sr_RS',
|
|
today: 'Danas',
|
|
now: 'Sada',
|
|
backToToday: 'Vrati se na danas',
|
|
ok: 'U redu',
|
|
clear: 'Obriši',
|
|
month: 'Mesec',
|
|
year: 'Godina',
|
|
timeSelect: 'Izaberi vreme',
|
|
dateSelect: 'Izaberi datum',
|
|
monthSelect: 'Izaberi mesec',
|
|
yearSelect: 'Izaberi godinu',
|
|
decadeSelect: 'Izaberi deceniju',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'DD.MM.YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'DD.MM.YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'Prethodni mesec (PageUp)',
|
|
nextMonth: 'Sledeći mesec (PageDown)',
|
|
previousYear: 'Prethodna godina (Control + left)',
|
|
nextYear: 'Sledeća godina (Control + right)',
|
|
previousDecade: 'Prethodna decenija',
|
|
nextDecade: 'Sledeća decenija',
|
|
previousCentury: 'Prethodni vek',
|
|
nextCentury: 'Sledeći vek',
|
|
};
|
|
|
|
export default locale;
|