-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.ts
64 lines (61 loc) · 1.44 KB
/
i18n.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
// i18n.ts
import { I18n } from "i18n-js";
import en from "@/locales/en/common.json";
import af from "@/locales/af/common.json";
import ar from "@/locales/ar/common.json";
import ca from "@/locales/ca/common.json";
import cs from "@/locales/cs/common.json";
import da from "@/locales/da/common.json";
import de from "@/locales/de/common.json";
import el from "@/locales/el/common.json";
import es from "@/locales/es/common.json";
import fi from "@/locales/fi/common.json";
import fr from "@/locales/fr/common.json";
import he from "@/locales/he/common.json";
import hu from "@/locales/hu/common.json";
import it from "@/locales/it/common.json";
import ja from "@/locales/ja/common.json";
import ko from "@/locales/ko/common.json";
import nl from "@/locales/nl/common.json";
import no from "@/locales/no/common.json";
import pl from "@/locales/pl/common.json";
import pt from "@/locales/pt/common.json";
import ro from "@/locales/ro/common.json";
import ru from "@/locales/ru/common.json";
import sr from "@/locales/sr/common.json";
import sv from "@/locales/sv/common.json";
import tr from "@/locales/tr/common.json";
import uk from "@/locales/uk/common.json";
import vi from "@/locales/vi/common.json";
import zh from "@/locales/zh/common.json";
export const i18n = new I18n({
en,
af,
ar,
ca,
cs,
da,
de,
el,
es,
fi,
fr,
he,
hu,
it,
ja,
ko,
nl,
no,
pl,
pt,
ro,
ru,
sr,
sv,
tr,
uk,
vi,
zh,
});
export default i18n;