Files
s7/Resources/Lokalize/2_makemo.sh
Saleem Edah-Tally ef6f25ef27 Initial commit.
2025-06-28 17:40:42 +02:00

15 lines
249 B
Bash
Executable File

#!/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