File tree 1 file changed +40
-0
lines changed
1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Turkmen [tk]
2
+ import dayjs from 'dayjs'
3
+
4
+ const locale = {
5
+ name : 'tk' ,
6
+ weekdays : 'Ýekşenbe_Duşenbe_Sişenbe_Çarşenbe_Penşenbe_Anna_Şenbe' . split ( '_' ) ,
7
+ weekdaysShort : 'Ýek_Duş_Siş_Çar_Pen_Ann_Şen' . split ( '_' ) ,
8
+ weekdaysMin : 'Ýk_Dş_Sş_Çr_Pn_An_Şn' . split ( '_' ) ,
9
+ months : 'Ýanwar_Fewral_Mart_Aprel_Maý_Iýun_Iýul_Awgust_Sentýabr_Oktýabr_Noýabr_Dekabr' . split ( '_' ) ,
10
+ monthsShort : 'Ýan_Few_Mar_Apr_Maý_Iýn_Iýl_Awg_Sen_Okt_Noý_Dek' . split ( '_' ) ,
11
+ weekStart : 1 ,
12
+ formats : {
13
+ LT : 'HH:mm' ,
14
+ LTS : 'HH:mm:ss' ,
15
+ L : 'DD.MM.YYYY' ,
16
+ LL : 'D MMMM YYYY' ,
17
+ LLL : 'D MMMM YYYY HH:mm' ,
18
+ LLLL : 'dddd, D MMMM YYYY HH:mm'
19
+ } ,
20
+ relativeTime : {
21
+ future : '%s soň' ,
22
+ past : '%s öň' ,
23
+ s : 'birnäçe sekunt' ,
24
+ m : 'bir minut' ,
25
+ mm : '%d minut' ,
26
+ h : 'bir sagat' ,
27
+ hh : '%d sagat' ,
28
+ d : 'bir gün' ,
29
+ dd : '%d gün' ,
30
+ M : 'bir aý' ,
31
+ MM : '%d aý' ,
32
+ y : 'bir ýyl' ,
33
+ yy : '%d ýyl'
34
+ } ,
35
+ ordinal : n => `${ n } .`
36
+ }
37
+
38
+ dayjs . locale ( locale , null , true )
39
+
40
+ export default locale
You can’t perform that action at this time.
0 commit comments