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.

108 lines
4.9 KiB

  1. //! moment.js locale configuration
  2. //! locale : tibetan (bo)
  3. //! author : Thupten N. Chakrishar : https://github.com/vajradog
  4. (function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
  6. typeof define === 'function' && define.amd ? define(['moment'], factory) :
  7. factory(global.moment)
  8. }(this, function (moment) { 'use strict';
  9. var symbolMap = {
  10. '1': '༡',
  11. '2': '༢',
  12. '3': '༣',
  13. '4': '༤',
  14. '5': '༥',
  15. '6': '༦',
  16. '7': '༧',
  17. '8': '༨',
  18. '9': '༩',
  19. '0': '༠'
  20. },
  21. numberMap = {
  22. '༡': '1',
  23. '༢': '2',
  24. '༣': '3',
  25. '༤': '4',
  26. '༥': '5',
  27. '༦': '6',
  28. '༧': '7',
  29. '༨': '8',
  30. '༩': '9',
  31. '༠': '0'
  32. };
  33. var bo = moment.defineLocale('bo', {
  34. months : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
  35. monthsShort : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
  36. weekdays : 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split('_'),
  37. weekdaysShort : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
  38. weekdaysMin : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
  39. longDateFormat : {
  40. LT : 'A h:mm',
  41. LTS : 'LT:ss',
  42. L : 'DD/MM/YYYY',
  43. LL : 'D MMMM YYYY',
  44. LLL : 'D MMMM YYYY, LT',
  45. LLLL : 'dddd, D MMMM YYYY, LT'
  46. },
  47. calendar : {
  48. sameDay : '[དི་རིང] LT',
  49. nextDay : '[སང་ཉིན] LT',
  50. nextWeek : '[བདུན་ཕྲག་རྗེས་མ], LT',
  51. lastDay : '[ཁ་སང] LT',
  52. lastWeek : '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',
  53. sameElse : 'L'
  54. },
  55. relativeTime : {
  56. future : '%s ལ་',
  57. past : '%s སྔན་ལ',
  58. s : 'ལམ་སང',
  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. isPM: function (input) {
  82. return /^(ཉིན་གུང|དགོང་དག|མཚན་མོ)$/.test(input);
  83. },
  84. meridiem : function (hour, minute, isLower) {
  85. if (hour < 4) {
  86. return 'མཚན་མོ';
  87. } else if (hour < 10) {
  88. return 'ཞོགས་ཀས';
  89. } else if (hour < 17) {
  90. return 'ཉིན་གུང';
  91. } else if (hour < 20) {
  92. return 'དགོང་དག';
  93. } else {
  94. return 'མཚན་མོ';
  95. }
  96. },
  97. week : {
  98. dow : 0, // Sunday is the first day of the week.
  99. doy : 6 // The week that contains Jan 1st is the first week of the year.
  100. }
  101. });
  102. return bo;
  103. }));