diff options
author | Antonio Terceiro <terceiro@softwarelivre.org> | 2009-01-14 22:48:17 -0300 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:39 +0100 |
commit | dfb048b1ba0b514baaf2dc2f9158b49ad1a86830 (patch) | |
tree | 9d24acef3ed7555cd5822123701dbd6905999744 /functions/usage.sh | |
parent | 6891cbe09843e84edfff45a600015c488a226967 (diff) | |
download | vyos-live-build-dfb048b1ba0b514baaf2dc2f9158b49ad1a86830.tar.gz vyos-live-build-dfb048b1ba0b514baaf2dc2f9158b49ad1a86830.zip |
Not considering some strings as translatable.
It does not make sense to translate those strings.
Diffstat (limited to 'functions/usage.sh')
-rwxr-xr-x | functions/usage.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/functions/usage.sh b/functions/usage.sh index d1a4e6357..9c3f53782 100755 --- a/functions/usage.sh +++ b/functions/usage.sh @@ -9,7 +9,7 @@ Usage () { - Echo "%s - %s" "${PROGRAM}" "${DESCRIPTION}" + printf "%s - %s\n" "${PROGRAM}" "${DESCRIPTION}" echo Echo "Usage:" echo @@ -20,9 +20,9 @@ Usage () echo fi - Echo " %s [-h|--help]" "${PROGRAM}" - Echo " %s [-u|--usage]" "${PROGRAM}" - Echo " %s [-v|--version]" "${PROGRAM}" + echo " %s [-h|--help]" "${PROGRAM}" + echo " %s [-u|--usage]" "${PROGRAM}" + echo " %s [-v|--version]" "${PROGRAM}" echo Echo "Try \" %s--help\" for more information." "${PROGRAM}" |