forked from 4350pChris/slack-vuesualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.config.ts
55 lines (53 loc) · 1 KB
/
i18n.config.ts
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
import * as en from './locales/en.json';
import * as de from './locales/de.json';
export default defineI18nConfig(() => ({
legacy: false,
locale: 'en',
fallbackLocale: 'de',
datetimeFormats: {
de: {
short: {
year: 'numeric',
month: 'short',
day: 'numeric',
},
long: {
year: 'numeric',
month: 'short',
day: 'numeric',
weekday: 'short',
hour: 'numeric',
minute: 'numeric',
},
timeOfDay: {
hour: 'numeric',
minute: 'numeric',
},
},
en: {
short: {
year: 'numeric',
month: 'short',
day: 'numeric',
},
long: {
year: 'numeric',
month: 'short',
day: 'numeric',
weekday: 'short',
hour: 'numeric',
minute: 'numeric',
hour12: true,
},
timeOfDay: {
hour: 'numeric',
minute: 'numeric',
hour12: true,
},
},
},
messages: {
en,
de
}
}))