jquery.spectrum-fr.js 497 B

123456789101112131415161718
  1. // Spectrum Colorpicker
  2. // French (fr) localization
  3. // https://github.com/bgrins/spectrum
  4. (function ( $ ) {
  5. var localization = $.spectrum.localization["fr"] = {
  6. cancelText: "Annuler",
  7. chooseText: "Valider",
  8. clearText: "Effacer couleur sélectionnée",
  9. noColorSelectedText: "Aucune couleur sélectionnée",
  10. togglePaletteMoreText: "Plus",
  11. togglePaletteLessText: "Moins"
  12. };
  13. $.extend($.fn.spectrum.defaults, localization);
  14. })( jQuery );