aboutsummaryrefslogtreecommitdiffstats
path: root/ui/i18n/datepicker-he.js
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-08-24 09:00:11 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-09-11 08:36:40 -0400
commita380d2d09e244983288878cc3117c2c4988a1a56 (patch)
tree2c0dc009e81bb90aa48eb744588b86772f4b953a /ui/i18n/datepicker-he.js
parentf8c2bbb0c80096214807f01b2b9f0d5440b7ada8 (diff)
downloadjquery-ui-a380d2d09e244983288878cc3117c2c4988a1a56.tar.gz
jquery-ui-a380d2d09e244983288878cc3117c2c4988a1a56.zip
Datepicker: Style updates
Ref #14246
Diffstat (limited to 'ui/i18n/datepicker-he.js')
-rw-r--r--ui/i18n/datepicker-he.js42
1 files changed, 21 insertions, 21 deletions
diff --git a/ui/i18n/datepicker-he.js b/ui/i18n/datepicker-he.js
index eeb9a2f7d..fb6238fda 100644
--- a/ui/i18n/datepicker-he.js
+++ b/ui/i18n/datepicker-he.js
@@ -1,37 +1,37 @@
/* Hebrew initialisation for the UI Datepicker extension. */
/* Written by Amir Hardon (ahardon at gmail dot com). */
-(function( factory ) {
+( function( factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
- define([ "../widgets/datepicker" ], factory );
+ define( [ "../widgets/datepicker" ], factory );
} else {
// Browser globals
factory( jQuery.datepicker );
}
-}(function( datepicker ) {
+}( function( datepicker ) {
-datepicker.regional['he'] = {
- closeText: 'סגור',
- prevText: '&#x3C;הקודם',
- nextText: 'הבא&#x3E;',
- currentText: 'היום',
- monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
- 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
- monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
- 'יולי','אוג','ספט','אוק','נוב','דצמ'],
- dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
- dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
- dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
- weekHeader: 'Wk',
- dateFormat: 'dd/mm/yy',
+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']);
+ yearSuffix: "" };
+datepicker.setDefaults( datepicker.regional.he );
-return datepicker.regional['he'];
+return datepicker.regional.he;
-}));
+} ) );