Ohm-Management - Projektarbeit B-ME
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.

bo.js 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. //! moment.js locale configuration
  2. ;(function (global, factory) {
  3. typeof exports === 'object' && typeof module !== 'undefined'
  4. && typeof require === 'function' ? factory(require('../moment')) :
  5. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  6. factory(global.moment)
  7. }(this, (function (moment) { 'use strict';
  8. var symbolMap = {
  9. '1': '༡',
  10. '2': '༢',
  11. '3': '༣',
  12. '4': '༤',
  13. '5': '༥',
  14. '6': '༦',
  15. '7': '༧',
  16. '8': '༨',
  17. '9': '༩',
  18. '0': '༠'
  19. },
  20. numberMap = {
  21. '༡': '1',
  22. '༢': '2',
  23. '༣': '3',
  24. '༤': '4',
  25. '༥': '5',
  26. '༦': '6',
  27. '༧': '7',
  28. '༨': '8',
  29. '༩': '9',
  30. '༠': '0'
  31. };
  32. var bo = moment.defineLocale('bo', {
  33. months : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
  34. monthsShort : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
  35. weekdays : 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split('_'),
  36. weekdaysShort : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
  37. weekdaysMin : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
  38. longDateFormat : {
  39. LT : 'A h:mm',
  40. LTS : 'A h:mm:ss',
  41. L : 'DD/MM/YYYY',
  42. LL : 'D MMMM YYYY',
  43. LLL : 'D MMMM YYYY, A h:mm',
  44. LLLL : 'dddd, D MMMM YYYY, A h:mm'
  45. },
  46. calendar : {
  47. sameDay : '[དི་རིང] LT',
  48. nextDay : '[སང་ཉིན] LT',
  49. nextWeek : '[བདུན་ཕྲག་རྗེས་མ], LT',
  50. lastDay : '[ཁ་སང] LT',
  51. lastWeek : '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',
  52. sameElse : 'L'
  53. },
  54. relativeTime : {
  55. future : '%s ལ་',
  56. past : '%s སྔན་ལ',
  57. s : 'ལམ་སང',
  58. ss : '%d སྐར་ཆ།',
  59. m : 'སྐར་མ་གཅིག',
  60. mm : '%d སྐར་མ',
  61. h : 'ཆུ་ཚོད་གཅིག',
  62. hh : '%d ཆུ་ཚོད',
  63. d : 'ཉིན་གཅིག',
  64. dd : '%d ཉིན་',
  65. M : 'ཟླ་བ་གཅིག',
  66. MM : '%d ཟླ་བ',
  67. y : 'ལོ་གཅིག',
  68. yy : '%d ལོ'
  69. },
  70. preparse: function (string) {
  71. return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) {
  72. return numberMap[match];
  73. });
  74. },
  75. postformat: function (string) {
  76. return string.replace(/\d/g, function (match) {
  77. return symbolMap[match];
  78. });
  79. },
  80. meridiemParse: /མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,
  81. meridiemHour : function (hour, meridiem) {
  82. if (hour === 12) {
  83. hour = 0;
  84. }
  85. if ((meridiem === 'མཚན་མོ' && hour >= 4) ||
  86. (meridiem === 'ཉིན་གུང' && hour < 5) ||
  87. meridiem === 'དགོང་དག') {
  88. return hour + 12;
  89. } else {
  90. return hour;
  91. }
  92. },
  93. meridiem : function (hour, minute, isLower) {
  94. if (hour < 4) {
  95. return 'མཚན་མོ';
  96. } else if (hour < 10) {
  97. return 'ཞོགས་ཀས';
  98. } else if (hour < 17) {
  99. return 'ཉིན་གུང';
  100. } else if (hour < 20) {
  101. return 'དགོང་དག';
  102. } else {
  103. return 'མཚན་མོ';
  104. }
  105. },
  106. week : {
  107. dow : 0, // Sunday is the first day of the week.
  108. doy : 6 // The week that contains Jan 6th is the first week of the year.
  109. }
  110. });
  111. return bo;
  112. })));