From 8cfc4ed9ca16c8b5faa3901385a8d9dbaaa03c19 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Fri, 22 Feb 2019 12:04:54 -0800 Subject: Remove file locations --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 94d2e461e..419d605c0 100644 --- a/Makefile +++ b/Makefile @@ -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 $^ -- cgit v1.2.3