Files
2026-07-10 11:28:16 +08:00

38 lines
1.5 KiB
Go

// 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;