1 |
|
2 | import dayjs from '../index';
|
3 | var locale = {
|
4 | name: 'tet',
|
5 | weekdays: 'Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu'.split('_'),
|
6 | months: 'Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru'.split('_'),
|
7 | weekStart: 1,
|
8 | weekdaysShort: 'Dom_Seg_Ters_Kua_Kint_Sest_Sab'.split('_'),
|
9 | monthsShort: 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),
|
10 | weekdaysMin: 'Do_Seg_Te_Ku_Ki_Ses_Sa'.split('_'),
|
11 | ordinal: function ordinal(n) {
|
12 | return n;
|
13 | },
|
14 | formats: {
|
15 | LT: 'HH:mm',
|
16 | LTS: 'HH:mm:ss',
|
17 | L: 'DD/MM/YYYY',
|
18 | LL: 'D MMMM YYYY',
|
19 | LLL: 'D MMMM YYYY HH:mm',
|
20 | LLLL: 'dddd, D MMMM YYYY HH:mm'
|
21 | },
|
22 | relativeTime: {
|
23 | future: 'iha %s',
|
24 | past: '%s liuba',
|
25 | s: 'minutu balun',
|
26 | m: 'minutu ida',
|
27 | mm: 'minutu %d',
|
28 | h: 'oras ida',
|
29 | hh: 'oras %d',
|
30 | d: 'loron ida',
|
31 | dd: 'loron %d',
|
32 | M: 'fulan ida',
|
33 | MM: 'fulan %d',
|
34 | y: 'tinan ida',
|
35 | yy: 'tinan %d'
|
36 | }
|
37 | };
|
38 | dayjs.locale(locale, null, true);
|
39 | export default locale; |
\ | No newline at end of file |