From 9be35287b82e146fdabebc4d45233a99c4f59a4a Mon Sep 17 00:00:00 2001 From: Tiago Bortoletto Vaz Date: Sun, 10 Aug 2008 17:39:06 +0200 Subject: Adding the basic infrastructure to provide l10n support for live-helper. --- functions/l10n.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 functions/l10n.sh (limited to 'functions') diff --git a/functions/l10n.sh b/functions/l10n.sh new file mode 100755 index 000000000..0693b42eb --- /dev/null +++ b/functions/l10n.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +# l10n.sh - load the needed localization things for all lh messages +# Copyright (C) 2006-2008 Daniel Baumann +# +# live-helper 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. + +set -e + +# gettext domain (.mo file name) +export TEXTDOMAIN=live-helper +# locale dir for gettext codes +export TEXTDOMAINDIR=/usr/share/locale +# load gettext functions +. gettext.sh -- cgit v1.2.3