diff --git a/README.md b/README.md index 7101d9a..327c439 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,9 @@ It will do the following automatically: - Post-process them into valid and committable format - Add missing translations to the build system (TODO) +To be able to pull translation files from the Transifex website, it needs +the [Transifex CLI](https://github.com/transifex/cli). + clang-format ------------ diff --git a/update-translations.py b/update-translations.py index 93957ad..57d87f3 100755 --- a/update-translations.py +++ b/update-translations.py @@ -62,7 +62,7 @@ def remove_current_translations(): os.remove(name + ORIGINAL_SUFFIX) def fetch_all_translations(): - if subprocess.call([TX, 'pull', '-f', '-a']): + if subprocess.call([TX, 'pull', '--translations', '--force', '--all']): print('Error while fetching translations', file=sys.stderr) sys.exit(1)