summaryrefslogtreecommitdiff
path: root/i18n-update
diff options
context:
space:
mode:
Diffstat (limited to 'i18n-update')
-rwxr-xr-xi18n-update6
1 files changed, 6 insertions, 0 deletions
diff --git a/i18n-update b/i18n-update
new file mode 100755
index 0000000..5159100
--- /dev/null
+++ b/i18n-update
@@ -0,0 +1,6 @@
+#!/bin/sh
+for i in *.po
+do dir="locale/${i%.mo}/LC_MESSAGES"
+ [ -d "$dir" ] || mkdir -p "$dir"
+ msgfmt -v "$i" -o "$dir/subdap.mo"
+done