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

Commit 1e8ada0

Browse files
committed
Fix message translatability
Two parts of the same message shouldn't be split across two function calls.
1 parent 0fd2a79 commit 1e8ada0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/help.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ slashUsage(unsigned short int pager)
175175
fprintf(output, _(" \\copyright show PostgreSQL usage and distribution terms\n"));
176176
fprintf(output, _(" \\crosstabview [COLUMNS] execute query and display results in crosstab\n"));
177177
fprintf(output, _(" \\errverbose show most recent error message at maximum verbosity\n"));
178-
fprintf(output, _(" \\g [(OPTIONS)] [FILE] execute query (and send results to file or |pipe);\n"));
179-
fprintf(output, _(" \\g with no arguments is equivalent to a semicolon\n"));
178+
fprintf(output, _(" \\g [(OPTIONS)] [FILE] execute query (and send results to file or |pipe);\n"
179+
" \\g with no arguments is equivalent to a semicolon\n"));
180180
fprintf(output, _(" \\gdesc describe result of query, without executing it\n"));
181181
fprintf(output, _(" \\gexec execute query, then execute each value in its result\n"));
182182
fprintf(output, _(" \\gset [PREFIX] execute query and store results in psql variables\n"));

0 commit comments

Comments
 (0)