diff options
author | Peter Eisentraut | 2020-06-07 13:11:51 +0000 |
---|---|---|
committer | Peter Eisentraut | 2020-06-07 13:11:51 +0000 |
commit | 1e8ada0c8a448891971faf71f48125439ee07023 (patch) | |
tree | 107243c5dd57f96efb32d79f957c1e9353fd9e5d /src/bin/psql/help.c | |
parent | 0fd2a79a637f9f96b9830524823df0454e962f96 (diff) |
Fix message translatability
Two parts of the same message shouldn't be split across two function
calls.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 00992f96a0a..67bc67a78a2 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -175,8 +175,8 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\copyright show PostgreSQL usage and distribution terms\n")); fprintf(output, _(" \\crosstabview [COLUMNS] execute query and display results in crosstab\n")); fprintf(output, _(" \\errverbose show most recent error message at maximum verbosity\n")); - fprintf(output, _(" \\g [(OPTIONS)] [FILE] execute query (and send results to file or |pipe);\n")); - fprintf(output, _(" \\g with no arguments is equivalent to a semicolon\n")); + fprintf(output, _(" \\g [(OPTIONS)] [FILE] execute query (and send results to file or |pipe);\n" + " \\g with no arguments is equivalent to a semicolon\n")); fprintf(output, _(" \\gdesc describe result of query, without executing it\n")); fprintf(output, _(" \\gexec execute query, then execute each value in its result\n")); fprintf(output, _(" \\gset [PREFIX] execute query and store results in psql variables\n")); |