From a4a25465cd2844d72bf518188b813c009450f505 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 23 Jan 2001 19:59:11 +0000 Subject: change i18n stuff around; don't call gettext explicitly, just do echo $"some string" --- src/testdinit | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/testdinit') diff --git a/src/testdinit b/src/testdinit index 67ea8c37..a6500991 100755 --- a/src/testdinit +++ b/src/testdinit @@ -11,14 +11,14 @@ case "$1" in start) # Start daemons. - echo -n "Starting testd: " + echo -n $"Starting testd: " testd & echo touch /var/lock/subsys/testd ;; stop) # Stop daemons. - echo -n "Shutting down testd: " + echo -n $"Shutting down testd: " killproc testd echo rm -f /var/lock/subsys/testd @@ -29,15 +29,15 @@ case "$1" in exit $? ;; restart) - echo -n "Shutting down testd: " + echo -n $"Shutting down testd: " killproc testd echo - echo -n "Starting testd: " + echo -n $"Starting testd: " testd & echo ;; *) - echo "Usage: testd {start|stop|status|restart}" + echo $"Usage: testd {start|stop|status|restart}" exit 1 esac -- cgit v1.2.1