// numeral.js locale configuration // locale : portuguese (pt-pt) // author : Diogo Resende : https://github.com/dresende (function (global, factory) { if (typeof define === 'function' && define.amd) { define(['../numeral'], factory); } else if (typeof module === 'object' && module.exports) { factory(require('../numeral')); } else { factory(global.numeral); } }(this, function (numeral) { numeral.register('locale', 'pt-pt', { delimiters: { thousands: ' ', decimal: ',' }, abbreviations: { thousand: 'k', million: 'm', billion: 'b', trillion: 't' }, ordinal : function (number) { return 'º'; }, currency: { symbol: '€' } }); }));