1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Adjust translator comment format to xgettext expectations

This commit is contained in:
Alvaro Herrera
2011-09-05 18:52:49 -03:00
parent b64f18c583
commit 56a9ed92b6
3 changed files with 16 additions and 20 deletions

View File

@ -3280,11 +3280,10 @@ ExecuteRecoveryCommand(char *command, char *commandName, bool failOnSignal)
*/
signaled = WIFSIGNALED(rc) || WEXITSTATUS(rc) > 125;
/*
* translator: First %s represents a recovery.conf parameter name like
* "recovery_end_command", and the 2nd is the value of that parameter.
*/
ereport((signaled && failOnSignal) ? FATAL : WARNING,
/*------
translator: First %s represents a recovery.conf parameter name like
"recovery_end_command", and the 2nd is the value of that parameter. */
(errmsg("%s \"%s\": return code %d", commandName,
command, rc)));
}