1 |
|
2 | import dayjs from '../index';
|
3 | var locale = {
|
4 | name: 'ro',
|
5 | weekdays: 'Duminică_Luni_Marți_Miercuri_Joi_Vineri_Sâmbătă'.split('_'),
|
6 | weekdaysShort: 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'),
|
7 | weekdaysMin: 'Du_Lu_Ma_Mi_Jo_Vi_Sâ'.split('_'),
|
8 | months: 'Ianuarie_Februarie_Martie_Aprilie_Mai_Iunie_Iulie_August_Septembrie_Octombrie_Noiembrie_Decembrie'.split('_'),
|
9 | monthsShort: 'Ian._Febr._Mart._Apr._Mai_Iun._Iul._Aug._Sept._Oct._Nov._Dec.'.split('_'),
|
10 | weekStart: 1,
|
11 | formats: {
|
12 | LT: 'H:mm',
|
13 | LTS: 'H:mm:ss',
|
14 | L: 'DD.MM.YYYY',
|
15 | LL: 'D MMMM YYYY',
|
16 | LLL: 'D MMMM YYYY H:mm',
|
17 | LLLL: 'dddd, D MMMM YYYY H:mm'
|
18 | },
|
19 | relativeTime: {
|
20 | future: 'peste %s',
|
21 | past: 'acum %s',
|
22 | s: 'câteva secunde',
|
23 | m: 'un minut',
|
24 | mm: '%d minute',
|
25 | h: 'o oră',
|
26 | hh: '%d ore',
|
27 | d: 'o zi',
|
28 | dd: '%d zile',
|
29 | M: 'o lună',
|
30 | MM: '%d luni',
|
31 | y: 'un an',
|
32 | yy: '%d ani'
|
33 | },
|
34 | ordinal: function ordinal(n) {
|
35 | return n;
|
36 | }
|
37 | };
|
38 | dayjs.locale(locale, null, true);
|
39 | export default locale; |
\ | No newline at end of file |