1 //! moment.js locale configuration
2 //! locale : Tibetan [bo]
3 //! author : Thupten N. Chakrishar : https://github.com/vajradog
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';
38 var bo
= moment
.defineLocale('bo', {
39 months
: 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
40 monthsShort
: 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
41 weekdays
: 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split('_'),
42 weekdaysShort
: 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
43 weekdaysMin
: 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
49 LLL
: 'D MMMM YYYY, A h:mm',
50 LLLL
: 'dddd, D MMMM YYYY, A h:mm'
53 sameDay
: '[དི་རིང] LT',
54 nextDay
: '[སང་ཉིན] LT',
55 nextWeek
: '[བདུན་ཕྲག་རྗེས་མ], LT',
56 lastDay
: '[ཁ་སང] LT',
57 lastWeek
: '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',
75 preparse: function (string
) {
76 return string
.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match
) {
77 return numberMap
[match
];
80 postformat: function (string
) {
81 return string
.replace(/\d/g, function (match
) {
82 return symbolMap
[match
];
85 meridiemParse
: /མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,
86 meridiemHour : function (hour
, meridiem
) {
90 if ((meridiem
=== 'མཚན་མོ' && hour
>= 4) ||
91 (meridiem
=== 'ཉིན་གུང' && hour
< 5) ||
92 meridiem
=== 'དགོང་དག') {
98 meridiem : function (hour
, minute
, isLower
) {
101 } else if (hour
< 10) {
103 } else if (hour
< 17) {
105 } else if (hour
< 20) {
112 dow
: 0, // Sunday is the first day of the week.
113 doy
: 6 // The week that contains Jan 1st is the first week of the year.