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

Commit 231ff70

Browse files
committed
Fix some translatable strings in pg_basebackup and pg_combinebackup
Two translatable strings introduced in dc21234 were split into two parts, making their translation harder than necessary. Author: Kyotaro Horiguchi Discussion: https://postgr.es/m/20231225.134747.2287499067164862136.horikyota.ntt@gmail.com
1 parent 0eac3c7 commit 231ff70

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/bin/pg_basebackup/pg_basebackup.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -396,8 +396,8 @@ usage(void)
396396
printf(_("\nOptions controlling the output:\n"));
397397
printf(_(" -D, --pgdata=DIRECTORY receive base backup into directory\n"));
398398
printf(_(" -F, --format=p|t output format (plain (default), tar)\n"));
399-
printf(_(" -i, --incremental=OLDMANIFEST\n"));
400-
printf(_(" take incremental backup\n"));
399+
printf(_(" -i, --incremental=OLDMANIFEST\n"
400+
" take incremental backup\n"));
401401
printf(_(" -r, --max-rate=RATE maximum transfer rate to transfer data directory\n"
402402
" (in kB/s, or use suffix \"k\" or \"M\")\n"));
403403
printf(_(" -R, --write-recovery-conf\n"

src/bin/pg_combinebackup/pg_combinebackup.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -669,8 +669,8 @@ help(const char *progname)
669669
printf(_(" -n, --dry-run don't actually do anything\n"));
670670
printf(_(" -N, --no-sync do not wait for changes to be written safely to disk\n"));
671671
printf(_(" -o, --output output directory\n"));
672-
printf(_(" -T, --tablespace-mapping=OLDDIR=NEWDIR\n"));
673-
printf(_(" relocate tablespace in OLDDIR to NEWDIR\n"));
672+
printf(_(" -T, --tablespace-mapping=OLDDIR=NEWDIR\n"
673+
" relocate tablespace in OLDDIR to NEWDIR\n"));
674674
printf(_(" --manifest-checksums=SHA{224,256,384,512}|CRC32C|NONE\n"
675675
" use algorithm for manifest checksums\n"));
676676
printf(_(" --no-manifest suppress generation of backup manifest\n"));

0 commit comments

Comments
 (0)