diff options
author | Jim Meyering <jim@meyering.net> | 1996-05-15 04:37:08 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-05-15 04:37:08 +0000 |
commit | a2c69051331ba2e3c8b3c4159683a3c359ee0c06 (patch) | |
tree | 9293079f70dee4490b51c697365343bd1d1cbb38 | |
parent | 3df9acbfc9ac70fbe8aa23d9b07f7a3f1a4cf35d (diff) | |
download | coreutils-a2c69051331ba2e3c8b3c4159683a3c359ee0c06.tar.xz |
(main): Restructure pluralization of error message so it's easier to translate.
-rw-r--r-- | src/mv.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -471,7 +471,9 @@ main (int argc, char **argv) if (argc < optind + 2) { - error (0, 0, _("missing file argument%s"), argc == optind ? "s" : ""); + error (0, 0, _("%s"), (argc == optind + ? _("missing file arguments") + : _("missing file argument"))); usage (1); } |