From: Benno Schulenberg Date: Sun, 9 Feb 2025 08:23:27 +0000 (+0100) Subject: renice: put text that belongs together into a single translatable message X-Git-Tag: v2.42-start~51^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=074fb62726e9ee54d7290d042028174bb881a7cc;p=thirdparty%2Futil-linux.git renice: put text that belongs together into a single translatable message Also, use semicolons and no periods in an option description. Signed-off-by: Benno Schulenberg --- diff --git a/sys-utils/renice.c b/sys-utils/renice.c index 419cef46d..eac104db3 100644 --- a/sys-utils/renice.c +++ b/sys-utils/renice.c @@ -70,10 +70,10 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_("Alter the priority of running processes.\n"), out); fputs(USAGE_OPTIONS, out); - fputs(_(" -n specify the nice value\n"), out); - fputs(_(" If POSIXLY_CORRECT flag is set in environment\n"), out); - fputs(_(" then the priority is 'relative' to current\n"), out); - fputs(_(" process priority. Otherwise it is 'absolute'.\n"), out); + fputs(_(" -n specify the nice value;\n" + " if POSIXLY_CORRECT flag is set in environment,\n" + " then the priority is 'relative' to current\n" + " process priority; otherwise it is 'absolute'\n"), out); fputs(_(" --priority specify the 'absolute' nice value\n"), out); fputs(_(" --relative specify the 'relative' nice value\n"), out); fputs(_(" -p, --pid interpret arguments as process ID (default)\n"), out);