blob: 1d4132397da00b248234bdbbb033e90922987af6 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/sh
for i in `grep -v ^# ../../po/LINGUAS`; do
mkdir -p ../../translations/$i/LC_MESSAGES
msgfmt -c -o ../../translations/$i/LC_MESSAGES/manaplus.mo ../../po/$i.po
done
|