mirror of
https://framagit.org/fiat-tux/hat-softwares/lutim.git
synced 2026-07-06 18:00:59 +02:00
12 lines
272 B
Bash
Executable File
12 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
FILE=$1
|
|
if [[ ! -e themes/default/lib/Lutim/I18N/$FILE.po ]]
|
|
then
|
|
echo "themes/default/lib/Lutim/I18N/$FILE.po does not exist. Exiting."
|
|
exit 1
|
|
else
|
|
LOCALE=$(echo $FILE | sed -e "s@_@-@g")
|
|
zanata-cli -q -B push --push-type trans -l $LOCALE
|
|
fi
|
|
|