summaryrefslogtreecommitdiff
path: root/functions/usage.sh
diff options
context:
space:
mode:
Diffstat (limited to 'functions/usage.sh')
-rwxr-xr-xfunctions/usage.sh15
1 files changed, 7 insertions, 8 deletions
diff --git a/functions/usage.sh b/functions/usage.sh
index 95586ad..f228dd7 100755
--- a/functions/usage.sh
+++ b/functions/usage.sh
@@ -9,25 +9,24 @@
set -e
-#FIXME: put this in l10n standard
Usage ()
{
- echo "${PROGRAM} - ${DESCRIPTION}"
+ Echo "%s - %s" "${PROGRAM}" "${DESCRIPTION}"
echo
- echo "Usage:"
+ Echo "Usage:"
echo
if [ -n "${USAGE}" ]
then
- echo " ${USAGE}"
+ Echo " %s" "${USAGE}"
echo
fi
- echo " ${PROGRAM} [-h|--help]"
- echo " ${PROGRAM} [-u|--usage]"
- echo " ${PROGRAM} [-v|--version]"
+ Echo " %s [-h|--help]" "${PROGRAM}"
+ Echo " %s [-u|--usage]" "${PROGRAM}"
+ Echo " %s [-v|--version]" "${PROGRAM}"
echo
- echo "Try \"${PROGRAM} --help\" for more information."
+ Echo "Try \" %s--help\" for more information." "${PROGRAM}"
exit 1
}