Files
hrm_eva/wwwroot/lib/jquery.calendars/js/jquery.calendars-mk.js
2020-08-11 16:13:02 +07:00

26 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* http://keith-wood.name/calendars.html
Македонски MK localisation for Gregorian/Julian calendars for jQuery.
Hajan Selmani (hajan [at] live [dot] com). */
(function($) {
'use strict';
$.calendars.calendars.gregorian.prototype.regionalOptions.mk = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
monthNames: ['Јануари','Февруари','Март','Април','Мај','Јуни',
'Јули','Август','Септември','Октомври','Ноември','Декември'],
monthNamesShort: ['Јан', 'Фев', 'Мар', 'Апр', 'Мај', 'Јун',
'Јул', 'Авг', 'Сеп', 'Окт', 'Нов', 'Дек'],
dayNames: ['Недела', 'Понеделник', 'Вторник', 'Среда', 'Четврток', 'Петок', 'Сабота'],
dayNamesShort: ['Нед', 'Пон', 'Вто', 'Сре', 'Чет', 'Пет', 'Саб'],
dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Са'],
digits: null,
dateFormat: 'dd/mm/yyyy',
firstDay: 1,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions.mk =
$.calendars.calendars.gregorian.prototype.regionalOptions.mk;
}
})(jQuery);