From: Dennis Bjorklund Date: Sun, 11 Jan 2004 19:25:44 +0000 (+0000) Subject: Mark string for translation. X-Git-Tag: REL7_4_2~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f94ae60a1fc3874145df3fa9d672049c19a4ddcf;p=thirdparty%2Fpostgresql.git Mark string for translation. --- diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 7894ddecf44..39456ec6096 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.87 2003/10/26 02:53:45 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.87.2.1 2004/01/11 19:25:44 dennis Exp $ */ #include "postgres_fe.h" #include "describe.h" @@ -892,7 +892,7 @@ describeOneTableDetails(const char *schemaname, schemaname, indtable); if (strlen(indpred)) - appendPQExpBuffer(&tmpbuf, ", predicate %s", indpred); + appendPQExpBuffer(&tmpbuf, _(", predicate %s"), indpred); footers = xmalloczero(2 * sizeof(*footers)); footers[0] = xstrdup(tmpbuf.data);