forked from tracim/tracim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18next.scanner.js
55 lines (49 loc) · 1.75 KB
/
i18next.scanner.js
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
const scanner = require('i18next-scanner')
const vfs = require('vinyl-fs')
const options = {
debug: false,
removeUnusedKeys: true,
func: {
list: ['t', 'props.t', 'this.props.t', 'i18n.t'],
extensions: ['.js', '.jsx']
},
trans: {
component: 'Trans',
i18nKey: 'i18nKey',
defaultsKey: 'defaults',
extensions: ['.js', '.jsx'],
fallbackKey: (ns, value) => value,
acorn: {
ecmaVersion: 10, // defaults to 10
sourceType: 'module' // defaults to 'module'
// Check out https://github.com/acornjs/acorn/tree/master/acorn#interface for additional options
}
},
lngs: ['en', 'fr', 'pt', 'de', 'ar', 'es', 'nb_NO'],
defaultLng: 'en',
keySeparator: false, // false means "keyBasedFallback"
nsSeparator: false, // false means "keyBasedFallback"
fallbackLng: false,
ns: ['translation'], // namespace
defaultNS: 'translation',
// @param {string} lng The language currently used.
// @param {string} ns The namespace currently used.
// @param {string} key The translation key.
// @return {string} Returns a default value for the translation key.
// Return key as the default value for English language. Otherwise, returns an empty string
defaultValue: (lng, ns, key) => lng === 'en' ? key : '',
react: { wait: true },
resource: {
// The path where resources get loaded from.
// /!\ /!\ /!\ Relative to CURRENT working directory. /!\
loadPath: 'i18next.scanner/{{lng}}/{{ns}}.json',
// The path to store resources.
// /!\ /!\ /!\ Relative to the path specified by `vfs.dest('./i18next.scanner')`. /!\
savePath: '{{lng}}/{{ns}}.json',
jsonIndent: 2,
lineEnding: '\n'
}
}
vfs.src(['./src/**/*.jsx', './src/**/*.js'])
.pipe(scanner(options))
.pipe(vfs.dest('./i18next.scanner'))