34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Montenegrin localisation for calendars datepicker for jQuery.
|
|
Written by Miloš Milošević - fleka d.o.o. */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions['me-ME'] = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '<',
|
|
prevStatus: 'Prikaži prethodni mjesec',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: 'Prikaži prethodnu godinu',
|
|
nextText: '>',
|
|
nextStatus: 'Prikaži sljedeći mjesec',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: 'Prikaži sljedeću godinu',
|
|
currentText: 'Danas',
|
|
currentStatus: 'Tekući mjesec',
|
|
todayText: 'Danas',
|
|
todayStatus: 'Tekući mjesec',
|
|
clearText: 'Obriši',
|
|
clearStatus: 'Obriši trenutni datum',
|
|
closeText: 'Zatvori',
|
|
closeStatus: 'Zatvori kalendar',
|
|
yearStatus: 'Prikaži godine',
|
|
monthStatus: 'Prikaži mjesece',
|
|
weekText: 'Sed',
|
|
weekStatus: 'Sedmica',
|
|
dayStatus: '\'Datum\' DD, M d',
|
|
defaultStatus: 'Odaberi datum',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['me-ME']);
|
|
})(jQuery);
|