34 lines
860 B
JavaScript
34 lines
860 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Romansh localisation for calendars datepicker for jQuery.
|
|
Yvonne Gienal (yvonne.gienal@educa.ch). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.rm = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '<Suandant',
|
|
prevStatus: '',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: 'Precedent>',
|
|
nextStatus: '',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'Actual',
|
|
currentStatus: '',
|
|
todayText: 'Actual',
|
|
todayStatus: '',
|
|
clearText: 'X',
|
|
clearStatus: '',
|
|
closeText: 'Serrar',
|
|
closeStatus: '',
|
|
yearStatus: '',
|
|
monthStatus: '',
|
|
weekText: 'emna',
|
|
weekStatus: '',
|
|
dayStatus: 'DD d MM',
|
|
defaultStatus: '',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.rm);
|
|
})(jQuery);
|