numbro
Version:
Format and manipulate numbers.
28 lines (26 loc) • 527 B
JavaScript
/*!
* numbro.js language configuration
* language : Farsi
* locale: Iran
* author : neo13 : https://github.com/neo13
*/
module.exports = {
languageTag: "fa-IR",
delimiters: {
thousands: "،",
decimal: "."
},
abbreviations: {
thousand: "هزار",
million: "میلیون",
billion: "میلیارد",
trillion: "تریلیون"
},
ordinal: function() {
return "ام";
},
currency: {
symbol: "﷼",
code: "IRR"
}
};