-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathi18n.config.ts
More file actions
39 lines (39 loc) · 1005 Bytes
/
Copy pathi18n.config.ts
File metadata and controls
39 lines (39 loc) · 1005 Bytes
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
export default defineI18nConfig(() => ({
legacy: false,
locales: ["fr", "us", "de", "it"],
locale: "fr",
messages: {
us: {
album: "Album",
song: "Song",
artist: "Artist",
share: "Share",
search: "Search",
redirecting: "Redirecting...",
},
fr: {
album: "Album",
song: "Morceau",
artist: "Artiste",
share: "Partager",
search: "Rechercher",
redirecting: "Redirection...",
},
de:{
album: "Album",
song: "Lied",
artist: "Künstler",
share: "Teilen",
search: "Suche",
redirecting: "Umleiten...",
},
it:{
album: "Album",
song: "Canzone",
artist: "Artista",
share: "Condividi",
search: "Cerca",
redirecting: "Reindirizzamento...",
}
},
}));