diff options
Diffstat (limited to 'packaging/windows/make-translations.sh')
-rwxr-xr-x | packaging/windows/make-translations.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packaging/windows/make-translations.sh b/packaging/windows/make-translations.sh new file mode 100755 index 00000000..f25fbaac --- /dev/null +++ b/packaging/windows/make-translations.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +for i in `grep -v ^# ../../po/LINGUAS`; do + mkdir -p ../../translations/$i/LC_MESSAGES + msgfmt -c -o ../../translations/$i/LC_MESSAGES/mana.mo ../../po/$i.po +done |