1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-06 04:27:56 +02:00
toxic/translations/tools/create_mo.sh

20 lines
307 B
Bash
Raw Normal View History

2015-05-25 16:38:52 +02:00
#!/bin/bash
cd $(dirname $0)
loc="$1"
while [ -z "$1" -a -z "$loc" ]; do
echo -n "Insert locale (for example \"en\"): "
read loc
done
cd ..
if [ ! -e "$loc.po" ]; then
echo "File \"$loc.po\" not found"
echo "The translation file must exist"
exit 1
else
msgfmt -c -o $loc.mo $loc.po
fi