jquery.spectrum-zh-tw.js 494 B

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