LaravelTest
133 строки · 5.0 Кб
1//! moment.js locale configuration
2//! locale : Tibetan [bo]
3//! author : Thupten N. Chakrishar : https://github.com/vajradog
4
5;(function (global, factory) {6typeof exports === 'object' && typeof module !== 'undefined'7&& typeof require === 'function' ? factory(require('../moment')) :8typeof define === 'function' && define.amd ? define(['../moment'], factory) :9factory(global.moment)10}(this, (function (moment) { 'use strict';11
12//! moment.js locale configuration13
14var symbolMap = {151: '༡',162: '༢',173: '༣',184: '༤',195: '༥',206: '༦',217: '༧',228: '༨',239: '༩',240: '༠',25},26numberMap = {27'༡': '1',28'༢': '2',29'༣': '3',30'༤': '4',31'༥': '5',32'༦': '6',33'༧': '7',34'༨': '8',35'༩': '9',36'༠': '0',37};38
39var bo = moment.defineLocale('bo', {40months: 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split(41'_'42),43monthsShort: 'ཟླ་1_ཟླ་2_ཟླ་3_ཟླ་4_ཟླ་5_ཟླ་6_ཟླ་7_ཟླ་8_ཟླ་9_ཟླ་10_ཟླ་11_ཟླ་12'.split(44'_'45),46monthsShortRegex: /^(ཟླ་\d{1,2})/,47monthsParseExact: true,48weekdays: 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split(49'_'50),51weekdaysShort: 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split(52'_'53),54weekdaysMin: 'ཉི_ཟླ_མིག_ལྷག_ཕུར_སངས_སྤེན'.split('_'),55longDateFormat: {56LT: 'A h:mm',57LTS: 'A h:mm:ss',58L: 'DD/MM/YYYY',59LL: 'D MMMM YYYY',60LLL: 'D MMMM YYYY, A h:mm',61LLLL: 'dddd, D MMMM YYYY, A h:mm',62},63calendar: {64sameDay: '[དི་རིང] LT',65nextDay: '[སང་ཉིན] LT',66nextWeek: '[བདུན་ཕྲག་རྗེས་མ], LT',67lastDay: '[ཁ་སང] LT',68lastWeek: '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',69sameElse: 'L',70},71relativeTime: {72future: '%s ལ་',73past: '%s སྔན་ལ',74s: 'ལམ་སང',75ss: '%d སྐར་ཆ།',76m: 'སྐར་མ་གཅིག',77mm: '%d སྐར་མ',78h: 'ཆུ་ཚོད་གཅིག',79hh: '%d ཆུ་ཚོད',80d: 'ཉིན་གཅིག',81dd: '%d ཉིན་',82M: 'ཟླ་བ་གཅིག',83MM: '%d ཟླ་བ',84y: 'ལོ་གཅིག',85yy: '%d ལོ',86},87preparse: function (string) {88return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) {89return numberMap[match];90});91},92postformat: function (string) {93return string.replace(/\d/g, function (match) {94return symbolMap[match];95});96},97meridiemParse: /མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,98meridiemHour: function (hour, meridiem) {99if (hour === 12) {100hour = 0;101}102if (103(meridiem === 'མཚན་མོ' && hour >= 4) ||104(meridiem === 'ཉིན་གུང' && hour < 5) ||105meridiem === 'དགོང་དག'106) {107return hour + 12;108} else {109return hour;110}111},112meridiem: function (hour, minute, isLower) {113if (hour < 4) {114return 'མཚན་མོ';115} else if (hour < 10) {116return 'ཞོགས་ཀས';117} else if (hour < 17) {118return 'ཉིན་གུང';119} else if (hour < 20) {120return 'དགོང་དག';121} else {122return 'མཚན་མོ';123}124},125week: {126dow: 0, // Sunday is the first day of the week.127doy: 6, // The week that contains Jan 6th is the first week of the year.128},129});130
131return bo;132
133})));134