UNPKG

802 BJavaScriptView Raw
1/*!
2 * numeral.js language configuration
3 * language : italian Italy (it)
4 * author : Giacomo Trombi : http://cinquepunti.it
5 */
6(function () {
7 var language = {
8 delimiters: {
9 thousands: '.',
10 decimal: ','
11 },
12 abbreviations: {
13 thousand: 'mila',
14 million: 'mil',
15 billion: 'b',
16 trillion: 't'
17 },
18 ordinal: function (number) {
19 return 'º';
20 },
21 currency: {
22 symbol: '€'
23 }
24 };
25
26 // Node
27 if (typeof module !== 'undefined' && module.exports) {
28 module.exports = language;
29 }
30 // Browser
31 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
32 this.numeral.language('it', language);
33 }
34}());
\No newline at end of file