Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[lhc/web/wiklou.git] / resources / lib / moment / locale / eo.js
1 //! moment.js locale configuration
2
3 ;(function (global, factory) {
4 typeof exports === 'object' && typeof module !== 'undefined'
5 && typeof require === 'function' ? factory(require('../moment')) :
6 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
7 factory(global.moment)
8 }(this, (function (moment) { 'use strict';
9
10
11 var eo = moment.defineLocale('eo', {
12 months : 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split('_'),
13 monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec'.split('_'),
14 weekdays : 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'),
15 weekdaysShort : 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'),
16 weekdaysMin : 'di_lu_ma_me_ĵa_ve_sa'.split('_'),
17 longDateFormat : {
18 LT : 'HH:mm',
19 LTS : 'HH:mm:ss',
20 L : 'YYYY-MM-DD',
21 LL : 'D[-a de] MMMM, YYYY',
22 LLL : 'D[-a de] MMMM, YYYY HH:mm',
23 LLLL : 'dddd, [la] D[-a de] MMMM, YYYY HH:mm'
24 },
25 meridiemParse: /[ap]\.t\.m/i,
26 isPM: function (input) {
27 return input.charAt(0).toLowerCase() === 'p';
28 },
29 meridiem : function (hours, minutes, isLower) {
30 if (hours > 11) {
31 return isLower ? 'p.t.m.' : 'P.T.M.';
32 } else {
33 return isLower ? 'a.t.m.' : 'A.T.M.';
34 }
35 },
36 calendar : {
37 sameDay : '[Hodiaŭ je] LT',
38 nextDay : '[Morgaŭ je] LT',
39 nextWeek : 'dddd [je] LT',
40 lastDay : '[Hieraŭ je] LT',
41 lastWeek : '[pasinta] dddd [je] LT',
42 sameElse : 'L'
43 },
44 relativeTime : {
45 future : 'post %s',
46 past : 'antaŭ %s',
47 s : 'sekundoj',
48 ss : '%d sekundoj',
49 m : 'minuto',
50 mm : '%d minutoj',
51 h : 'horo',
52 hh : '%d horoj',
53 d : 'tago',//ne 'diurno', ĉar estas uzita por proksimumo
54 dd : '%d tagoj',
55 M : 'monato',
56 MM : '%d monatoj',
57 y : 'jaro',
58 yy : '%d jaroj'
59 },
60 dayOfMonthOrdinalParse: /\d{1,2}a/,
61 ordinal : '%da',
62 week : {
63 dow : 1, // Monday is the first day of the week.
64 doy : 7 // The week that contains Jan 7th is the first week of the year.
65 }
66 });
67
68 return eo;
69
70 })));