diff options
author | Bill Nottingham <notting@redhat.com> | 2001-01-23 19:59:11 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-01-23 19:59:11 +0000 |
commit | a4a25465cd2844d72bf518188b813c009450f505 (patch) | |
tree | 25ca5df7db282aa4202813aba3c0e18083927c25 /src/testdinit | |
parent | bee84f538da8b1d5885975c119bfd7fd5ae7e9a3 (diff) | |
download | initscripts-a4a25465cd2844d72bf518188b813c009450f505.tar initscripts-a4a25465cd2844d72bf518188b813c009450f505.tar.gz initscripts-a4a25465cd2844d72bf518188b813c009450f505.tar.bz2 initscripts-a4a25465cd2844d72bf518188b813c009450f505.tar.xz initscripts-a4a25465cd2844d72bf518188b813c009450f505.zip |
change i18n stuff around; don't call gettext explicitly, just do echo $"some string"
Diffstat (limited to 'src/testdinit')
-rwxr-xr-x | src/testdinit | 10 |
1 files changed, 5 insertions, 5 deletions
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 |