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
|
import i18n from "i18next"
import LanguageDetector from 'i18next-browser-languagedetector';
import { initReactI18next } from "react-i18next";
i18n
.use(LanguageDetector)
.use(initReactI18next)
.init({
initImmediate: false,
resources: {
jp: {
translation: {
'DoujinSea': 'DoujinSea',
'Search': 'ãµã¼ã',
'Store': 'ã¹ãã¢',
'Library': 'ã©ã¤ãã©ãªã¼',
'Account': 'ã¢ã«ã¦ã³ã',
'Download': 'ãã¦ã³ãã¼ã',
'No description': 'ä½åå
容ãªã',
'Featured': 'ç®çåå',
'Popular': '人æ°',
'Latest': 'ææ°',
'Category': 'ç¯ç',
'Manga': '漫ç»',
'Audio': 'é³é¿',
'Video': 'åç»',
'Game': 'ã²ã¼ã ',
'Audience': '観客',
'All ages': 'èå¼±',
'Heterosexual': 'ç°æ§æè
',
'Homosexual': 'åæ§æ',
'Keywords': 'ãã¼ã¯ã¼ã',
}
}
},
lng: 'jp',
fallbackLng: 'cimode',
keySeparator: false,
interpolation: { escapeValue: false },
debug: true,
});
export default i18n
|