summaryrefslogtreecommitdiff
path: root/format_translations.sh
blob: f0c45361e178e85f6a402202e1efab0d762e8e70 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

for locale_dir in locale/*; do
	for pofile in $locale_dir/LC_MESSAGES/*.po; do
		mofile=`echo $pofile | sed -n "s/\\.po/\\.mo/p"`;	
		echo "$pofile => $mofile";
		msgfmt "$pofile" -o "$mofile";
	done;
done;