Commit f36f4bb0 by Renzo Lucioni

Force Transifex client to download translations

Transifex's Python client [compares last-modified timestamps](https://github.com/transifex/transifex-client/blob/master/txclib/project.py#L1009) to decide whether to download a file. This comparison might work great if you weren't using version control and only ever worked with one copy of the files. However, if you're using Git and clone this repo any time after new translations have been contributed by translators on Transifex, the client will never download new translations for you, since your files appear to have been modified after those on Transifex.

Forcing the client to download all files is a bit crude, but necessary until we can contribute a patch for the Transifex client.
parent 5ae3dba5
...@@ -87,7 +87,7 @@ compile_translations: ...@@ -87,7 +87,7 @@ compile_translations:
fake_translations: extract_translations dummy_translations compile_translations fake_translations: extract_translations dummy_translations compile_translations
pull_translations: pull_translations:
tx pull -a tx pull -af
push_translations: push_translations:
tx push -s tx push -s
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment