34 lines
846 B
JavaScript
34 lines
846 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Basque localisation for calendars datepicker for jQuery.
|
|
Karrikas-ek itzulia (karrikas@karrikas.com). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.eu = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '<Aur',
|
|
prevStatus: '',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: 'Hur>',
|
|
nextStatus: '',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'Gaur',
|
|
currentStatus: '',
|
|
todayText: 'Gaur',
|
|
todayStatus: '',
|
|
clearText: 'X',
|
|
clearStatus: '',
|
|
closeText: 'Egina',
|
|
closeStatus: '',
|
|
yearStatus: '',
|
|
monthStatus: '',
|
|
weekText: 'Wk',
|
|
weekStatus: '',
|
|
dayStatus: 'DD d MM',
|
|
defaultStatus: '',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.eu);
|
|
})(jQuery);
|