货无忧
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.
 
 
 
 
 

38 lines
1.7 KiB

// Malayalam [ml]
import dayjs from '../index';
var locale = {
name: 'ml',
weekdays: 'ഞയറച_തികളച_ചച_ബധനച_വച_വിച_ശനിച'.split('_'),
months: 'ജനവരി_ഫവരി_മർച_ഏപിൽ_മ_ജൺ_ജ_ഓഗസ_സബർ_ഒകബർ_നവബർ_ഡിബർ'.split('_'),
weekdaysShort: 'ഞയർ_തികൾ_ചവ_ബധൻ_വ_വി_ശനി'.split('_'),
monthsShort: 'ജന._ഫ._മർ._ഏപി._മ_ജൺ_ജ._ഓഗ._സറ._ഒക._നവ._ഡി.'.split('_'),
weekdaysMin: 'ഞ_തി_ച_ബ_വ_വ_ശ'.split('_'),
ordinal: function ordinal(n) {
return n;
},
formats: {
LT: 'A h:mm -ന',
LTS: 'A h:mm:ss -ന',
L: 'DD/MM/YYYY',
LL: 'D MMMM YYYY',
LLL: 'D MMMM YYYY, A h:mm -ന',
LLLL: 'dddd, D MMMM YYYY, A h: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;