summaryrefslogtreecommitdiff
path: root/src/true.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-08-04 10:12:47 +0200
committerJim Meyering <meyering@redhat.com>2008-08-04 10:28:16 +0200
commit6b9f1bdd66a2e0b0f494d6f86e4cda43bf2215d2 (patch)
tree82f6bcd5e4cd4b886b4b20bd2a17fc12b78af6f8 /src/true.c
parentffc630e5989a23a9010926797619edc36f60925b (diff)
downloadcoreutils-6b9f1bdd66a2e0b0f494d6f86e4cda43bf2215d2.tar.xz
false: mark "false" description for translation
* 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.
Diffstat (limited to 'src/true.c')
-rw-r--r--src/true.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/true.c b/src/true.c
index 75e53bcf5..12100bdbf 100644
--- a/src/true.c
+++ b/src/true.c
@@ -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);