We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba724ff commit 8a42c33Copy full SHA for 8a42c33
Makefile
@@ -210,6 +210,12 @@ locale/circuitpython.pot: all-source
210
translate: locale/circuitpython.pot
211
for po in $(shell ls locale/*.po); do msgmerge -U $$po -s --no-fuzzy-matching --add-location=file locale/circuitpython.pot; done
212
213
+merge-translate:
214
+ git merge HEAD 1>&2 2> /dev/null; test $$? -eq 128
215
+ rm locale/*~ || true
216
+ git checkout --ours -- locale/*
217
+ make translate
218
+
219
check-translate: locale/circuitpython.pot $(wildcard locale/*.po)
220
$(PYTHON) tools/check_translations.py $^
221
0 commit comments