" in the respective category (default taken from\n"
" environment)\n"));
printf(_(" --no-locale equivalent to --locale=C\n"));
- printf(_(" -T, --text-search-config=CFG\n"));
- printf(_(" set default text search configuration\n"));
+ printf(_(" -T, --text-search-config=CFG\n"
+ " default text search configuration\n"));
printf(_(" -X, --xlogdir=XLOGDIR location for the transaction log directory\n"));
printf(_(" -A, --auth=METHOD default authentication method for local connections\n"));
printf(_(" -U, --username=NAME database superuser name\n"));
}
else if (strcmp(checkmatch, default_text_search_config) != 0)
{
- printf(_("%s: warning: specified text search configuration \"%s\" may not match locale \"%s\"\n"),
+ printf(_("%s: warning: specified text search configuration \"%s\" might not match locale \"%s\"\n"),
progname, default_text_search_config, lc_ctype);
}
}
getrlimit(RLIMIT_CORE,&lim);
if (lim.rlim_max == 0)
{
- write_stderr(_("%s: cannot set core size, disallowed by hard limit.\n"),
+ write_stderr(_("%s: cannot set core size, disallowed by hard limit\n"),
progname);
return;
}
if (PQcancel(cancelConn, errbuf, sizeof(errbuf)))
fprintf(stderr, _("Cancel request sent\n"));
else
- fprintf(stderr, _("Could not send cancel request: %s\n"), errbuf);
+ fprintf(stderr, _("Could not send cancel request: %s"), errbuf);
}
errno = save_errno; /* just in case the write changed it */
if (conn->gctx)
{
printfPQExpBuffer(&conn->errorMessage,
- libpq_gettext("duplicate GSS auth request\n"));
+ libpq_gettext("duplicate GSS authentication request\n"));
return STATUS_ERROR;
}
*/
if (conn->pghost == NULL)
{
- printfPQExpBuffer(&conn->errorMessage, libpq_gettext("hostname must be specified\n"));
+ printfPQExpBuffer(&conn->errorMessage, libpq_gettext("host name must be specified\n"));
return STATUS_ERROR;
}
conn->sspitarget = malloc(strlen(conn->krbsrvname)+strlen(conn->pghost)+2);