diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-12-26 18:54:36 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-12-26 18:54:36 +0900 |
commit | 231ff70f98e389dd510db86d3971b87e92c65d39 (patch) | |
tree | 2e36154420bb8fb5c7bb4a88842a5306dbd10528 /src/bin/pg_basebackup/pg_basebackup.c | |
parent | 0eac3c798c2d223d6557a5440d7534317dbd4fa0 (diff) | |
download | postgresql-231ff70f98e389dd510db86d3971b87e92c65d39.tar.gz postgresql-231ff70f98e389dd510db86d3971b87e92c65d39.zip |
Fix some translatable strings in pg_basebackup and pg_combinebackup
Two translatable strings introduced in dc212340058b 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
Diffstat (limited to 'src/bin/pg_basebackup/pg_basebackup.c')
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 5795b91261f..28d2ee435b5 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -396,8 +396,8 @@ usage(void) printf(_("\nOptions controlling the output:\n")); printf(_(" -D, --pgdata=DIRECTORY receive base backup into directory\n")); printf(_(" -F, --format=p|t output format (plain (default), tar)\n")); - printf(_(" -i, --incremental=OLDMANIFEST\n")); - printf(_(" take incremental backup\n")); + printf(_(" -i, --incremental=OLDMANIFEST\n" + " take incremental backup\n")); printf(_(" -r, --max-rate=RATE maximum transfer rate to transfer data directory\n" " (in kB/s, or use suffix \"k\" or \"M\")\n")); printf(_(" -R, --write-recovery-conf\n" |