[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/lang/he/ -> jquery.ui.datepicker.js (source)

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