[SPIP][PLUGINS] v3.0-->v3.2
[lhc/web/www.git] / www / plugins-dist / jquery_ui / prive / javascript / ui / i18n / datepicker-he.js
1 /* Hebrew initialisation for the UI Datepicker extension. */
2 /* Written by Amir Hardon (ahardon at gmail dot com). */
3 ( function( factory ) {
4 if ( typeof define === "function" && define.amd ) {
5
6 // AMD. Register as an anonymous module.
7 define( [ "../widgets/datepicker" ], factory );
8 } else {
9
10 // Browser globals
11 factory( jQuery.datepicker );
12 }
13 }( function( datepicker ) {
14
15 datepicker.regional.he = {
16 closeText: "סגור",
17 prevText: "<הקודם",
18 nextText: "הבא>",
19 currentText: "היום",
20 monthNames: [ "ינואר","פברואר","מרץ","אפריל","מאי","יוני",
21 "יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר" ],
22 monthNamesShort: [ "ינו","פבר","מרץ","אפר","מאי","יוני",
23 "יולי","אוג","ספט","אוק","נוב","דצמ" ],
24 dayNames: [ "ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת" ],
25 dayNamesShort: [ "א'","ב'","ג'","ד'","ה'","ו'","שבת" ],
26 dayNamesMin: [ "א'","ב'","ג'","ד'","ה'","ו'","שבת" ],
27 weekHeader: "Wk",
28 dateFormat: "dd/mm/yy",
29 firstDay: 0,
30 isRTL: true,
31 showMonthAfterYear: false,
32 yearSuffix: "" };
33 datepicker.setDefaults( datepicker.regional.he );
34
35 return datepicker.regional.he;
36
37 } ) );