-
Notifications
You must be signed in to change notification settings - Fork 854
Expand file tree
/
Copy pathresources.mjs
More file actions
51 lines (50 loc) · 852 Bytes
/
resources.mjs
File metadata and controls
51 lines (50 loc) · 852 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
40
41
42
43
44
45
46
47
48
49
50
51
import de from './de/main.json'
import en from './en/main.json'
import es from './es/main.json'
import fr from './fr/main.json'
import id from './id/main.json'
import it from './it/main.json'
import ja from './ja/main.json'
import ko from './ko/main.json'
import pt from './pt/main.json'
import ru from './ru/main.json'
import zhHans from './zh-hans/main.json'
import zhHant from './zh-hant/main.json'
export const resources = {
de: {
translation: de,
},
en: {
translation: en,
},
es: {
translation: es,
},
fr: {
translation: fr,
},
id: {
translation: id,
},
it: {
translation: it,
},
ja: {
translation: ja,
},
ko: {
translation: ko,
},
pt: {
translation: pt,
},
ru: {
translation: ru,
},
zh: {
translation: zhHans,
},
zhHant: {
translation: zhHant,
},
}