/*! * numbro.js language configuration * language : Slovene * locale: Slovenia * author : Tim McIntosh (StayinFront NZ) */ (function () { 'use strict'; var language = { langLocaleCode: 'sl', cultureCode: 'sl', delimiters: { thousands: '.', decimal: ',' }, abbreviations: { thousand: 'tis.', million: 'mil.', billion: 'b', trillion: 't' }, ordinal: function () { return '.'; }, 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('sl', language); } }());