Add localization resources.

Using 'Lokalize'.

Fails to work when L7Test is run:
  L7.mo in dir containing L7Test, or in /usr/local/share/locale/fr/LC_MESSAGES/.
This commit is contained in:
SET
2022-10-15 21:46:05 +02:00
parent f7e210a356
commit 2b318e2524
7 changed files with 136 additions and 1 deletions

14
Resources/Lokalize/2_makemo.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/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