[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

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

   1  /* Portuguese initialisation for the jQuery UI date picker plugin. */
   2  ( function( factory ) {
   3      "use strict";
   4  
   5      if ( typeof define === "function" && define.amd ) {
   6  
   7          // AMD. Register as an anonymous module.
   8          define( [ "../widgets/datepicker" ], factory );
   9      } else {
  10  
  11          // Browser globals
  12          factory( jQuery.datepicker );
  13      }
  14  } )( function( datepicker ) {
  15  "use strict";
  16  
  17  datepicker.regional.pt = {
  18      closeText: "Fechar",
  19      prevText: "Anterior",
  20      nextText: "Seguinte",
  21      currentText: "Hoje",
  22      monthNames: [ "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho",
  23      "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" ],
  24      monthNamesShort: [ "Jan", "Fev", "Mar", "Abr", "Mai", "Jun",
  25      "Jul", "Ago", "Set", "Out", "Nov", "Dez" ],
  26      dayNames: [
  27          "Domingo",
  28          "Segunda-feira",
  29          "Terça-feira",
  30          "Quarta-feira",
  31          "Quinta-feira",
  32          "Sexta-feira",
  33          "Sábado"
  34      ],
  35      dayNamesShort: [ "Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb" ],
  36      dayNamesMin: [ "Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb" ],
  37      weekHeader: "Sem",
  38      dateFormat: "dd/mm/yy",
  39      firstDay: 1,
  40      isRTL: false,
  41      showMonthAfterYear: false,
  42      yearSuffix: "" };
  43  datepicker.setDefaults( datepicker.regional.pt );
  44  
  45  return datepicker.regional.pt;
  46  
  47  } );