Fix message translatability
authorPeter Eisentraut <[email protected]>
Sun, 7 Jun 2020 13:11:51 +0000 (15:11 +0200)
committerPeter Eisentraut <[email protected]>
Sun, 7 Jun 2020 13:11:51 +0000 (15:11 +0200)
Two parts of the same message shouldn't be split across two function
calls.

src/bin/psql/help.c

index 00992f96a0ad0cb8bbabed2e88e7a56af0f60c58..67bc67a78a22a0c8b478e8b81b3830096322a44a 100644 (file)
@@ -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"));