1 //! moment.js locale configuration
2 //! locale : Burmese [my]
3 //! author : Squar team, mysquar.com
4 //! author : David Rossellat : https://github.com/gholadr
5 //! author : Tin Aung Lin : https://github.com/thanyawzinmin
7 ;(function (global
, factory
) {
8 typeof exports
=== 'object' && typeof module
!== 'undefined'
9 && typeof require
=== 'function' ? factory(require('../moment')) :
10 typeof define
=== 'function' && define
.amd
? define(['../moment'], factory
) :
11 factory(global
.moment
)
12 }(this, function (moment
) { 'use strict';
39 var my
= moment
.defineLocale('my', {
40 months
: 'ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ'.split('_'),
41 monthsShort
: 'ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ'.split('_'),
42 weekdays
: 'တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ'.split('_'),
43 weekdaysShort
: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),
44 weekdaysMin
: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),
51 LLL
: 'D MMMM YYYY HH:mm',
52 LLLL
: 'dddd D MMMM YYYY HH:mm'
55 sameDay
: '[ယနေ.] LT [မှာ]',
56 nextDay
: '[မနက်ဖြန်] LT [မှာ]',
57 nextWeek
: 'dddd LT [မှာ]',
58 lastDay
: '[မနေ.က] LT [မှာ]',
59 lastWeek
: '[ပြီးခဲ့သော] dddd LT [မှာ]',
63 future
: 'လာမည့် %s မှာ',
64 past
: 'လွန်ခဲ့သော %s က',
77 preparse: function (string
) {
78 return string
.replace(/[၁၂၃၄၅၆၇၈၉၀]/g, function (match
) {
79 return numberMap
[match
];
82 postformat: function (string
) {
83 return string
.replace(/\d/g, function (match
) {
84 return symbolMap
[match
];
88 dow
: 1, // Monday is the first day of the week.
89 doy
: 4 // The week that contains Jan 1st is the first week of the year.