17 lines
297 B
Bash
Executable File
17 lines
297 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=PMP7
|
|
DOMAIN=fr
|
|
|
|
msgfmt $DOMAIN/$APPNAME.po -o $DOMAIN/$APPNAME.mo
|
|
|
|
# cp $DOMAIN/$APPNAME.mo /usr/local/share/locale/$DOMAIN/LC_MESSAGES/
|
|
|
|
exit 0
|
|
|