diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-02-22 12:04:54 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2019-02-22 13:09:10 -0800 |
| commit | 8cfc4ed9ca16c8b5faa3901385a8d9dbaaa03c19 (patch) | |
| tree | 65b9c39c24f272449f873f50129c9a8c49ad447d /Makefile | |
| parent | 2a5a735d9440ca9998e80239b41410a35b0c972d (diff) | |
Remove file locations
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 -F -o circuitpython.pot -p locale + find . -iname "*.c" | xargs xgettext -L C -s --no-location --keyword=translate -o circuitpython.pot -p locale translate: locale/circuitpython.pot - for po in $(shell ls locale/*.po); do msgmerge -U -F $$po locale/circuitpython.pot; done + for po in $(shell ls locale/*.po); do msgmerge -U $$po -s --no-location locale/circuitpython.pot; done check-translate: locale/circuitpython.pot $(wildcard locale/*.po) $(PYTHON) tools/check_translations.py $^ |
