Skip to content
Snippets Groups Projects
Commit 830278ca authored by Bob Mottram's avatar Bob Mottram
Browse files

Making mo files

parent a253dac5
No related branches found
No related tags found
No related merge requests found
......@@ -90,10 +90,17 @@ function install_translations {
do
# convert json to mo
if [ -f /usr/bin/i18next-conv ]; then
if [ -f locale/${lang}/${COMMAND_NAME}.json ]; then
i18next-conv -l ${lang} -s locale/${lang}/${COMMAND_NAME}.json -t /usr/share/locale/${lang}/${COMMAND_NAME}.mo
if [ ! -f locale/${lang}/${COMMAND_NAME}.mo ]; then
if [ -f locale/${lang}/${COMMAND_NAME}.json ]; then
i18next-conv -l ${lang} -s locale/${lang}/${COMMAND_NAME}.json -t locale/${lang}/${COMMAND_NAME}.mo
fi
fi
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
done
done
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment