Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract i18next strings #1478

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 74 additions & 0 deletions i18next-parser.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
module.exports = {
contextSeparator: '_',
// Key separator used in your translation keys

createOldCatalogs: true,
// Save the \_old files

defaultNamespace: 'translation',
// Default namespace used in your i18next config

defaultValue: '',
// Default value to give to empty keys

indentation: 2,
// Indentation of the catalog files

keepRemoved: false,
// Keep keys from the catalog that are no longer in code

keySeparator: '.',
// Key separator used in your translation keys
// If you want to use plain english keys, separators such as `.` and `:` will conflict. You might want to set `keySeparator: false` and `namespaceSeparator: false`. That way, `t('Status: Loading...')` will not think that there are a namespace and three separator dots for instance.

// see below for more details
lexers: {
hbs: ['HandlebarsLexer'],
handlebars: ['HandlebarsLexer'],

htm: ['HTMLLexer'],
html: ['HTMLLexer'],

js: ['JavascriptLexer'], // if you're writing jsx inside .js files, change this to JsxLexer
jsx: ['JsxLexer'],
mjs: ['JavascriptLexer'],

ts: ['TypescriptLexer'],
tsx: ['TypescriptLexer'],

default: ['JavascriptLexer']
},

lineEnding: 'auto',
// Control the line ending. See options at https://github.com/ryanve/eol

locales: ['en'],
// An array of the locales in your applications

namespaceSeparator: ':',
// Namespace separator used in your translation keys
// If you want to use plain english keys, separators such as `.` and `:` will conflict. You might want to set `keySeparator: false` and `namespaceSeparator: false`. That way, `t('Status: Loading...')` will not think that there are a namespace and three separator dots for instance.

output: 'locales/$LOCALE/$NAMESPACE.json',
// Supports $LOCALE and $NAMESPACE injection
// Supports JSON (.json) and YAML (.yml) file formats
// Where to write the locale files relative to process.cwd()

input: ['packages/*/src/**/*.tsx'],
// An array of globs that describe where to look for source files
// relative to the location of the configuration file

reactNamespace: false,
// For react file, extract the defaultNamespace - https://react.i18next.com/components/translate-hoc.html
// Ignored when parsing a `.jsx` file and namespace is extracted from that file.

sort: false,
// Whether or not to sort the catalog

useKeysAsDefaultValue: false,
// Whether to use the keys as the default value; ex. "Hello": "Hello", "World": "World"
// The option `defaultValue` will not work if this is set to true

verbose: false
// Display info about the parsing including some stats
};
Loading