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

26 lines
1.0 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
Hebrew localisation for Gregorian/Julian calendars for jQuery.
Written by Amir Hardon (ahardon at gmail dot com). */
(function($) {
'use strict';
$.calendars.calendars.gregorian.prototype.regionalOptions.he = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
monthNamesShort: ['1','2','3','4','5','6',
'7','8','9','10','11','12'],
dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
digits: null,
dateFormat: 'dd/mm/yyyy',
firstDay: 0,
isRTL: true
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions.he =
$.calendars.calendars.gregorian.prototype.regionalOptions.he;
}
})(jQuery);