UNPKG

847 BJavaScriptView Raw
1/*!
2 * numeral.js language configuration
3 * language : Hungarian (hu)
4 * author : Peter Bakondy : https://github.com/pbakondy
5 */
6(function () {
7 var language = {
8 delimiters: {
9 thousands: ' ',
10 decimal: ','
11 },
12 abbreviations: {
13 thousand: 'E', // ezer
14 million: 'M', // millió
15 billion: 'Mrd', // milliárd
16 trillion: 'T' // trillió
17 },
18 ordinal: function (number) {
19 return '.';
20 },
21 currency: {
22 symbol: ' Ft'
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('hu', language);
33 }
34}());
\No newline at end of file