diff options
author | Bill Nottingham <notting@redhat.com> | 2006-08-01 19:56:57 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2006-08-01 19:56:57 +0000 |
commit | e107d91b7aa3076b1bbe1fa91e570d1b52e41cdf (patch) | |
tree | 1bf132564ea53c858957642db60724c70e296d4a | |
parent | 0b3a2227be2251521a59a9da8eee0d00ce45e6d1 (diff) | |
download | initscripts-e107d91b7aa3076b1bbe1fa91e570d1b52e41cdf.tar initscripts-e107d91b7aa3076b1bbe1fa91e570d1b52e41cdf.tar.gz initscripts-e107d91b7aa3076b1bbe1fa91e570d1b52e41cdf.tar.bz2 initscripts-e107d91b7aa3076b1bbe1fa91e570d1b52e41cdf.tar.xz initscripts-e107d91b7aa3076b1bbe1fa91e570d1b52e41cdf.zip |
those aren't really translatable. don't clutter the po files
-rwxr-xr-x | service | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -10,7 +10,7 @@ SERVICEDIR="/etc/init.d" OPTIONS= if [ $# -eq 0 ]; then - echo $"${USAGE}" >&2 + echo "${USAGE}" >&2 exit 1 fi @@ -18,11 +18,11 @@ cd / while [ $# -gt 0 ]; do case "${1}" in --help | -h | --h* ) - echo $"${USAGE}" >&2 + echo "${USAGE}" >&2 exit 0 ;; --version | -V ) - echo $"${VERSION}" >&2 + echo "${VERSION}" >&2 exit 0 ;; *) |