You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

39 lines
1.6 KiB

// Burmese [my]
import dayjs from '../index';
var locale = {
name: 'my',
weekdays: 'တနငဂန_တနင_အင_ဗဓဟ_ကသပတ_သက_စန'.split('_'),
months: 'ဇနနဝ_ဖ_မတ_ဧပ_မ_ဇ_ဇ_သ_စကတင_အက_နဝင_ဒဇင'.split('_'),
weekStart: 1,
weekdaysShort: 'န_လ_ဂ_ဟ_က_သ_န'.split('_'),
monthsShort: 'ဇန_ဖ_မတ_ပ_မ_ဇ_လ_သ_စက_အက_န_ဒ'.split('_'),
weekdaysMin: 'န_လ_ဂ_ဟ_က_သ_န'.split('_'),
ordinal: function ordinal(n) {
return n;
},
formats: {
LT: 'HH:mm',
LTS: 'HH:mm:ss',
L: 'DD/MM/YYYY',
LL: 'D MMMM YYYY',
LLL: 'D MMMM YYYY HH:mm',
LLLL: 'dddd D MMMM YYYY HH:mm'
},
relativeTime: {
future: 'လမည %s မ',
past: 'လ %s က',
s: 'စကကန.အနညငယ',
m: 'တစနစ',
mm: '%d မနစ',
h: 'တစ',
hh: '%d န',
d: 'တစရက',
dd: '%d ရက',
M: 'တစလ',
MM: '%d လ',
y: 'တစ',
yy: '%d န'
}
};
dayjs.locale(locale, null, true);
export default locale;