(sieve_argp_option): Use N_()
Showing
1 changed file
with
3 additions
and
3 deletions
1 | /* GNU Mailutils -- a suite of utilities for electronic mail | 1 | /* GNU Mailutils -- a suite of utilities for electronic mail |
2 | Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc. | 2 | Copyright (C) 1999, 2000, 2001, 2002, 2005 Free Software Foundation, Inc. |
3 | 3 | ||
4 | This library is free software; you can redistribute it and/or | 4 | This library is free software; you can redistribute it and/or |
5 | modify it under the terms of the GNU Lesser General Public | 5 | modify it under the terms of the GNU Lesser General Public |
... | @@ -31,9 +31,9 @@ static error_t sieve_argp_parser __P((int key, char *arg, | ... | @@ -31,9 +31,9 @@ static error_t sieve_argp_parser __P((int key, char *arg, |
31 | /* Options used by programs that use extended authentication mechanisms. */ | 31 | /* Options used by programs that use extended authentication mechanisms. */ |
32 | static struct argp_option sieve_argp_option[] = { | 32 | static struct argp_option sieve_argp_option[] = { |
33 | { "includedir", 'I', N_("DIR"), 0, | 33 | { "includedir", 'I', N_("DIR"), 0, |
34 | _("Append directory DIR to the list of directories searched for include files"), 0 }, | 34 | N_("Append directory DIR to the list of directories searched for include files"), 0 }, |
35 | { "libdir", 'L', N_("DIR"), 0, | 35 | { "libdir", 'L', N_("DIR"), 0, |
36 | _("Append directory DIR to the list of directories searched for library files"), 0 }, | 36 | N_("Append directory DIR to the list of directories searched for library files"), 0 }, |
37 | { NULL, 0, NULL, 0, NULL, 0 } | 37 | { NULL, 0, NULL, 0, NULL, 0 } |
38 | }; | 38 | }; |
39 | 39 | ... | ... |
-
Please register or sign in to post a comment