Add localization resources.

This commit is contained in:
SET
2022-10-17 18:50:49 +02:00
parent 6b37b9b9f7
commit 4aca5126c3
7 changed files with 232 additions and 2 deletions

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

@@ -0,0 +1,16 @@
#!/bin/bash
if [ ! -x 2_makemo.sh ]
then
echo "Wrong working directory. Please cd to the directory containing this script."
exit 0
fi
APPNAME=T7
DOMAIN=fr
msgfmt $DOMAIN/$APPNAME.po -o $DOMAIN/$APPNAME.mo
# cp $DOMAIN/$APPNAME.mo /usr/local/share/locale/$DOMAIN/LC_MESSAGES/
exit 0