-
Notifications
You must be signed in to change notification settings - Fork 2
/
i18n.config.ts
76 lines (74 loc) · 2.45 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import type { I18nOptions } from 'vue-i18n'
export const I18N_LOCALES = ['fr']
export const I18N_DEFAULT_LOCALE = 'fr'
export const I18N_DEFAULT_TIMEZONE = 'Europe/Paris'
// defineI18nConfig() does not work, therefore we need to type the config object
export default {
datetimeFormats: I18N_LOCALES.reduce(
(acc, cur) => ({
...acc,
[cur]: {
// 28 jan. 2021
'short': {
year: 'numeric',
month: 'short',
day: 'numeric',
timeZone: I18N_DEFAULT_TIMEZONE,
},
// 20:15
'hour': {
hour: '2-digit',
minute: '2-digit',
hour12: false,
timeZone: I18N_DEFAULT_TIMEZONE,
},
// 28 jan. 2021 20:15
'short-hour': {
year: 'numeric',
month: 'short',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
hour12: false,
timeZone: I18N_DEFAULT_TIMEZONE,
},
// 28 jan.
'short-date-only': {
day: 'numeric',
month: 'short',
timeZone: I18N_DEFAULT_TIMEZONE,
},
// monday
'weekday': {
weekday: 'long',
timeZone: I18N_DEFAULT_TIMEZONE,
},
// 28
'date': {
day: 'numeric',
timeZone: I18N_DEFAULT_TIMEZONE,
},
// mon. 28 jan. 2021
'long-date': {
day: 'numeric',
weekday: 'short',
month: 'short',
year: 'numeric',
timeZone: I18N_DEFAULT_TIMEZONE,
},
// mon. 28 jan. 2021 20:15
'long-date-hour': {
day: 'numeric',
weekday: 'short',
month: 'short',
year: 'numeric',
hour: 'numeric',
minute: 'numeric',
hour12: false,
timeZone: I18N_DEFAULT_TIMEZONE,
},
},
}),
{},
),
} satisfies I18nOptions