aboutsummaryrefslogtreecommitdiff
path: root/po/updatepo.sh
diff options
context:
space:
mode:
authorBurt P <pburt0@gmail.com>2017-07-08 21:27:27 -0500
committerLeandro Pereira <leandro@hardinfo.org>2017-07-12 19:38:41 -0700
commit27aaf06e5012ca9caed7c6a829de2aaa2f172f10 (patch)
tree019b78625a9f46f79807b82086b8440af0474447 /po/updatepo.sh
parent087600814086d35d08bf6d6dafd9ab53d8a42a4f (diff)
Re-update .po files, without fuzzy matching
Most of the fuzzy matches were way off. Add -N to msgmerge to fix. Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'po/updatepo.sh')
-rw-r--r--po/updatepo.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/po/updatepo.sh b/po/updatepo.sh
new file mode 100644
index 00000000..9289dabd
--- /dev/null
+++ b/po/updatepo.sh
@@ -0,0 +1,6 @@
+
+for f in *.po
+do
+ cp "$f" "$f.old"
+ msgmerge -N "$f" hardinfo.pot > tmp.po && mv tmp.po "$f"
+done