34 lines
806 B
JavaScript
34 lines
806 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Bosnian localisation for calendars datepicker for jQuery.
|
|
Kenan Konjo. */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.bs = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '<',
|
|
prevStatus: '',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: '>',
|
|
nextStatus: '',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'Danas',
|
|
currentStatus: '',
|
|
todayText: 'Danas',
|
|
todayStatus: '',
|
|
clearText: 'X',
|
|
clearStatus: '',
|
|
closeText: 'Zatvori',
|
|
closeStatus: '',
|
|
yearStatus: '',
|
|
monthStatus: '',
|
|
weekText: 'Wk',
|
|
weekStatus: '',
|
|
dayStatus: '',
|
|
defaultStatus: '',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.bs);
|
|
})(jQuery);
|