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

2 years ago
// 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;