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 c168ba3 commit e656f5dCopy full SHA for e656f5d
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