Commit aeba5889 aeba5889106fe4cebc0cd55ca2d0632833841f2f by Sergey Poznyakoff

Fix diagnostic messages

1 parent f35564d7
......@@ -37,7 +37,7 @@ mail_cd (int argc, char **argv)
if (chdir (dir))
{
mu_error (_("cannot change to '%s': %s"), dir, mu_strerror (errno));
mu_error (_("cannot change to `%s': %s"), dir, mu_strerror (errno));
return 1;
}
return 0;
......
......@@ -48,7 +48,7 @@ static struct argp_option options[] = {
{"list", ARG_LIST, NULL, 0,
N_("List the contents of the folder stack"), 1},
{"pack", ARG_PACK, N_("NUMBER"), OPTION_ARG_OPTIONAL,
N_("Remove holes in message numbering. Begin numbering from NUMBER (default: first message number"), 1},
N_("Remove holes in message numbering. Begin numbering from NUMBER (default: first message number)"), 1},
{"push", ARG_PUSH, N_("FOLDER"), OPTION_ARG_OPTIONAL,
N_("Push the folder on the folder stack. If FOLDER is specified, it is pushed. "
"Otherwise, if a folder is given in the command line (via + or --folder), "
......