diff --git a/www/js/vendor/numeral.eo.js b/www/js/vendor/numeral.eo.js new file mode 100644 index 0000000000000000000000000000000000000000..5ccd37e71a5a7908db44f3e8d6d055379ae51758 --- /dev/null +++ b/www/js/vendor/numeral.eo.js @@ -0,0 +1,29 @@ +//! 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" + } + }); +}));