projects/genea/out/js/spectrum-1.8.1/i18n/jquery.spectrum-hr.js
1.
// Spectrum Colorpicker
2.
// Croatian (hr) localization
3.
// https://github.com/bgrins/spectrum
4.
 
5.
(function ( $ ) {
6.
 
7.
    var localization = $.spectrum.localization["hr"] = {
8.
        cancelText: "Odustani",
9.
        chooseText: "Odaberi",
10.
        clearText: "Poništi odabir",
11.
        noColorSelectedText: "Niti jedna boja nije odabrana",
12.
        togglePaletteMoreText: "Više",
13.
        togglePaletteLessText: "Manje"
14.
    };
15.
 
16.
    $.extend($.fn.spectrum.defaults, localization);
17.
 
18.
})( jQuery );
19.