Update translations

This commit is contained in:
Bob Mottram 2016-03-22 20:17:21 +00:00
parent 803e4a3b9a
commit 2bb7a202e9
1 changed files with 6 additions and 4 deletions

View File

@ -97,7 +97,7 @@ function install_translations {
do
COMMAND_NAME=$(echo $f | awk -F '/' '{print $2}')
for lang in "${language[@]}"
do
do
# convert json to mo
if [ -f /usr/bin/i18next-conv ]; then
if [ ! -f locale/${lang}/${COMMAND_NAME}.mo ]; then
@ -109,9 +109,11 @@ function install_translations {
fi
# install the mo
if [ -f locale/${lang}/${COMMAND_NAME}.mo ]; then
cp locale/${lang}/${COMMAND_NAME}.mo /usr/share/locale/${lang}/${COMMAND_NAME}.mo
fi
if [ -d /usr/share/locale/${lang} ]; then
if [ -f locale/${lang}/${COMMAND_NAME}.mo ]; then
cp locale/${lang}/${COMMAND_NAME}.mo /usr/share/locale/${lang}/${COMMAND_NAME}.mo
fi
fi
done
done
}