[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

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

   1  /* Esperanto initialisation for the jQuery UI date picker plugin. */
   2  /* Written by Olivier M. (olivierweb@ifrance.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.eo = {
  19      closeText: "Fermi",
  20      prevText: "Anta",
  21      nextText: "Sekv",
  22      currentText: "Nuna",
  23      monthNames: [ "Januaro", "Februaro", "Marto", "Aprilo", "Majo", "Junio",
  24      "Julio", "Aŭgusto", "Septembro", "Oktobro", "Novembro", "Decembro" ],
  25      monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun",
  26      "Jul", "Aŭg", "Sep", "Okt", "Nov", "Dec" ],
  27      dayNames: [ "Dimanĉo", "Lundo", "Mardo", "Merkredo", "Ĵaŭdo", "Vendredo", "Sabato" ],
  28      dayNamesShort: [ "Dim", "Lun", "Mar", "Mer", "Ĵaŭ", "Ven", "Sab" ],
  29      dayNamesMin: [ "Di", "Lu", "Ma", "Me", "Ĵa", "Ve", "Sa" ],
  30      weekHeader: "Sb",
  31      dateFormat: "dd/mm/yy",
  32      firstDay: 0,
  33      isRTL: false,
  34      showMonthAfterYear: false,
  35      yearSuffix: "" };
  36  datepicker.setDefaults( datepicker.regional.eo );
  37  
  38  return datepicker.regional.eo;
  39  
  40  } );