i18n-magic
v0.9.6
Published
CLI to help you manage your locales JSON with translations, replacements, etc. with OpenAI
Readme
i18n Magic
Your CLI toolkit to help you with managing your translations in your project.
This currently only works for JSON based translation systems, like: Next-Translate
To use:
- Create a
OPENAI_API_KEYin your.envfile - Create a config file, called
i18n-magic.jsin your project root.
The content of the file should look something like this:
module.exports = {
globPatterns: ['./components/**/*.tsx', './pages/**/*.tsx', './lib/**/*.ts'],
loadPath: 'locales/{{lng}}/{{ns}}.json',
savePath: 'locales/{{lng}}/{{ns}}.json',
locales: ['en', 'de'],
defaultLocale: 'de',
defaultNamespace: 'common',
namespaces: ['common', 'forms'],
context:
'This is a context which increases the quality of the translations by giving context to the LLM',
};then just run:
npx i18n-magic [command]scan
Scan for missing translations, get prompted for each, translate it to the other locales and save it to the JSON file.
replace
Replace a translation based on the key, and translate it to the other locales and save it to the JSON file.
check-missing
Checks if there are any missing translations. Useful for CI/CD or for a husky hook
