[ Index ]

PHP Cross Reference of BuddyPress

title

Body

[close]

/src/bp-core/js/vendor/moment-js/locale/ -> eu.js (source)

   1  //! moment.js locale configuration
   2  //! locale : Basque [eu]
   3  //! author : Eneko Illarramendi : https://github.com/eillarra
   4  
   5  ;(function (global, factory) {
   6     typeof exports === 'object' && typeof module !== 'undefined'
   7         && typeof require === 'function' ? factory(require('../moment')) :
   8     typeof define === 'function' && define.amd ? define(['../moment'], factory) :
   9     factory(global.moment)
  10  }(this, function (moment) { 'use strict';
  11  
  12  
  13      var eu = moment.defineLocale('eu', {
  14          months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
  15          monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
  16          monthsParseExact : true,
  17          weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'),
  18          weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'),
  19          weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'),
  20          weekdaysParseExact : true,
  21          longDateFormat : {
  22              LT : 'HH:mm',
  23              LTS : 'HH:mm:ss',
  24              L : 'YYYY-MM-DD',
  25              LL : 'YYYY[ko] MMMM[ren] D[a]',
  26              LLL : 'YYYY[ko] MMMM[ren] D[a] HH:mm',
  27              LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',
  28              l : 'YYYY-M-D',
  29              ll : 'YYYY[ko] MMM D[a]',
  30              lll : 'YYYY[ko] MMM D[a] HH:mm',
  31              llll : 'ddd, YYYY[ko] MMM D[a] HH:mm'
  32          },
  33          calendar : {
  34              sameDay : '[gaur] LT[etan]',
  35              nextDay : '[bihar] LT[etan]',
  36              nextWeek : 'dddd LT[etan]',
  37              lastDay : '[atzo] LT[etan]',
  38              lastWeek : '[aurreko] dddd LT[etan]',
  39              sameElse : 'L'
  40          },
  41          relativeTime : {
  42              future : '%s barru',
  43              past : 'duela %s',
  44              s : 'segundo batzuk',
  45              m : 'minutu bat',
  46              mm : '%d minutu',
  47              h : 'ordu bat',
  48              hh : '%d ordu',
  49              d : 'egun bat',
  50              dd : '%d egun',
  51              M : 'hilabete bat',
  52              MM : '%d hilabete',
  53              y : 'urte bat',
  54              yy : '%d urte'
  55          },
  56          ordinalParse: /\d{1,2}\./,
  57          ordinal : '%d.',
  58          week : {
  59              dow : 1, // Monday is the first day of the week.
  60              doy : 7  // The week that contains Jan 1st is the first week of the year.
  61          }
  62      });
  63  
  64      return eu;
  65  
  66  }));


Generated: Thu Aug 24 01:01:27 2023 Cross-referenced by PHPXref 0.7.1