false: mark "false" description for translation
authorJim Meyering <meyering@redhat.com>
Mon, 4 Aug 2008 08:12:47 +0000 (10:12 +0200)
committerJim Meyering <meyering@redhat.com>
Mon, 4 Aug 2008 08:28:16 +0000 (10:28 +0200)
* src/true.c (usage): Mark both strings with N_, so that
the one for "false" is also extracted for translation.
For consistency, mark both, although only the latter one needed it.
Inspired by a patch from Benno Schulenberg.

src/true.c

index 75e53bc..12100bd 100644 (file)
@@ -42,8 +42,8 @@ Usage: %s [ignored command line arguments]\n\
          program_name, program_name);
   printf ("%s\n\n",
          _(EXIT_STATUS == EXIT_SUCCESS
-           ? "Exit with a status code indicating success."
-           : "Exit with a status code indicating failure."));
+           ? N_("Exit with a status code indicating success.")
+           : N_("Exit with a status code indicating failure.")));
   fputs (HELP_OPTION_DESCRIPTION, stdout);
   fputs (VERSION_OPTION_DESCRIPTION, stdout);
   printf (USAGE_BUILTIN_WARNING, PROGRAM_NAME);