| 1 |
/* Hebrew initialisation for the UI Datepicker extension. */ |
| 2 |
/* Written by Amir Hardon (ahardon at gmail dot com). */ |
| 3 |
(function($) { |
| 4 |
$.datepick.regional['he'] = { |
| 5 |
clearText: 'נקה', clearStatus: '', |
| 6 |
closeText: 'סגור', closeStatus: '', |
| 7 |
prevText: '<הקודם', prevStatus: '', |
| 8 |
prevBigText: '<<', prevBigStatus: '', |
| 9 |
nextText: 'הבא>', nextStatus: '', |
| 10 |
nextBigText: '>>', nextBigStatus: '', |
| 11 |
currentText: 'היום', currentStatus: '', |
| 12 |
monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', |
| 13 |
'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], |
| 14 |
monthNamesShort: ['1','2','3','4','5','6', |
| 15 |
'7','8','9','10','11','12'], |
| 16 |
monthStatus: '', yearStatus: '', |
| 17 |
weekHeader: 'Wk', weekStatus: '', |
| 18 |
dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], |
| 19 |
dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], |
| 20 |
dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], |
| 21 |
dayStatus: 'DD', dateStatus: 'DD, M d', |
| 22 |
dateFormat: 'dd/mm/yy', firstDay: 0, |
| 23 |
initStatus: '', isRTL: true, |
| 24 |
showMonthAfterYear: false, yearSuffix: ''}; |
| 25 |
$.datepick.setDefaults($.datepick.regional['he']); |
| 26 |
})(jQuery); |
| 27 |
|