jquery.spectrum-zh-cn.js 493 B

123456789101112131415161718
  1. // Spectrum Colorpicker
  2. // Simplified Chinese (zh-cn) localization
  3. // https://github.com/bgrins/spectrum
  4. (function ( $ ) {
  5. var localization = $.spectrum.localization["zh-cn"] = {
  6. cancelText: "取消",
  7. chooseText: "选择",
  8. clearText: "清除",
  9. togglePaletteMoreText: "更多选项",
  10. togglePaletteLessText: "隐藏",
  11. noColorSelectedText: "尚未选择任何颜色"
  12. };
  13. $.extend($.fn.spectrum.defaults, localization);
  14. })( jQuery );