summaryrefslogtreecommitdiff
path: root/pocompile.sh
blob: f25c51e8177c369dcba71d72b6d231afdab34a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
# Helper script to compile all .po files in the i18n directroy into .mo files.

cd i18n

eme=""
if [ "$1" == "-emerge" ]; then
	eme="y"
	shift
fi

if [ $# -gt 0 ]; then
	langs="$@"
else
	langs="$(ls *.po | sed 's/\.po//g')"
fi

for LANG in $langs; do
	ITEM=${LANG}.po

	if [ -f $ITEM ]; then
		echo "Creating translation file for ${LANG}."

		if [ "$eme"x == "yx" ]; then
			mkdir mo -p
			msgfmt ${ITEM} -o mo/${LANG}.mo
		else
			mkdir ${LANG}/LC_MESSAGES -p
			msgfmt ${ITEM} -o ${LANG}/LC_MESSAGES/portato.mo
		fi
	fi
done