Skip to content
Snippets Groups Projects

fichier de dates en espéranto

Merged Yves requested to merge Vivakvo/cesium:patch-12 into master
2 files
+ 90
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 29
0
 
//! 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"
 
}
 
});
 
}));
Loading