64b73a750bdc1d9a7e64daadeab0f9bd0d16dc1e0239f7b3ea0d33be7752f86d5291a8883ad91bf5ba128926505798ac7cc9dfc22a9b8b1b351fed81da59f2 917 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*!
  2. * numbro.js language configuration
  3. * language : Serbian (sr)
  4. * country : Serbia (Cyrillic)
  5. * author : Tim McIntosh (StayinFront NZ)
  6. */
  7. (function () {
  8. 'use strict';
  9. var language = {
  10. langLocaleCode: 'sr-Cyrl-RS',
  11. cultureCode: 'sr-Cyrl-RS',
  12. delimiters: {
  13. thousands: '.',
  14. decimal: ','
  15. },
  16. abbreviations: {
  17. thousand: 'тыс.',
  18. million: 'млн',
  19. billion: 'b',
  20. trillion: 't'
  21. },
  22. ordinal: function () {
  23. return '.';
  24. },
  25. currency: {
  26. symbol: 'RSD'
  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('sr-Cyrl-RS', language);
  36. }
  37. }());