Skip to content

Commit 34900a9

Browse files
committed
Document how to prevent i18next-parser translation overrides (#451)
1 parent a6a9e83 commit 34900a9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

frontend/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,15 @@ yarn i18next -c i18next-parser.config.mjs
180180

181181
The files thus produced can be sent to the translators in order to fill out the actual translations.
182182

183+
Defaults sometimes start or end with spaces. `i18next` will strip them, but in some cases they need to be retained. The following trick will preserve those spaces and prevent `i18next` from stripping them again in the future:
184+
185+
1. Manually edit `src/i18n/en/translation.json` to put the spaces back and commit.
186+
2. Run `i18next` to autogenerate the translation files. This will strip the spaces from the `translation.json` that you just hand-edited in. However, a copy of your hand-edited strings is retained in `src/i18n/en/translation_old.json`.
187+
3. Run `git checkout HEAD src/i18n/en/translation.json` to restore your hand-edited strings in the main `translation.json` as well.
188+
4. Commit the `translation_old.json`. Because both the `translation.json` and the `translation_old.json` contain your hand-edited version of the string, `i18next` will remember not to strip the spaces again in the future.
189+
190+
The above trick can also be used in other situations where you want to prevent `i18next` from overriding what is in the `translation.json`, for example if you decide to remove a default value from the source files altogether.
191+
183192

184193
#### Adding new languages
185194

0 commit comments

Comments
 (0)