Skip to content
Snippets Groups Projects
Commit 8035e79b authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

Merge branch 'patch-12' into 'master'

fichier de dates en espéranto

See merge request !596
parents 106aa7da d7946fe5
No related branches found
No related tags found
1 merge request!596fichier de dates en espéranto
Pipeline #7191 canceled
//! moment.js locale configuration
//! locale : esperanto (fr)
//! author : Vivakvo: https://github.com/vivakvo
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
typeof define === 'function' && define.amd ? define(['moment'], factory) :
factory(global.moment)
}(this, function (moment) { 'use strict';
var eo = moment.defineLocale('eo', {
months : 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split('_'),
monthsShort : 'jan._feb._mart._apr._majo_jun._jul._aŭg._sept._okt._nov._dec.'.split('_'),
weekdays : 'dimanĉo_lundo_mardo_merkredo_jaŭdo_vendredo_sabato'.split('_'),
weekdaysShort : 'dim._lun._mar._mer._jaŭ._ven._sab.'.split('_'),
weekdaysMin : 'Di_Lu_Ma_Me_Ja_Ve_Sa'.split('_'),
longDateFormat : {
LT : 'HH:mm',
LTS : 'HH:mm:ss',
L : 'DD/MM/YYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY HH:mm',
LLLL : 'dddd D MMMM YYYY HH:mm'
},
calendar : {
sameDay: '[Hodiaŭ je] LT',
nextDay: '[Morgaŭ je] LT',
nextWeek: 'dddd [je] LT',
lastDay: '[Hieraŭ je] LT',
lastWeek: '[Pasintan] dddd[n je] LT',
sameElse: 'L'
},
relativeTime : {
future : 'post %s',
past : 'antaŭ %s',
s : 'kelkaj sekundoj',
m : 'unu minuto',
mm : '%d minutoj',
h : 'unu horo',
hh : '%d horoj',
d : 'unu tago',
dd : '%d tagoj',
M : 'unu monato',
MM : '%d monatoj',
y : 'unu jaro',
yy : '%d jaroj'
},
ordinalParse: /\d{1,2}(er|)/,
ordinal : function (number) {
return number + 'a';
},
week : {
dow : 1, // Monday is the first day of the week.
doy : 4 // The week that contains Jan 4th is the first week of the year.
}
});
return eo;
}));
\ No newline at end of file
//! numeral.js locale configuration
//! locale : esperanto (eo)
//! author : Vivakvo: https://github.com/vivakvo
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../numeral')) :
typeof define === 'function' && define.amd ? define(['numeral'], factory) :
factory(global.numeral)
}(this, function (numeral) { 'use strict';
numeral.language('eo', {
"delimiters": {
"thousands": " ",
"decimal": ","
},
"abbreviations": {
"thousand": "x10^3",
"million": "x10^6",
"billion": "x10^9",
"trillion": "x10^12"
},
"ordinal": function (number) {
return (number === 1) ? 'a' : 'a';
},
"currency": {
"symbol": "X"
}
});
}));
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment