Sha256: 3d98c9ea6e91261e6d8549e167c3de43dca49243056a1565a328717918bf1c34
Contents?: true
Size: 807 Bytes
Versions: 16
Compression:
Stored size: 807 Bytes
Contents
/*! * numeral.js language configuration * language : portuguese (pt-pt) * author : Diogo Resende : https://github.com/dresende */ (function () { var language = { delimiters: { thousands: ' ', decimal: ',' }, abbreviations: { thousand: 'k', million: 'm', billion: 'b', trillion: 't' }, ordinal : function (number) { return 'º'; }, currency: { symbol: '€' } }; // Node if (typeof module !== 'undefined' && module.exports) { module.exports = language; } // Browser if (typeof window !== 'undefined' && this.numeral && this.numeral.language) { this.numeral.language('pt-pt', language); } }());
Version data entries
16 entries across 16 versions & 1 rubygems