Fix translatable strings.
Showing
7 changed files
with
14 additions
and
9 deletions
1 | 2008-03-07 Sergey Poznyakoff <gray@gnu.org.ua> | 1 | 2008-03-07 Sergey Poznyakoff <gray@gnu.org.ua> |
2 | 2 | ||
3 | * comsat/comsat.c, imap4d/imap4d.c, imap4d/preauth.c, | ||
4 | libargp/sieve.c, libcfg/ldap.c, libcfg/sieve.c: Fix translatable | ||
5 | strings. | ||
6 | |||
7 | 2008-03-07 Sergey Poznyakoff <gray@gnu.org.ua> | ||
8 | |||
3 | * configure.ac: Require gettext 0.17 | 9 | * configure.ac: Require gettext 0.17 |
4 | * auth/ldap.c, auth/radius.c, libargp/tls.c, mailbox/cfg_lexer.c, | 10 | * auth/ldap.c, auth/radius.c, libargp/tls.c, mailbox/cfg_lexer.c, |
5 | pop3d/logindelay.c: Fix diagnostic messages. | 11 | pop3d/logindelay.c: Fix diagnostic messages. | ... | ... |
... | @@ -126,8 +126,7 @@ struct mu_cfg_param comsat_cfg_param[] = { | ... | @@ -126,8 +126,7 @@ struct mu_cfg_param comsat_cfg_param[] = { |
126 | { "max-lines", mu_cfg_int, &maxlines, 0, NULL, | 126 | { "max-lines", mu_cfg_int, &maxlines, 0, NULL, |
127 | N_("Maximum number of message body lines to be output.") }, | 127 | N_("Maximum number of message body lines to be output.") }, |
128 | { "max-requests", mu_cfg_uint, &maxrequests, 0, NULL, | 128 | { "max-requests", mu_cfg_uint, &maxrequests, 0, NULL, |
129 | N_("Maximum number of incoming requests per `request-control-interval' " | 129 | N_("Maximum number of incoming requests per request control interval.") }, |
130 | "seconds.") }, | ||
131 | { "request-control-interval", mu_cfg_time, &request_control_interval, | 130 | { "request-control-interval", mu_cfg_time, &request_control_interval, |
132 | 0, NULL, | 131 | 0, NULL, |
133 | N_("Set control interval.") }, | 132 | N_("Set control interval.") }, | ... | ... |
... | @@ -308,7 +308,7 @@ static struct mu_cfg_param imap4d_cfg_param[] = { | ... | @@ -308,7 +308,7 @@ static struct mu_cfg_param imap4d_cfg_param[] = { |
308 | " prog:///<full-program-name: string>\n" | 308 | " prog:///<full-program-name: string>\n" |
309 | " ident[://:<port: string-or-number>]\n" | 309 | " ident[://:<port: string-or-number>]\n" |
310 | " stdio"), | 310 | " stdio"), |
311 | N_("MODE") }, | 311 | N_("mode") }, |
312 | { "preauth-only", mu_cfg_bool, &preauth_only, 0, NULL, | 312 | { "preauth-only", mu_cfg_bool, &preauth_only, 0, NULL, |
313 | N_("Use only preauth mode. If unable to setup it, disconnect " | 313 | N_("Use only preauth mode. If unable to setup it, disconnect " |
314 | "immediately.") }, | 314 | "immediately.") }, | ... | ... |
... | @@ -341,7 +341,7 @@ do_preauth_ident (struct sockaddr *clt_sa, struct sockaddr *srv_sa) | ... | @@ -341,7 +341,7 @@ do_preauth_ident (struct sockaddr *clt_sa, struct sockaddr *srv_sa) |
341 | if (srv_sa->sa_family != AF_INET) | 341 | if (srv_sa->sa_family != AF_INET) |
342 | { | 342 | { |
343 | mu_diag_output (MU_DIAG_ERROR, | 343 | mu_diag_output (MU_DIAG_ERROR, |
344 | _("Invalid socket family (%d) IDENT preauth"), | 344 | _("Invalid address family (%d) for IDENT preauth"), |
345 | srv_sa->sa_family); | 345 | srv_sa->sa_family); |
346 | return NULL; | 346 | return NULL; |
347 | } | 347 | } |
... | @@ -394,7 +394,7 @@ do_preauth_ident (struct sockaddr *clt_sa, struct sockaddr *srv_sa) | ... | @@ -394,7 +394,7 @@ do_preauth_ident (struct sockaddr *clt_sa, struct sockaddr *srv_sa) |
394 | if (!ident_keyfile) | 394 | if (!ident_keyfile) |
395 | { | 395 | { |
396 | mu_diag_output (MU_DIAG_ERROR, | 396 | mu_diag_output (MU_DIAG_ERROR, |
397 | _("Keydile not specified in config; " | 397 | _("Keyfile not specified in config; " |
398 | "use `ident-keyfile FILE'")); | 398 | "use `ident-keyfile FILE'")); |
399 | name = NULL; | 399 | name = NULL; |
400 | } | 400 | } | ... | ... |
... | @@ -36,7 +36,7 @@ static struct argp_option sieve_argp_option[] = { | ... | @@ -36,7 +36,7 @@ static struct argp_option sieve_argp_option[] = { |
36 | { "clear-include-path", OPT_CLEAR_INCLUDE_PATH, NULL, 0, | 36 | { "clear-include-path", OPT_CLEAR_INCLUDE_PATH, NULL, 0, |
37 | N_("Clear Sieve include path"), 0 }, | 37 | N_("Clear Sieve include path"), 0 }, |
38 | { "clear-library-path", OPT_CLEAR_LIBRARY_PATH, NULL, 0, | 38 | { "clear-library-path", OPT_CLEAR_LIBRARY_PATH, NULL, 0, |
39 | N_("Clear Sieve lobrary path"), 0 }, | 39 | N_("Clear Sieve library path"), 0 }, |
40 | { "clearpath", 0, NULL, OPTION_ALIAS, NULL }, | 40 | { "clearpath", 0, NULL, OPTION_ALIAS, NULL }, |
41 | { NULL, 0, NULL, 0, NULL, 0 } | 41 | { NULL, 0, NULL, 0, NULL, 0 } |
42 | }; | 42 | }; | ... | ... |
... | @@ -61,7 +61,7 @@ static struct mu_cfg_param mu_ldap_param[] = { | ... | @@ -61,7 +61,7 @@ static struct mu_cfg_param mu_ldap_param[] = { |
61 | " <name: string>=<attr: string>\n" | 61 | " <name: string>=<attr: string>\n" |
62 | "where <name> is one of the following: name, passwd, uid, gid, " | 62 | "where <name> is one of the following: name, passwd, uid, gid, " |
63 | "gecos, dir, shell, mailbox, quota, and <attr> is the name of " | 63 | "gecos, dir, shell, mailbox, quota, and <attr> is the name of " |
64 | "the correspondind LDAP attribute."), | 64 | "the corresponding LDAP attribute."), |
65 | N_("map") }, | 65 | N_("map") }, |
66 | { "getpwnam", mu_cfg_string, &ldap_settings.getpwnam_filter, 0, NULL, | 66 | { "getpwnam", mu_cfg_string, &ldap_settings.getpwnam_filter, 0, NULL, |
67 | N_("LDAP filter to use for getpwnam requests."), | 67 | N_("LDAP filter to use for getpwnam requests."), | ... | ... |
... | @@ -98,11 +98,11 @@ static struct mu_cfg_param mu_sieve_param[] = { | ... | @@ -98,11 +98,11 @@ static struct mu_cfg_param mu_sieve_param[] = { |
98 | N_("Clear include search path.") }, | 98 | N_("Clear include search path.") }, |
99 | { "library-path", mu_cfg_callback, NULL, 0, cb_library_path, | 99 | { "library-path", mu_cfg_callback, NULL, 0, cb_library_path, |
100 | N_("Add directories to the library search path. Argument is a " | 100 | N_("Add directories to the library search path. Argument is a " |
101 | "comma-separated list of directories."), | 101 | "colon-separated list of directories."), |
102 | N_("list") }, | 102 | N_("list") }, |
103 | { "include-path", mu_cfg_callback, NULL, 0, cb_include_path, | 103 | { "include-path", mu_cfg_callback, NULL, 0, cb_include_path, |
104 | N_("Add directories to the include search path. Argument is a " | 104 | N_("Add directories to the include search path. Argument is a " |
105 | "comma-separated list of directories."), | 105 | "colon-separated list of directories."), |
106 | N_("list") }, | 106 | N_("list") }, |
107 | { NULL } | 107 | { NULL } |
108 | }; | 108 | }; | ... | ... |
-
Please register or sign in to post a comment