Files
hrm_eva/wwwroot/lib/jquery.calendars/js/jquery.calendars-bg.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
Bulgarian localisation for Gregorian/Julian calendars for jQuery.
Written by Stoyan Kyosev (http://svest.org). */
(function($) {
'use strict';
$.calendars.calendars.gregorian.prototype.regionalOptions.bg = {
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.bg =
$.calendars.calendars.gregorian.prototype.regionalOptions.bg;
}
})(jQuery);