Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2944270

Browse files
committed
psql: Add missing translation markers
1 parent345bf97 commit2944270

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/bin/psql/describe.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2181,15 +2181,15 @@ describeOneTableDetails(const char *schemaname,
21812181
}
21822182

21832183
/* Print server name */
2184-
printfPQExpBuffer(&buf,"Server: %s",
2184+
printfPQExpBuffer(&buf,_("Server: %s"),
21852185
PQgetvalue(result,0,0));
21862186
printTableAddFooter(&cont,buf.data);
21872187

21882188
/* Print per-table FDW options, if any */
21892189
ftoptions=PQgetvalue(result,0,1);
21902190
if (ftoptions&&ftoptions[0]!='\0')
21912191
{
2192-
printfPQExpBuffer(&buf,"FDW Options: (%s)",ftoptions);
2192+
printfPQExpBuffer(&buf,_("FDW Options: (%s)"),ftoptions);
21932193
printTableAddFooter(&cont,buf.data);
21942194
}
21952195
PQclear(result);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp