2839dc8a9c15e242369d9a6342ef7803e44f72bdc4f6ea1da73274f0f8c495339de3ea2d5a2c2e13eb60d4857fce14f0ff25362c3819a1f3dc2857c8b1ce06 898 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*!
  2. * numbro.js language configuration
  3. * language : Chinese traditional
  4. * locale: Macau
  5. * author : Tim McIntosh (StayinFront NZ)
  6. */
  7. (function () {
  8. 'use strict';
  9. var language = {
  10. langLocaleCode: 'zh-MO',
  11. cultureCode: 'zh-MO',
  12. delimiters: {
  13. thousands: ',',
  14. decimal: '.'
  15. },
  16. abbreviations: {
  17. thousand: '千',
  18. million: '百萬',
  19. billion: '十億',
  20. trillion: '兆'
  21. },
  22. ordinal: function () {
  23. return '.';
  24. },
  25. currency: {
  26. symbol: 'MOP'
  27. }
  28. };
  29. // Node
  30. if (typeof module !== 'undefined' && module.exports) {
  31. module.exports = language;
  32. }
  33. // Browser
  34. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  35. window.numbro.culture('zh-MO', language);
  36. }
  37. }());