aboutsummaryrefslogtreecommitdiffstats
path: root/demos/datepicker/datepicker-he.js
diff options
context:
space:
mode:
authorTJ VanToll <tj.vantoll@gmail.com>2013-08-30 08:27:19 -0400
committerScott González <scott.gonzalez@gmail.com>2015-01-29 17:47:46 -0500
commite50d6d3bd2a6e7c01a2af61164105824a85d89d7 (patch)
treecc5e9a2c86166d10e36064c2ecefad5c52def7b1 /demos/datepicker/datepicker-he.js
parent5a7835595e4e980bbd1c74cadf316714282ba639 (diff)
downloadjquery-ui-e50d6d3bd2a6e7c01a2af61164105824a85d89d7.tar.gz
jquery-ui-e50d6d3bd2a6e7c01a2af61164105824a85d89d7.zip
Datepicker: Update tests and demos for new structure
Diffstat (limited to 'demos/datepicker/datepicker-he.js')
-rw-r--r--demos/datepicker/datepicker-he.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/demos/datepicker/datepicker-he.js b/demos/datepicker/datepicker-he.js
deleted file mode 100644
index bf58038f5..000000000
--- a/demos/datepicker/datepicker-he.js
+++ /dev/null
@@ -1,36 +0,0 @@
-/* Hebrew initialisation for the UI Datepicker extension. */
-/* Written by Amir Hardon (ahardon at gmail dot com). */
-(function( factory ) {
- if ( typeof define === "function" && define.amd ) {
-
- // AMD. Register as an anonymous module.
- define([ "../jquery.ui.datepicker" ], factory );
- } else {
-
- // Browser globals
- factory( jQuery.datepicker );
- }
-}(function( datepicker ) {
- 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']);
-
- return datepicker.regional['he'];
-
-}));