File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ import dayjs from 'dayjs'
2+
3+ const locale = {
4+ name : 'az' ,
5+ weekdays : 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə' . split ( '_' ) ,
6+ weekdaysShort : 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən' . split ( '_' ) ,
7+ weekdaysMin : 'Bz_BE_ÇA_Çə_CA_Cü_Şə' . split ( '_' ) ,
8+ months : 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr' . split ( '_' ) ,
9+ monthsShort : 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek' . 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 : '%s sonra' ,
21+ past : '%s əvvəl' ,
22+ s : 'bir neçə saniyə' ,
23+ m : 'bir dəqiqə' ,
24+ mm : '%d dəqiqə' ,
25+ h : 'bir saat' ,
26+ hh : '%d saat' ,
27+ d : 'bir gün' ,
28+ dd : '%d gün' ,
29+ M : 'bir ay' ,
30+ MM : '%d ay' ,
31+ y : 'bir il' ,
32+ yy : '%d il'
33+ } ,
34+ ordinal : n => n
35+ }
36+
37+ dayjs . locale ( locale , null , true )
38+
39+ export default locale
You can’t perform that action at this time.
0 commit comments