Commit b68f2bcb b68f2bcbb9c40539b992aaeb99125e709350662a by Sergey Poznyakoff

Add missing gettext markers

1 parent 158f9e08
...@@ -211,9 +211,9 @@ static error_t mu_auth_argp_parser __P((int key, char *arg, ...@@ -211,9 +211,9 @@ static error_t mu_auth_argp_parser __P((int key, char *arg,
211 /* Options used by programs that use extended authentication mechanisms. */ 211 /* Options used by programs that use extended authentication mechanisms. */
212 static struct argp_option mu_auth_argp_option[] = { 212 static struct argp_option mu_auth_argp_option[] = {
213 { "authentication", ARG_AUTHENTICATION, N_("MODLIST"), 0, 213 { "authentication", ARG_AUTHENTICATION, N_("MODLIST"), 0,
214 "Set list of modules to be used for authentication", 0 }, 214 N_("Set the list of modules to be used for authentication"), 0 },
215 { "authorization", ARG_AUTHORIZATION, N_("MODLIST"), 0, 215 { "authorization", ARG_AUTHORIZATION, N_("MODLIST"), 0,
216 "Set list of modules to be used for authorization", 0 }, 216 N_("Set list of modules to be used for authorization"), 0 },
217 { NULL, 0, NULL, 0, NULL, 0 } 217 { NULL, 0, NULL, 0, NULL, 0 }
218 }; 218 };
219 219
......