5
;(function (global, factory) {
6
typeof exports === 'object' && typeof module !== 'undefined'
7
&& typeof require === 'function' ? factory(require('../moment')) :
8
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10
}(this, (function (moment) { 'use strict';
39
var bo = moment.defineLocale('bo', {
40
months: 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split(
43
monthsShort: 'ཟླ་1_ཟླ་2_ཟླ་3_ཟླ་4_ཟླ་5_ཟླ་6_ཟླ་7_ཟླ་8_ཟླ་9_ཟླ་10_ཟླ་11_ཟླ་12'.split(
46
monthsShortRegex: /^(ཟླ་\d{1,2})/,
47
monthsParseExact: true,
48
weekdays: 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split(
51
weekdaysShort: 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split(
54
weekdaysMin: 'ཉི_ཟླ_མིག_ལྷག_ཕུར_སངས_སྤེན'.split('_'),
60
LLL: 'D MMMM YYYY, A h:mm',
61
LLLL: 'dddd, D MMMM YYYY, A h:mm',
64
sameDay: '[དི་རིང] LT',
65
nextDay: '[སང་ཉིན] LT',
66
nextWeek: '[བདུན་ཕྲག་རྗེས་མ], LT',
68
lastWeek: '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',
87
preparse: function (string) {
88
return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) {
89
return numberMap[match];
92
postformat: function (string) {
93
return string.replace(/\d/g, function (match) {
94
return symbolMap[match];
97
meridiemParse: /མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,
98
meridiemHour: function (hour, meridiem) {
103
(meridiem === 'མཚན་མོ' && hour >= 4) ||
104
(meridiem === 'ཉིན་གུང' && hour < 5) ||
105
meridiem === 'དགོང་དག'
112
meridiem: function (hour, minute, isLower) {
115
} else if (hour < 10) {
117
} else if (hour < 17) {
119
} else if (hour < 20) {