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