Update options to single strings

To assist the translators, each option is a separate string.
This means if we add/change/delete an option the remaining ones
will just keep working and only the impacted option needs some
translation work on it.
This commit is contained in:
Craig Small
2013-10-11 10:07:10 +11:00
parent 099bf9a26a
commit 6437aa08d4
5 changed files with 63 additions and 59 deletions

View File

@@ -88,8 +88,8 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out)
fprintf(out,
_(" %s [options] [tty]\n"), program_invocation_short_name);
fputs(USAGE_OPTIONS, out);
fputs(_(" -d, --delay <secs> update delay in seconds\n"
" -s, --scale <num> vertical scale\n"), out);
fputs(_(" -d, --delay <secs> update delay in seconds\n"), out);
fputs(_(" -s, --scale <num> vertical scale\n"), out);
fputs(USAGE_SEPARATOR, out);
fputs(USAGE_HELP, out);
fputs(USAGE_VERSION, out);