[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

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

   1  /* Afrikaans initialisation for the jQuery UI date picker plugin. */
   2  /* Written by Renier Pretorius. */
   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.af = {
  19      closeText: "Selekteer",
  20      prevText: "Vorige",
  21      nextText: "Volgende",
  22      currentText: "Vandag",
  23      monthNames: [ "Januarie", "Februarie", "Maart", "April", "Mei", "Junie",
  24      "Julie", "Augustus", "September", "Oktober", "November", "Desember" ],
  25      monthNamesShort: [ "Jan", "Feb", "Mrt", "Apr", "Mei", "Jun",
  26      "Jul", "Aug", "Sep", "Okt", "Nov", "Des" ],
  27      dayNames: [ "Sondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrydag", "Saterdag" ],
  28      dayNamesShort: [ "Son", "Maa", "Din", "Woe", "Don", "Vry", "Sat" ],
  29      dayNamesMin: [ "So", "Ma", "Di", "Wo", "Do", "Vr", "Sa" ],
  30      weekHeader: "Wk",
  31      dateFormat: "dd/mm/yy",
  32      firstDay: 1,
  33      isRTL: false,
  34      showMonthAfterYear: false,
  35      yearSuffix: "" };
  36  datepicker.setDefaults( datepicker.regional.af );
  37  
  38  return datepicker.regional.af;
  39  
  40  } );