Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
f400a22e
...
f400a22e3d70b86f1f2d281ee087ebbcc86cbbb0
authored
2005-02-23 16:02:54 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(sieve_argp_option): Use N_()
1 parent
37a31c3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
libsieve/argp.c
libsieve/argp.c
View file @
f400a22
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
Copyright (C) 1999, 2000, 2001, 2002
, 2005
Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
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,
/* Options used by programs that use extended authentication mechanisms. */
static
struct
argp_option
sieve_argp_option
[]
=
{
{
"includedir"
,
'I'
,
N_
(
"DIR"
),
0
,
_
(
"Append directory DIR to the list of directories searched for include files"
),
0
},
N
_
(
"Append directory DIR to the list of directories searched for include files"
),
0
},
{
"libdir"
,
'L'
,
N_
(
"DIR"
),
0
,
_
(
"Append directory DIR to the list of directories searched for library files"
),
0
},
N
_
(
"Append directory DIR to the list of directories searched for library files"
),
0
},
{
NULL
,
0
,
NULL
,
0
,
NULL
,
0
}
};
...
...
Please
register
or
sign in
to post a comment