34 lines
862 B
JavaScript
34 lines
862 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Swedish localisation for calendars datepicker for jQuery.
|
|
Written by Anders Ekdahl ( anders@nomadiz.se). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.sv = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '«Förra',
|
|
prevStatus: '',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: 'Nästa»',
|
|
nextStatus: '',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'Idag',
|
|
currentStatus: '',
|
|
todayText: 'Idag',
|
|
todayStatus: '',
|
|
clearText: 'Rensa',
|
|
clearStatus: '',
|
|
closeText: 'Stäng',
|
|
closeStatus: '',
|
|
yearStatus: '',
|
|
monthStatus: '',
|
|
weekText: 'Ve',
|
|
weekStatus: '',
|
|
dayStatus: 'DD, M d',
|
|
defaultStatus: '',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.sv);
|
|
})(jQuery);
|