projects/genea/out/js/spectrum-1.8.1/i18n/jquery.spectrum-it.js
1.
// Spectrum Colorpicker
2.
// Italian (it) localization
3.
// https://github.com/bgrins/spectrum
4.
 
5.
(function ( $ ) {
6.
 
7.
    var localization = $.spectrum.localization["it"] = {
8.
        cancelText: "annulla",
9.
        chooseText: "scegli",
10.
        clearText: "Annulla selezione colore",
11.
        noColorSelectedText: "Nessun colore selezionato"
12.
    };
13.
 
14.
    $.extend($.fn.spectrum.defaults, localization);
15.
 
16.
})( jQuery );
17.