Hi everyone,
I’m trying to add translations for some untranslated content in my app and need help using the following command:
bench get-untranslated --app [appname] [lang] [path]
According to the documentation (link), the process to add new translations is:
- Run
bench get-untranslated [lang] [path]
to find untranslated strings. - Add the translated strings in another file in the same order.
- Run
bench update-translations [lang] [path of untranslated strings] [path of translated strings]
.
However, when I run the command:
bench get-untranslated --app erpnext ar ./ar.txt
I see the following output in the terminal:
2818 missing translations of 8384
But no new file (ar.txt
) is actually created. Am I missing something?