NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/dayjs/esm/locale/si.js
2023-09-14 14:47:11 +08:00

38 lines
1.6 KiB
Java
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Sinhalese [si]
import dayjs from '../index';
var locale = {
name: 'si',
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: 'YYYY/MM/DD',
LL: 'YYYY MMMM D',
LLL: 'YYYY MMMM D, a h:mm',
LLLL: 'YYYY MMMM D [නි] dddd, a h:mm:ss'
},
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;