1 // moment.js locale configuration
2 // locale : Burmese (my)
3 // author : Squar team, mysquar.com
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
39 return moment.defineLocale('my', {
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: 'dddd LT [မှာ]',
57 lastDay: '[မနေ.က] LT [မှာ]',
58 lastWeek: '[ပြီးခဲ့သော] dddd LT [မှာ]',
62 future: 'လာမည့် %s မှာ',
63 past: 'လွန်ခဲ့သော %s က',
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];
87 dow: 1, // Monday is the first day of the week.
88 doy: 4 // The week that contains Jan 1st is the first week of the year.