diff options
Diffstat (limited to 'functions/l10n.sh')
-rwxr-xr-x | functions/l10n.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/l10n.sh b/functions/l10n.sh index 029c7f744..0396f0bef 100755 --- a/functions/l10n.sh +++ b/functions/l10n.sh @@ -9,7 +9,7 @@ if [ -x "$(which gettext.sh 2>/dev/null)" ] && Find_files /usr/share/locale/*/LC_MESSAGES/${PACKAGE}.mo then - _L10N="enabled" + _L10N="true" # gettext domain (.mo file name) TEXTDOMAIN="${PACKAGE}" @@ -22,5 +22,5 @@ then # load gettext functions . gettext.sh else - _L10N="disabled" + _L10N="false" fi |