diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2018-08-30 16:12:20 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2018-08-30 16:12:20 -0700 |
| commit | 64a333eeafc35975c6ffab025974f6029ddea201 (patch) | |
| tree | e28baddb8941a2f6514556ec4d522db6271a2342 /Makefile | |
| parent | 2a2699bef618e704bcdeca51ae351404690821cb (diff) | |
Clean up duplicates and have make translate produce a stable ordering.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -194,10 +194,10 @@ pseudoxml: all-source: locale/circuitpython.pot: all-source - find . -iname "*.c" | xargs xgettext -L C --keyword=translate -o circuitpython.pot -p locale + find . -iname "*.c" | xargs xgettext -L C --keyword=translate -F -o circuitpython.pot -p locale translate: locale/circuitpython.pot - for po in $(shell ls locale/*.po); do msgmerge -U $$po locale/circuitpython.pot; done + for po in $(shell ls locale/*.po); do msgmerge -U -F $$po locale/circuitpython.pot; done check-translate: locale/circuitpython.pot $(wildcard locale/*.po) $(PYTHON) tools/check_translations.py $^ |
