]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
zramctl: improve grammar in usage and don't gettextize list of algorithms
authorBenno Schulenberg <bensberg@telfort.nl>
Sun, 9 Feb 2025 08:23:30 +0000 (09:23 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 10 Feb 2025 11:36:57 +0000 (12:36 +0100)
There is no need to translate this list as they are all literal values
-- the word "and" is not needed: a comma will do.

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

index bdc3679cf89e077d10dcb486beac2a90acf0e702..dfe752bc4eb5b44da404e9b1c8be841741517e97 100644 (file)
@@ -599,8 +599,8 @@ static void __attribute__((__noreturn__)) usage(void)
        fputs(USAGE_ARGUMENTS, out);
        fprintf(out, USAGE_ARG_SIZE(_("<size>")));
 
-       fputs(_(" <alg> specify algorithm, supported are:\n"), out);
-       fputs(_("   lzo, lz4, lz4hc, deflate, 842 and zstd\n"), out);
+       fputs(_(" <alg> is the name of an algorithm; supported are:\n"), out);
+       fputs(  "   lzo, lz4, lz4hc, deflate, 842, zstd\n", out);
        fputs(_("   (List may be inaccurate, consult man page.)\n"), out);
 
        fputs(USAGE_COLUMNS, out);