18 lines
		
	
	
		
			427 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			427 B
		
	
	
	
		
			JavaScript
		
	
	
	
| // Spectrum Colorpicker
 | |
| // Dutch (nl-nl) localization
 | |
| // https://github.com/bgrins/spectrum
 | |
| 
 | |
| (function ( $ ) {
 | |
| 
 | |
|     var localization = $.spectrum.localization["nl-nl"] = {
 | |
|         cancelText: "Annuleer",
 | |
|         chooseText: "Kies",
 | |
|         clearText: "Wis kleur selectie",
 | |
|         togglePaletteMoreText: 'Meer',
 | |
|         togglePaletteLessText: 'Minder'
 | |
|     };
 | |
| 
 | |
|     $.extend($.fn.spectrum.defaults, localization);
 | |
| 
 | |
| })( jQuery );
 |