-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
const name = 'pl'; | ||
|
||
const localization = { | ||
today: 'Dzisiaj', | ||
clear: 'Wyczyść', | ||
close: 'Zamknij', | ||
selectMonth: 'Wybierz miesiąc', | ||
previousMonth: 'Poprzedni miesiąc', | ||
nextMonth: 'Następny miesiąc', | ||
selectYear: 'Wybierz rok', | ||
previousYear: 'Poprzedni rok', | ||
nextYear: 'Następny rok', | ||
selectDecade: 'Wybierz dekadę', | ||
previousDecade: 'Poprzednia dekada', | ||
nextDecade: 'Następna dekada', | ||
previousCentury: 'Poprzednie stulecie', | ||
nextCentury: 'Następne stulecie', | ||
pickHour: 'Wybierz godzinę', | ||
incrementHour: 'Kolejna godzina', | ||
decrementHour: 'Poprzednia godzina', | ||
pickMinute: 'Wybierz minutę', | ||
incrementMinute: 'Kolejna minuta', | ||
decrementMinute: 'Poprzednia minuta', | ||
pickSecond: 'Wybierz sekundę', | ||
incrementSecond: 'Kolejna sekunda', | ||
decrementSecond: 'Poprzednia sekunda', | ||
toggleMeridiem: 'Przełącz porę dnia', | ||
selectTime: 'Ustaw godzinę', | ||
selectDate: 'Ustaw datę', | ||
dayViewHeaderFormat: { month: 'long', year: '2-digit' }, | ||
locale: 'pl', | ||
startOfTheWeek: 1 | ||
}; | ||
|
||
export { localization, name }; |