1.
// Spectrum Colorpicker
2.
// Catalan (ca) localization
3.
// https://github.com/bgrins/spectrum
4.
5.
(function ( $ ) {
6.
7.
var localization = $.spectrum.localization["ca"] = {
8.
cancelText: "Cancel·lar",
9.
chooseText: "Escollir",
10.
clearText: "Esborrar color seleccionat",
11.
noColorSelectedText: "Cap color seleccionat",
12.
togglePaletteMoreText: "Més",
13.
togglePaletteLessText: "Menys"
14.
};
15.
16.
$.extend($.fn.spectrum.defaults, localization);
17.
18.
})( jQuery );
19.