diff options
author | Daniel Baumann <daniel@debian.org> | 2010-09-26 12:38:38 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:19:23 +0100 |
commit | c5c3f6133a0fb62ba9c2c3b839e6ea5774f9c76a (patch) | |
tree | 44a6d3a12cd11067aea2a4d43eb9133cc25bad2f /functions/l10n.sh | |
parent | 941a47be0ca3061f54a237583092357d1ff80f7c (diff) | |
download | vyos-live-build-c5c3f6133a0fb62ba9c2c3b839e6ea5774f9c76a.tar.gz vyos-live-build-c5c3f6133a0fb62ba9c2c3b839e6ea5774f9c76a.zip |
Adding debian version 3.0~a1-1.
Diffstat (limited to 'functions/l10n.sh')
-rwxr-xr-x | functions/l10n.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/functions/l10n.sh b/functions/l10n.sh new file mode 100755 index 000000000..d32106b69 --- /dev/null +++ b/functions/l10n.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +## live-build(7) - System Build Scripts +## Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org> +## +## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING. +## This is free software, and you are welcome to redistribute it +## under certain conditions; see COPYING for details. + + +if [ -x "$(which gettext.sh 2>/dev/null)" ] && Find_files /usr/share/locale/*/LC_MESSAGES/${PACKAGE}.mo +then + _L10N="true" + + # gettext domain (.mo file name) + TEXTDOMAIN="${PACKAGE}" + export TEXTDOMAIN + + # locale dir for gettext codes + TEXTDOMAINDIR="/usr/share/locale" + export TEXTDOMAINDIR + + # load gettext functions + . gettext.sh +else + _L10N="false" +fi |