1 |
|
2 | import dayjs from '../index';
|
3 | var locale = {
|
4 | name: 'si',
|
5 | weekdays: 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split('_'),
|
6 | months: 'දුරුතු_නවම්_මැදින්_බක්_වෙසක්_පොසොන්_ඇසළ_නිකිණි_බිනර_වප්_ඉල්_උඳුවප්'.split('_'),
|
7 | weekdaysShort: 'ඉරි_සඳු_අඟ_බදා_බ්රහ_සිකු_සෙන'.split('_'),
|
8 | monthsShort: 'දුරු_නව_මැදි_බක්_වෙස_පොසො_ඇස_නිකි_බින_වප්_ඉල්_උඳු'.split('_'),
|
9 | weekdaysMin: 'ඉ_ස_අ_බ_බ්ර_සි_සෙ'.split('_'),
|
10 | ordinal: function ordinal(n) {
|
11 | return n;
|
12 | },
|
13 | formats: {
|
14 | LT: 'a h:mm',
|
15 | LTS: 'a h:mm:ss',
|
16 | L: 'YYYY/MM/DD',
|
17 | LL: 'YYYY MMMM D',
|
18 | LLL: 'YYYY MMMM D, a h:mm',
|
19 | LLLL: 'YYYY MMMM D [වැනි] dddd, a h:mm:ss'
|
20 | },
|
21 | relativeTime: {
|
22 | future: '%sකින්',
|
23 | past: '%sකට පෙර',
|
24 | s: 'තත්පර කිහිපය',
|
25 | m: 'විනාඩිය',
|
26 | mm: 'විනාඩි %d',
|
27 | h: 'පැය',
|
28 | hh: 'පැය %d',
|
29 | d: 'දිනය',
|
30 | dd: 'දින %d',
|
31 | M: 'මාසය',
|
32 | MM: 'මාස %d',
|
33 | y: 'වසර',
|
34 | yy: 'වසර %d'
|
35 | }
|
36 | };
|
37 | dayjs.locale(locale, null, true);
|
38 | export default locale; |
\ | No newline at end of file |