62f43919ee519f8db2de98c24e4cb74214649a64341305678704be7f26e29a338f1d081f7faf5f35c5e12db2c286df5dd04189e3e3cf41a527d6b5afac95cd 900 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*!
  2. * numbro.js language configuration
  3. * language : Bulgarian
  4. * author : Tim McIntosh (StayinFront NZ)
  5. */
  6. (function () {
  7. 'use strict';
  8. var language = {
  9. langLocaleCode: 'bg',
  10. cultureCode: 'bg',
  11. delimiters: {
  12. thousands: ' ',
  13. decimal: ','
  14. },
  15. abbreviations: {
  16. thousand: 'И',
  17. million: 'А',
  18. billion: 'M',
  19. trillion: 'T'
  20. },
  21. ordinal: function () {
  22. return '.';
  23. },
  24. currency: {
  25. symbol: 'лв.'
  26. }
  27. };
  28. // Node
  29. if (typeof module !== 'undefined' && module.exports) {
  30. module.exports = language;
  31. }
  32. // Browser
  33. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  34. this.numbro.culture('bg', language);
  35. }
  36. }.call(typeof window === 'undefined' ? this : window));