1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Make some strings translatable again that were accidentally removed in

earlier patch to fix "printf-arguments".
This commit is contained in:
Magnus Hagander
2009-01-21 09:28:26 +00:00
parent 477c5d3b0d
commit fa40ca42a6
2 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.494 2009/01/16 13:27:24 heikki Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.495 2009/01/21 09:28:26 mha Exp $
*
*--------------------------------------------------------------------
*/
@ -4801,7 +4801,7 @@ set_config_option(const char *name, const char *value,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("invalid value for parameter \"%s\": \"%s\"",
name, value),
hintmsg ? errhint("%s", hintmsg) : 0));
hintmsg ? errhint("%s", _(hintmsg)) : 0));
return false;
}
if (newval < conf->min || newval > conf->max)
@ -5069,7 +5069,7 @@ set_config_option(const char *name, const char *value,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("invalid value for parameter \"%s\": \"%s\"",
name, value),
hintmsg ? errhint("%s", hintmsg) : 0));
hintmsg ? errhint("%s", _(hintmsg)) : 0));
if (hintmsg)
pfree(hintmsg);