You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
557 B
19 lines
557 B
4 years ago
|
// Spectrum Colorpicker
|
||
|
// Czech (cs) localization
|
||
|
// https://github.com/bgrins/spectrum
|
||
|
// author localization cs Pavel Laupe Dvorak pavel@pavel-dvorak.cz
|
||
|
|
||
|
(function ( $ ) {
|
||
|
|
||
|
var localization = $.spectrum.localization["cs"] = {
|
||
|
cancelText: "zrušit",
|
||
|
chooseText: "vybrat",
|
||
|
clearText: "Resetovat výměr barev",
|
||
|
noColorSelectedText: "Žádná barva nebyla vybrána",
|
||
|
togglePaletteMoreText: "více",
|
||
|
togglePaletteLessText: "méně"
|
||
|
};
|
||
|
|
||
|
$.extend($.fn.spectrum.defaults, localization);
|
||
|
|
||
|
})( jQuery );
|