Using 'Lokalize'. Fails to work when L7Test is run: L7.mo in dir containing L7Test, or in /usr/local/share/locale/fr/LC_MESSAGES/.
15 lines
224 B
Bash
Executable File
15 lines
224 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
|
|
|
|
APPNAME=L7
|
|
DOMAIN=fr
|
|
|
|
msgfmt $DOMAIN/$APPNAME.po -o $DOMAIN/$APPNAME.mo
|
|
|
|
exit 0
|
|
|