[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

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

   1  /* Romanian initialisation for the jQuery UI date picker plugin.
   2   *
   3   * Written by Edmond L. (ll_edmond@walla.com)
   4   * and Ionut G. Stan (ionut.g.stan@gmail.com)
   5   */
   6  ( function( factory ) {
   7      "use strict";
   8  
   9      if ( typeof define === "function" && define.amd ) {
  10  
  11          // AMD. Register as an anonymous module.
  12          define( [ "../widgets/datepicker" ], factory );
  13      } else {
  14  
  15          // Browser globals
  16          factory( jQuery.datepicker );
  17      }
  18  } )( function( datepicker ) {
  19  "use strict";
  20  
  21  datepicker.regional.ro = {
  22      closeText: "Închide",
  23      prevText: "Luna precedentă",
  24      nextText: "Luna următoare ",
  25      currentText: "Azi",
  26      monthNames: [ "Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie",
  27      "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie" ],
  28      monthNamesShort: [ "Ian", "Feb", "Mar", "Apr", "Mai", "Iun",
  29      "Iul", "Aug", "Sep", "Oct", "Nov", "Dec" ],
  30      dayNames: [ "Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă" ],
  31      dayNamesShort: [ "Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm" ],
  32      dayNamesMin: [ "Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ" ],
  33      weekHeader: "Săpt",
  34      dateFormat: "dd.mm.yy",
  35      firstDay: 1,
  36      isRTL: false,
  37      showMonthAfterYear: false,
  38      yearSuffix: "" };
  39  datepicker.setDefaults( datepicker.regional.ro );
  40  
  41  return datepicker.regional.ro;
  42  
  43  } );