standard header in about page (#676)
[openemr.git] / public / assets / jquery-ui-1-12-1 / ui / i18n / datepicker-he.js
blobfb6238fdac7790a680ae627be09bb0da0a2741a5
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 ) {
6                 // AMD. Register as an anonymous module.
7                 define( [ "../widgets/datepicker" ], factory );
8         } else {
10                 // Browser globals
11                 factory( jQuery.datepicker );
12         }
13 }( function( datepicker ) {
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 );
35 return datepicker.regional.he;
37 } ) );