-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.ts
63 lines (61 loc) · 1.47 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
import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
import LanguageDetector from 'i18next-browser-languagedetector';
i18n
// detect user language
// learn more: https://github.com/i18next/i18next-browser-languageDetector
.use(LanguageDetector)
// pass the i18n instance to react-i18next.
.use(initReactI18next)
// init i18next
// for all options read: https://www.i18next.com/overview/configuration-options
.init({
debug: true,
fallbackLng: 'en',
interpolation: {
escapeValue: false, // not needed for react as it escapes by default
},
resources: {
en: {
translation: {
events: {
title: 'Events Today'
},
member: {
title: 'Member'
},
matelight: {
title: 'Matelight',
nothing: 'nothing',
playing: 'playing'
},
bar: {
title: 'Bar',
open: 'open',
closed: 'closed',
}
}
},
de: {
translation: {
events: {
title: 'Heutige Events'
},
member: {
title: 'Member'
},
matelight: {
title: 'Matelight',
nothing: 'nichts',
playing: 'spielt'
},
bar: {
title: 'Bar',
open: 'geöffnet',
closed: 'geschlossen',
}
}
}
}
});
export default i18n;