5e4082e6cf653d7124564ce4aa256c79b72d54e90cf52df518d11f47e139f3b0313022ab3894f035ec9c2c7108a6d9d65658c3d85ad89f04fb5249c895a9e3 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*!
  2. * numeral.js language configuration
  3. * language : Romanian
  4. * author : Andrei Alecu https://github.com/andreialecu
  5. */
  6. (function () {
  7. 'use strict';
  8. var language = {
  9. langLocaleCode: 'ro-RO',
  10. cultureCode: 'ro-RO',
  11. delimiters: {
  12. thousands: '.',
  13. decimal: ','
  14. },
  15. abbreviations: {
  16. thousand: 'mii',
  17. million: 'mil',
  18. billion: 'mld',
  19. trillion: 'bln'
  20. },
  21. ordinal: function () {
  22. return '.';
  23. },
  24. currency: {
  25. symbol: ' lei',
  26. position: 'postfix'
  27. },
  28. defaults: {
  29. currencyFormat: ',4 a'
  30. },
  31. formats: {
  32. fourDigits: '4 a',
  33. fullWithTwoDecimals: ',0.00 $',
  34. fullWithTwoDecimalsNoCurrency: ',0.00',
  35. fullWithNoDecimals: ',0 $'
  36. }
  37. };
  38. // CommonJS
  39. if (typeof module !== 'undefined' && module.exports) {
  40. module.exports = language;
  41. }
  42. // Browser
  43. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  44. window.numbro.culture(language.cultureCode, language);
  45. }
  46. }.call(typeof window === 'undefined' ? this : window));