/*! * 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); } }());