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

26 lines
1014 B
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
Azerbaijani localisation for Gregorian/Julian calendars for jQuery.
Written by Jamil Najafov (necefov33@gmail.com). */
(function($) {
'use strict';
$.calendars.calendars.gregorian.prototype.regionalOptions.az = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
monthNames: ['Yanvar','Fevral','Mart','Aprel','May','İyun',
'İyul','Avqust','Sentyabr','Oktyabr','Noyabr','Dekabr'],
monthNamesShort: ['Yan','Fev','Mar','Apr','May','İyun',
'İyul','Avq','Sen','Okt','Noy','Dek'],
dayNames: ['Bazar','Bazar ertəsi','Çərşənbə axşamı','Çərşənbə','Cümə axşamı','Cümə','Şənbə'],
dayNamesShort: ['B','Be','Ça','Ç','Ca','C','Ş'],
dayNamesMin: ['B','B','Ç','С','Ç','C','Ş'],
digits: null,
dateFormat: 'dd.mm.yyyy',
firstDay: 1,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions.az =
$.calendars.calendars.gregorian.prototype.regionalOptions.az;
}
})(jQuery);