1 // moment.js locale configuration
2 // locale : tibetan (bo)
3 // author : Thupten N. Chakrishar : https://github.com/vajradog
6 if (typeof define === 'function' && define.amd) {
7 define(['moment'], factory); // AMD
8 } else if (typeof exports === 'object') {
9 module.exports = factory(require('../moment')); // Node
11 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
39 return moment.defineLocale('bo', {
40 months : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
41 monthsShort : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
42 weekdays : 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split('_'),
43 weekdaysShort : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
44 weekdaysMin : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
50 LLL : 'D MMMM YYYY, LT',
51 LLLL : 'dddd, D MMMM YYYY, LT'
54 sameDay : '[དི་རིང] LT',
55 nextDay : '[སང་ཉིན] LT',
56 nextWeek : '[བདུན་ཕྲག་རྗེས་མ], LT',
57 lastDay : '[ཁ་སང] LT',
58 lastWeek : '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',
76 preparse: function (string) {
77 return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) {
78 return numberMap[match];
81 postformat: function (string) {
82 return string.replace(/\d/g, function (match) {
83 return symbolMap[match];
86 meridiem : function (hour, minute, isLower) {
89 } else if (hour < 10) {
91 } else if (hour < 17) {
93 } else if (hour < 20) {
100 dow : 0, // Sunday is the first day of the week.
101 doy : 6 // The week that contains Jan 1st is the first week of the year.