Skip to content
Merged
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------

Expand Down
2 changes: 1 addition & 1 deletion update-translations.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down