From: Benno Schulenberg Date: Sun, 9 Feb 2025 08:23:30 +0000 (+0100) Subject: zramctl: improve grammar in usage and don't gettextize list of algorithms X-Git-Tag: v2.42-start~51^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ca82120f42169d179d66662521055386b98a0358;p=thirdparty%2Futil-linux.git zramctl: improve grammar in usage and don't gettextize list of algorithms 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 --- diff --git a/sys-utils/zramctl.c b/sys-utils/zramctl.c index bdc3679cf..dfe752bc4 100644 --- a/sys-utils/zramctl.c +++ b/sys-utils/zramctl.c @@ -599,8 +599,8 @@ static void __attribute__((__noreturn__)) usage(void) fputs(USAGE_ARGUMENTS, out); fprintf(out, USAGE_ARG_SIZE(_(""))); - fputs(_(" specify algorithm, supported are:\n"), out); - fputs(_(" lzo, lz4, lz4hc, deflate, 842 and zstd\n"), out); + fputs(_(" 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);