summaryrefslogtreecommitdiffstats
path: root/po/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'po/Makefile')
-rw-r--r--po/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/po/Makefile b/po/Makefile
index d4a06ff..06ade36 100644
--- a/po/Makefile
+++ b/po/Makefile
@@ -20,3 +20,11 @@ en.tr text.inc: bootloader.pot
clean:
rm -f text.inc *.tr *~
+
+
+merge: bootloader.pot
+ for n in *.po; do \
+ echo "Merging $$n"; \
+ msgmerge -C $$n $$n bootloader.pot > "$$n"t ; \
+ mv -f "$$n"t $$n ; \
+ done