Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334
  1. /*!
  2. * numeral.js language configuration
  3. * language : German (de) – generally useful in Germany, Austria, Luxembourg, Belgium
  4. * author : Marco Krage : https://github.com/sinky
  5. */
  6. (function () {
  7. var language = {
  8. delimiters: {
  9. thousands: ' ',
  10. decimal: ','
  11. },
  12. abbreviations: {
  13. thousand: 'k',
  14. million: 'm',
  15. billion: 'b',
  16. trillion: 't'
  17. },
  18. ordinal: function (number) {
  19. return '.';
  20. },
  21. currency: {
  22. symbol: '€'
  23. }
  24. };
  25. // Node
  26. if (typeof module !== 'undefined' && module.exports) {
  27. module.exports = language;
  28. }
  29. // Browser
  30. if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
  31. this.numeral.language('de', language);
  32. }
  33. }());