-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.config.js
153 lines (150 loc) · 2.84 KB
/
i18n.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
// all available locales that can be enabled
export const availableLocales = [
{
code: 'en',
iso: 'en-US',
name: 'English',
file: 'en.json',
},
{
code: 'de',
iso: 'de-DE',
name: 'Deutsch',
file: 'de.json',
},
{
code: 'fr',
iso: 'fr-FR',
name: 'Français',
file: 'fr.json',
},
{
code: 'pl',
iso: 'pl-PL',
name: 'Polski',
file: 'pl.json',
},
{
code: 'zh',
iso: 'zh-CN',
name: '简体中文',
file: 'zh.json',
},
]
/*
DateTimeFormat
Vue-i18n Doc: https://kazupon.github.io/vue-i18n/guide/datetime.html
DateTimeFormat Doc: http://www.ecma-international.org/ecma-402/2.0/#sec-intl-datetimeformat-constructor
*/
export const dateTimeFormats = {
de: {
date: {
year: 'numeric',
month: '2-digit',
day: '2-digit',
},
dateLong: {
year: 'numeric',
month: 'long',
day: 'numeric',
},
time: {
hour: 'numeric',
minute: 'numeric',
},
timeLong: {
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
},
dateTime: {
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour: 'numeric',
minute: 'numeric',
},
dateTimeLong: {
year: 'numeric',
month: '2-digit',
day: 'numeric',
weekday: 'short',
hour: 'numeric',
minute: 'numeric',
},
dateTimeTimezone: {
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour: 'numeric',
minute: 'numeric',
timeZoneName: 'short',
},
'full-timezone': {
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour: 'numeric',
minute: 'numeric',
timeZoneName: 'short',
},
},
en: {
date: {
year: 'numeric',
month: '2-digit',
day: '2-digit',
},
dateLong: {
year: 'numeric',
month: 'long',
day: 'numeric',
},
time: {
hour: 'numeric',
minute: 'numeric',
timeZoneName: 'short',
},
timeLong: {
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
},
dateTime: {
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour: 'numeric',
minute: 'numeric',
},
dateTimeLong: {
year: 'numeric',
month: '2-digit',
day: 'numeric',
weekday: 'short',
hour: 'numeric',
minute: 'numeric',
},
dateTimeTimezone: {
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour: 'numeric',
minute: 'numeric',
timeZoneName: 'short',
},
'full-timezone': {
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour: 'numeric',
minute: 'numeric',
timeZoneName: 'short',
},
},
}
export default {
legacy: false,
fallbackLocale: 'en',
datetimeFormats: dateTimeFormats,
}