NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/dayjs/esm/locale/ml.js

38 lines
1.7 KiB
Java
Raw Normal View History

2023-09-14 14:47:11 +08:00
// 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;