8f2c079c641cb02870fc8bb55ba21afc2e563e0a3fe3fced414c9817be51a0b7075266dfc97e704eefc7ae89fa5719681fe4e2cffb9d3e0b9d4421a0513433 914 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*!
  2. * numbro.js language configuration
  3. * language : Norwegian Bokmål (nb)
  4. * author : Tim McIntosh (StayinFront NZ)
  5. */
  6. (function () {
  7. 'use strict';
  8. var language = {
  9. langLocaleCode: 'nb',
  10. cultureCode: 'nb',
  11. delimiters: {
  12. thousands: ' ',
  13. decimal: ','
  14. },
  15. abbreviations: {
  16. thousand: 't',
  17. million: 'mil',
  18. billion: 'mia',
  19. trillion: 'b'
  20. },
  21. ordinal: function () {
  22. return '.';
  23. },
  24. currency: {
  25. symbol: 'kr'
  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. window.numbro.culture('nb', language);
  35. }
  36. }.call(typeof window === 'undefined' ? this : window));