]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
renice: put text that belongs together into a single translatable message
authorBenno Schulenberg <bensberg@telfort.nl>
Sun, 9 Feb 2025 08:23:27 +0000 (09:23 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 10 Feb 2025 11:36:57 +0000 (12:36 +0100)
Also, use semicolons and no periods in an option description.

Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
sys-utils/renice.c

index 419cef46d80296fef35ad3ef1c6f6a43a01458e8..eac104db306f5ee77d92df85626e40591d9dbf6b 100644 (file)
@@ -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 <num>               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 <num>               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 <num>       specify the 'absolute' nice value\n"), out);
        fputs(_(" --relative <num>       specify the 'relative' nice value\n"), out);
        fputs(_(" -p, --pid              interpret arguments as process ID (default)\n"), out);