diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-05-31 18:24:41 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-05-31 18:24:41 +0200 |
commit | f4ee46124a4b0926703b11ff11ee873be123b933 (patch) | |
tree | 4d40acabb0ac9d000230ce93d957935f75c21826 /tools/translations/Makefile | |
parent | bbaaf032009cb9deeab2e9693fa702288ae1b9ec (diff) |
i18n: Sort files to parse alphabetically
This should ensure that python produces the same tools.pot for every user,
and thus that the .po will not get useless diffs upon merge.
Diffstat (limited to 'tools/translations/Makefile')
-rw-r--r-- | tools/translations/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/translations/Makefile b/tools/translations/Makefile index 30b0832783..8f336694e8 100644 --- a/tools/translations/Makefile +++ b/tools/translations/Makefile @@ -7,7 +7,7 @@ LANGS = $(POFILES:%.po=%) all: update merge update: - @cd ../..; python tools/translations/extract.py + @cd ../..; python2 tools/translations/extract.py merge: @for po in $(POFILES); do \ |