Files
CRM/libraries/jquery/jquery.datepick.package-4.1.0/jquery.datepick-he.js
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

30 lines
1.3 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/datepick.html
Hebrew localisation for jQuery Datepicker.
Written by Amir Hardon (ahardon at gmail dot com). */
(function($) {
$.datepick.regional['he'] = {
monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
monthNamesShort: ['1','2','3','4','5','6',
'7','8','9','10','11','12'],
dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
dateFormat: 'dd/mm/yyyy', firstDay: 0,
renderer: $.datepick.defaultRenderer,
prevText: '<הקודם', prevStatus: '',
prevJumpText: '<<', prevJumpStatus: '',
nextText: 'הבא>', nextStatus: '',
nextJumpText: '>>', nextJumpStatus: '',
currentText: 'היום', currentStatus: '',
todayText: 'היום', todayStatus: '',
clearText: 'נקה', clearStatus: '',
closeText: 'סגור', closeStatus: '',
yearStatus: '', monthStatus: '',
weekText: 'Wk', weekStatus: '',
dayStatus: 'DD, M d', defaultStatus: '',
isRTL: true
};
$.datepick.setDefaults($.datepick.regional['he']);
})(jQuery);