From: Benno Schulenberg Date: Fri, 22 Aug 2008 21:46:54 +0000 (+0200) Subject: remove.c: move comment to right before string, so gettext will pick it up X-Git-Tag: v7.0~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e34eb517288a8bf508e050cd537cf5f71be81bab;p=thirdparty%2Fcoreutils.git remove.c: move comment to right before string, so gettext will pick it up --- diff --git a/src/remove.c b/src/remove.c index 58b24a3d20..7c63dfe80e 100644 --- a/src/remove.c +++ b/src/remove.c @@ -918,12 +918,12 @@ prompt (int fd_cwd, Dirstack_state const *ds, char const *filename, return RM_ERROR; } - /* TRANSLATORS: You may find it more convenient to translate - the equivalent of _("%s: remove %s (write-protected) %s? "). - It should avoid grammatical problems with the output - of file_type. */ fprintf (stderr, (write_protected + /* TRANSLATORS: You may find it more convenient to + translate "%s: remove %s (write-protected) %s? " + instead. It should avoid grammatical problems + with the output of file_type. */ ? _("%s: remove write-protected %s %s? ") : _("%s: remove %s %s? ")), program_name, file_type (sbuf), quoted_name);