Mercurial > hg > soundsoftware-site
comparison .svn/pristine/39/394e5e5e010d8386c450e9f1041325a98522fbd0.svn-base @ 1295:622f24f53b42 redmine-2.3
Update to Redmine SVN revision 11972 on 2.3-stable branch
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:02:21 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1294:3e4c3460b6ca | 1295:622f24f53b42 |
---|---|
1 /* Hebrew initialisation for the UI Datepicker extension. */ | |
2 /* Written by Amir Hardon (ahardon at gmail dot com). */ | |
3 jQuery(function($){ | |
4 $.datepicker.regional['he'] = { | |
5 closeText: 'סגור', | |
6 prevText: '<הקודם', | |
7 nextText: 'הבא>', | |
8 currentText: 'היום', | |
9 monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', | |
10 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], | |
11 monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני', | |
12 'יולי','אוג','ספט','אוק','נוב','דצמ'], | |
13 dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], | |
14 dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], | |
15 dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], | |
16 weekHeader: 'Wk', | |
17 dateFormat: 'dd/mm/yy', | |
18 firstDay: 0, | |
19 isRTL: true, | |
20 showMonthAfterYear: false, | |
21 yearSuffix: ''}; | |
22 $.datepicker.setDefaults($.datepicker.regional['he']); | |
23 }); |