projects/genea/out/js/spectrum-1.8.1/i18n/jquery.spectrum-pl.js
1.
// Spectrum Colorpicker
2.
// Polish (pl) localization
3.
// https://github.com/bgrins/spectrum
4.
 
5.
(function ( $ ) {
6.
 
7.
    var localization = $.spectrum.localization["pl"] = {
8.
        cancelText: "Anuluj",
9.
        chooseText: "Wybierz",
10.
        clearText: "Usuń wybór koloru",
11.
        noColorSelectedText: "Nie wybrano koloru",
12.
        togglePaletteMoreText: "Więcej",
13.
        togglePaletteLessText: "Mniej"
14.
    };
15.
 
16.
    $.extend($.fn.spectrum.defaults, localization);
17.
 
18.
})( jQuery );
19.