d77729d3ff8bfd4b21715f91d0021884253d67452e39ed6786b0fa6507718645cbc3f37d2ac8f0c744d42c8002691483d0b1429397ed9f309179b3d2a9b7bb 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*!
  2. * numbro.js language configuration
  3. * language : Slovak
  4. * locale : Slovakia
  5. * author : Jan Pesa : https://github.com/smajl (based on work from Ahmed Al Hafoudh : http://www.freevision.sk)
  6. */
  7. (function () {
  8. 'use strict';
  9. var language = {
  10. langLocaleCode: 'sk-SK',
  11. cultureCode: 'sk-SK',
  12. delimiters: {
  13. thousands: '\u00a0',
  14. decimal: ','
  15. },
  16. abbreviations: {
  17. thousand: 'tis.',
  18. million: 'mil.',
  19. billion: 'mld.',
  20. trillion: 'bil.'
  21. },
  22. ordinal: function () {
  23. return '.';
  24. },
  25. currency: {
  26. symbol: '€',
  27. position: 'postfix',
  28. spaceSeparated: true
  29. },
  30. defaults: {
  31. currencyFormat: ',4 a'
  32. },
  33. formats: {
  34. fourDigits: '4 a',
  35. fullWithTwoDecimals: ',0.00 $',
  36. fullWithTwoDecimalsNoCurrency: ',0.00',
  37. fullWithNoDecimals: ',0 $'
  38. }
  39. };
  40. // CommonJS
  41. if (typeof module !== 'undefined' && module.exports) {
  42. module.exports = language;
  43. }
  44. // Browser
  45. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  46. window.numbro.culture(language.cultureCode, language);
  47. }
  48. }.call(typeof window === 'undefined' ? this : window));