Files
s7/Resources/Lokalize/2_makemo.sh

15 lines
249 B
Bash
Raw Normal View History

2025-06-28 17:40:42 +02:00
#!/bin/bash
if [ ! -x 2_makemo.sh ]
then
echo "Wrong working directory. Please cd to the directory containing this script."
exit 0
fi
DOMAIN=fr
COMPONENT_NAME=S7
msgfmt $DOMAIN/${COMPONENT_NAME}.po -o $DOMAIN/${COMPONENT_NAME}.mo
exit 0