aboutsummaryrefslogtreecommitdiffstats
path: root/demos/datepicker/jquery.ui.datepicker-he.js
diff options
context:
space:
mode:
authorFelix Nagel <info@felixnagel.com>2013-02-09 03:29:10 +0100
committerFelix Nagel <info@felixnagel.com>2013-02-09 03:29:10 +0100
commita7b4f29cea06607264c2ba98cd93f4e039cce5bd (patch)
tree1ac9e210ce8fd16a85cb1d3283983475b27437ed /demos/datepicker/jquery.ui.datepicker-he.js
parentb81bb0b983687b1efc09577bf128b8a5b7aa5d7b (diff)
parentab408c9b82430e7a65a9269441cc0c0e2af95770 (diff)
downloadjquery-ui-a7b4f29cea06607264c2ba98cd93f4e039cce5bd.tar.gz
jquery-ui-a7b4f29cea06607264c2ba98cd93f4e039cce5bd.zip
Merge branch 'master' into selectmenu
Diffstat (limited to 'demos/datepicker/jquery.ui.datepicker-he.js')
-rw-r--r--demos/datepicker/jquery.ui.datepicker-he.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/demos/datepicker/jquery.ui.datepicker-he.js b/demos/datepicker/jquery.ui.datepicker-he.js
new file mode 100644
index 000000000..b9e8deec5
--- /dev/null
+++ b/demos/datepicker/jquery.ui.datepicker-he.js
@@ -0,0 +1,23 @@
+/* Hebrew initialisation for the UI Datepicker extension. */
+/* Written by Amir Hardon (ahardon at gmail dot com). */
+jQuery(function($){
+ $.datepicker.regional['he'] = {
+ closeText: 'סגור',
+ prevText: '&#x3C;הקודם',
+ nextText: 'הבא&#x3E;',
+ currentText: 'היום',
+ monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
+ 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
+ monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
+ 'יולי','אוג','ספט','אוק','נוב','דצמ'],
+ dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
+ dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
+ dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
+ weekHeader: 'Wk',
+ dateFormat: 'dd/mm/yy',
+ firstDay: 0,
+ isRTL: true,
+ showMonthAfterYear: false,
+ yearSuffix: ''};
+ $.datepicker.setDefaults($.datepicker.regional['he']);
+});