Skip to content

Commit fce7b58

Browse files
committed
Change: Use a new translations extraction tooling
The old tooling was a bit *hackish* and used a babel plugin internally. Because this tool needed also babel plugins from the deprecated create-react-app project it got replaced with i18next-parser.
1 parent 341793b commit fce7b58

File tree

4 files changed

+1831
-294
lines changed

4 files changed

+1831
-294
lines changed

.babelrc

-31
This file was deleted.

i18next-parser.config.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/* SPDX-FileCopyrightText: 2025 Greenbone AG
2+
*
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
6+
const jsLexer = [{lexer: 'JavascriptLexer', functions: ['_', '_l']}];
7+
const jsxLexer = [{lexer: 'JsxLexer', functions: ['_', '_l']}];
8+
9+
export default {
10+
contextSeparator: null,
11+
defaultNamespace: 'gsa',
12+
input: ['src/**/*.js', 'src/**/*.jsx', 'src/**/*.ts', 'src/**/*.tsx'],
13+
keepRemoved: false,
14+
keySeparator: false,
15+
lexers: {
16+
mjs: jsLexer,
17+
js: jsLexer,
18+
ts: jsLexer,
19+
jsx: jsxLexer,
20+
tsx: jsxLexer,
21+
22+
default: jsLexer,
23+
},
24+
locales: ['de', 'zh_TW', 'zh_CN'],
25+
namespaceSeparator: false,
26+
output: 'public/locales/gsa-$LOCALE.json',
27+
pluralSeparator: false,
28+
resetDefaultValueLocale: 'en',
29+
sort: true,
30+
};

0 commit comments

Comments
 (0)