Skip to content

Commit

Permalink
zramctl: improve grammar in usage and don't gettextize list of algori…
Browse files Browse the repository at this point in the history
…thms

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>
  • Loading branch information
Benno Schulenberg authored and karelzak committed Feb 10, 2025
1 parent aed0aad commit ca82120
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sys-utils/zramctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ca82120

Please sign in to comment.