/*! + * numbro.js language configuration * language : English * locale: Ireland * author : Tim McIntosh (StayinFront NZ) */ (function () { 'use strict'; var language = { langLocaleCode: 'en-IE', cultureCode: 'en-IE', delimiters: { thousands: ',', decimal: '.' }, abbreviations: { thousand: 'k', million: 'm', billion: 'b', trillion: 't' }, ordinal: function (number) { var b = number % 10; return (~~(number % 100 / 10) === 1) ? 'th' : (b === 1) ? 'st' : (b === 2) ? 'nd' : (b === 3) ? 'rd' : 'th'; }, currency: { symbol: '€' } }; // Node if (typeof module !== 'undefined' && module.exports) { module.exports = language; } // Browser if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) { window.numbro.culture('en-gb', language); } }.call(typeof window === 'undefined' ? this : window));