From 85dfcdf766cba709213c81ca2b8432b797aa45c1 Mon Sep 17 00:00:00 2001 From: Scott González Date: Thu, 31 Jan 2013 10:31:27 -0500 Subject: Datepicker demo: Simplify localization demo so that jqueryui.com works properly. --- demos/datepicker/jquery.ui.datepicker-he.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 demos/datepicker/jquery.ui.datepicker-he.js (limited to 'demos/datepicker/jquery.ui.datepicker-he.js') 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: '<הקודם', + nextText: 'הבא>', + currentText: 'היום', + monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', + 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], + monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני', + 'יולי','אוג','ספט','אוק','נוב','דצמ'], + dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], + dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], + dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], + weekHeader: 'Wk', + dateFormat: 'dd/mm/yy', + firstDay: 0, + isRTL: true, + showMonthAfterYear: false, + yearSuffix: ''}; + $.datepicker.setDefaults($.datepicker.regional['he']); +}); -- cgit v1.2.3