Skip to content
Snippets Groups Projects
Commit d7946fe5 authored by Yves's avatar Yves
Browse files

Fichier en espéranto pour les nombres ordinaux et avec exposants

parent ffafa7df
No related branches found
No related tags found
1 merge request!596fichier de dates en espéranto
//! 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