1
0
mirror of synced 2024-11-22 21:16:10 +03:00
select2/select2_locale_pl.js

27 lines
1.1 KiB
JavaScript
Raw Normal View History

2013-03-27 18:07:52 +04:00
/**
* Select2 Polish translation.
*
2014-01-08 12:41:47 +04:00
* @author Jan Kondratowicz <jan@kondratowicz.pl>
* @author Uriy Efremochkin <efremochkin@uriy.me>
* @author Michał Połtyn <mike@poltyn.com>
2013-03-27 18:07:52 +04:00
*/
(function ($) {
"use strict";
$.fn.select2.locales['pl'] = {
2014-01-08 12:41:47 +04:00
formatNoMatches: function () { return "Brak wyników"; },
formatInputTooShort: function (input, min) { return "Wpisz co najmniej" + character(min - input.length, "znak", "i"); },
2014-01-08 12:41:47 +04:00
formatInputTooLong: function (input, max) { return "Wpisana fraza jest za długa o" + character(input.length - max, "znak", "i"); },
formatSelectionTooBig: function (limit) { return "Możesz zaznaczyć najwyżej" + character(limit, "element", "y"); },
formatLoadMore: function (pageNumber) { return "Ładowanie wyników…"; },
formatSearching: function () { return "Szukanie…"; }
}
$.extend($.fn.select2.defaults, $.fn.select2.locales['pl']);
);
2014-01-08 12:41:47 +04:00
function character (n, word, pluralSuffix) {
return " " + n + " " + word + (n == 1 ? "" : n%10 < 5 && n%10 > 1 && (n%100 < 5 || n%100 > 20) ? pluralSuffix : "ów");
}
})(jQuery);