mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-17 11:23:03 +01:00
20 lines
343 B
Bash
20 lines
343 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
loc="$1"
|
||
|
while [ -z "$1" -a -z "$loc" ]; do
|
||
|
echo -n "Insert locale to update (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
|
||
|
msgmerge -U --backup=none --previous $loc.po toxic.pot
|
||
|
fi
|