mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 20:24:03 +00:00
14 lines
285 B
JavaScript
14 lines
285 B
JavaScript
// Spectrum Colorpicker
|
|
// Turkish (tr) localization
|
|
// https://github.com/bgrins/spectrum
|
|
|
|
(function ( $ ) {
|
|
|
|
var localization = $.spectrum.localization["tr"] = {
|
|
cancelText: "iptal",
|
|
chooseText: "tamam"
|
|
};
|
|
|
|
$.extend($.fn.spectrum.defaults, localization);
|
|
|
|
})( jQuery );
|