Adding generic echo function.

This commit is contained in:
Daniel Baumann 2008-08-14 20:25:29 +02:00
parent 8299a9c361
commit 5977735ed1
1 changed files with 8 additions and 0 deletions

View File

@ -9,6 +9,14 @@
set -e
Echo ()
{
STRING="${1}"
shift
printf "$(eval_gettext "${STRING}")" "${@}"; echo;
}
Echo_debug ()
{
STRING="${1}"