Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d0c25 commit 6e9d43eCopy full SHA for 6e9d43e
src/bin/scripts/pg_isready.c
@@ -196,19 +196,19 @@ main(int argc, char **argv)
196
switch (rv)
197
{
198
case PQPING_OK:
199
- printf("accepting connections\n");
+ printf(_("accepting connections\n"));
200
break;
201
case PQPING_REJECT:
202
- printf("rejecting connections\n");
+ printf(_("rejecting connections\n"));
203
204
case PQPING_NO_RESPONSE:
205
- printf("no response\n");
+ printf(_("no response\n"));
206
207
case PQPING_NO_ATTEMPT:
208
- printf("no attempt\n");
+ printf(_("no attempt\n"));
209
210
default:
211
- printf("unknown\n");
+ printf(_("unknown\n"));
212
}
213
214
0 commit comments