mirror of https://github.com/gogits/gogs.git
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.
15 lines
775 B
15 lines
775 B
/** |
|
* Polish translation for bootstrap-datepicker |
|
* Robert <rtpm@gazeta.pl> |
|
*/ |
|
;(function($){ |
|
$.fn.datepicker.dates['pl'] = { |
|
days: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota", "Niedziela"], |
|
daysShort: ["Nie", "Pn", "Wt", "Śr", "Czw", "Pt", "So", "Nie"], |
|
daysMin: ["N", "Pn", "Wt", "Śr", "Cz", "Pt", "So", "N"], |
|
months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"], |
|
monthsShort: ["Sty", "Lu", "Mar", "Kw", "Maj", "Cze", "Lip", "Sie", "Wrz", "Pa", "Lis", "Gru"], |
|
today: "Dzisiaj", |
|
weekStart: 1 |
|
}; |
|
}(jQuery));
|
|
|