Skip to content

Commit 7533d5d

Browse files
committed
Fix translation domain in pg_basebackup
For some reason, we've been overlooking the fact that pg_receivexlog and pg_recvlogical are using wrong translation domains all along, so their output hasn't ever been translated. The right domain is pg_basebackup, not their own executable names. Noticed by Ioseph Kim, who's been working on the Korean translation. Backpatch pg_receivexlog to 9.2 and pg_recvlogical to 9.4.
1 parent 0244677 commit 7533d5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_basebackup/pg_receivexlog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ main(int argc, char **argv)
377377
int option_index;
378378

379379
progname = get_progname(argv[0]);
380-
set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_receivexlog"));
380+
set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_basebackup"));
381381

382382
if (argc > 1)
383383
{

0 commit comments

Comments
 (0)