Commit f400a22e f400a22e3d70b86f1f2d281ee087ebbcc86cbbb0 by Sergey Poznyakoff

(sieve_argp_option): Use N_()

1 parent 37a31c3b
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
......