c42b233bae35fd3523ebd1c3196313f1f1c3b189120de28a35a90e0782a5563b3f1e642070c3882e162caedf179efd879b705a3b401d9c2185499553034d56 872 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*!
  2. * numbro.js language configuration
  3. * language : Slovene
  4. * locale: Slovenia
  5. * author : Tim McIntosh (StayinFront NZ)
  6. */
  7. (function () {
  8. 'use strict';
  9. var language = {
  10. langLocaleCode: 'sl',
  11. cultureCode: 'sl',
  12. delimiters: {
  13. thousands: '.',
  14. decimal: ','
  15. },
  16. abbreviations: {
  17. thousand: 'tis.',
  18. million: 'mil.',
  19. billion: 'b',
  20. trillion: 't'
  21. },
  22. ordinal: function () {
  23. return '.';
  24. },
  25. currency: {
  26. symbol: '€'
  27. }
  28. };
  29. // Node
  30. if (typeof module !== 'undefined' && module.exports) {
  31. module.exports = language;
  32. }
  33. // Browser
  34. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  35. window.numbro.culture('sl', language);
  36. }
  37. }());