numbro
Version:
Format and manipulate numbers.
28 lines (26 loc) • 485 B
JavaScript
/*!
* numbro.js language configuration
* language : Slovene
* locale: Slovenia
* author : Tim McIntosh (StayinFront NZ)
*/
module.exports = {
languageTag: "sl",
delimiters: {
thousands: ".",
decimal: ","
},
abbreviations: {
thousand: "tis.",
million: "mil.",
billion: "b",
trillion: "t"
},
ordinal: function() {
return ".";
},
currency: {
symbol: "€",
code: "EUR"
}
};