Sha256: 22850e131c28e6c1264e7ec00843491caa6d5bd473c6e486fd0b29fdcdd23b27
Contents?: true
Size: 847 Bytes
Versions: 16
Compression:
Stored size: 847 Bytes
Contents
/*! * numeral.js language configuration * language : Hungarian (hu) * author : Peter Bakondy : https://github.com/pbakondy */ (function () { var language = { delimiters: { thousands: ' ', decimal: ',' }, abbreviations: { thousand: 'E', // ezer million: 'M', // millió billion: 'Mrd', // milliárd trillion: 'T' // trillió }, ordinal: function (number) { return '.'; }, currency: { symbol: ' Ft' } }; // Node if (typeof module !== 'undefined' && module.exports) { module.exports = language; } // Browser if (typeof window !== 'undefined' && this.numeral && this.numeral.language) { this.numeral.language('hu', language); } }());
Version data entries
16 entries across 16 versions & 1 rubygems