Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4e92f78

Browse files
committed
Message style fixes to pg_recvlogical
Lowercase help statements. Use an existing message to reduce the number of strings to be translated. Euler Taveira
1 parent c91a9b5 commit 4e92f78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/pg_basebackup/pg_recvlogical.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ usage(void)
8383
printf(_(" -F --fsync-interval=SECS\n"
8484
" frequency of syncs to the output file (default: %d)\n"), (fsync_interval / 1000));
8585
printf(_(" -o, --option=NAME[=VALUE]\n"
86-
" Specify option NAME with optional value VALUE, to be passed\n"
86+
" specify option NAME with optional value VALUE, to be passed\n"
8787
" to the output plugin\n"));
8888
printf(_(" -P, --plugin=PLUGIN use output plugin PLUGIN (default: %s)\n"), plugin);
8989
printf(_(" -s, --status-interval=SECS\n"
9090
" time between status packets sent to server (default: %d)\n"), (standby_message_timeout / 1000));
9191
printf(_(" -S, --slot=SLOT use existing replication slot SLOT instead of starting a new one\n"));
92-
printf(_(" -I, --startpos=PTR Where in an existing slot should the streaming start\n"));
92+
printf(_(" -I, --startpos=PTR where in an existing slot should the streaming start\n"));
9393
printf(_("\nAction to be performed:\n"));
9494
printf(_(" --create create a new replication slot (for the slotname see --slot)\n"));
9595
printf(_(" --start start streaming in a replication slot (for the slotname see --slot)\n"));
@@ -935,7 +935,7 @@ main(int argc, char **argv)
935935
if (sscanf(PQgetvalue(res, 0, 1), "%X/%X", &hi, &lo) != 2)
936936
{
937937
fprintf(stderr,
938-
_("%s: could not parse log location \"%s\"\n"),
938+
_("%s: could not parse transaction log location \"%s\"\n"),
939939
progname, PQgetvalue(res, 0, 1));
940940
disconnect_and_exit(1);
941941
}

0 commit comments

Comments
 (0)