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
862 B
33 lines
862 B
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'pl_PL',
|
|
today: 'Dzisiaj',
|
|
now: 'Teraz',
|
|
backToToday: 'Ustaw dzisiaj',
|
|
ok: 'Ok',
|
|
clear: 'Wyczyść',
|
|
month: 'Miesiąc',
|
|
year: 'Rok',
|
|
timeSelect: 'Ustaw czas',
|
|
dateSelect: 'Ustaw datę',
|
|
monthSelect: 'Wybierz miesiąc',
|
|
yearSelect: 'Wybierz rok',
|
|
decadeSelect: 'Wybierz dekadę',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D/M/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'Poprzedni miesiąc (PageUp)',
|
|
nextMonth: 'Następny miesiąc (PageDown)',
|
|
previousYear: 'Ostatni rok (Ctrl + left)',
|
|
nextYear: 'Następny rok (Ctrl + right)',
|
|
previousDecade: 'Ostatnia dekada',
|
|
nextDecade: 'Następna dekada',
|
|
previousCentury: 'Ostatni wiek',
|
|
nextCentury: 'Następny wiek',
|
|
};
|
|
|
|
export default locale;
|