1 |
|
2 | import dayjs from '../index';
|
3 | var locale = {
|
4 | name: 'tk',
|
5 | weekdays: 'Ýekşenbe_Duşenbe_Sişenbe_Çarşenbe_Penşenbe_Anna_Şenbe'.split('_'),
|
6 | weekdaysShort: 'Ýek_Duş_Siş_Çar_Pen_Ann_Şen'.split('_'),
|
7 | weekdaysMin: 'Ýk_Dş_Sş_Çr_Pn_An_Şn'.split('_'),
|
8 | months: 'Ýanwar_Fewral_Mart_Aprel_Maý_Iýun_Iýul_Awgust_Sentýabr_Oktýabr_Noýabr_Dekabr'.split('_'),
|
9 | monthsShort: 'Ýan_Few_Mar_Apr_Maý_Iýn_Iýl_Awg_Sen_Okt_Noý_Dek'.split('_'),
|
10 | weekStart: 1,
|
11 | formats: {
|
12 | LT: 'HH:mm',
|
13 | LTS: 'HH:mm:ss',
|
14 | L: 'DD.MM.YYYY',
|
15 | LL: 'D MMMM YYYY',
|
16 | LLL: 'D MMMM YYYY HH:mm',
|
17 | LLLL: 'dddd, D MMMM YYYY HH:mm'
|
18 | },
|
19 | relativeTime: {
|
20 | future: '%s soň',
|
21 | past: '%s öň',
|
22 | s: 'birnäçe sekunt',
|
23 | m: 'bir minut',
|
24 | mm: '%d minut',
|
25 | h: 'bir sagat',
|
26 | hh: '%d sagat',
|
27 | d: 'bir gün',
|
28 | dd: '%d gün',
|
29 | M: 'bir aý',
|
30 | MM: '%d aý',
|
31 | y: 'bir ýyl',
|
32 | yy: '%d ýyl'
|
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 |