diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-03-13 09:10:49 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-03-13 09:10:49 -0400 |
commit | d69fae203c8223c45ae1201acce46e8beb0eb6ee (patch) | |
tree | 5ba4d46139218ae15833bba8db27ddc76c9f322a | |
parent | 1bfebffe81d02e6124fc604ae4293c6487ef7e83 (diff) | |
download | postgresql-d69fae203c8223c45ae1201acce46e8beb0eb6ee.tar.gz postgresql-d69fae203c8223c45ae1201acce46e8beb0eb6ee.zip |
initdb: Re-add translatable string that got lost
-rw-r--r-- | src/bin/initdb/initdb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index da113bd2635..9b71e0042d8 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -3235,7 +3235,8 @@ main(int argc, char *argv[]) appendShellString(start_db_cmd, pgdata_native); /* add suggested -l switch and "start" command */ - appendPQExpBufferStr(start_db_cmd, " -l logfile start"); + /* translator: This is a placeholder in a shell command. */ + appendPQExpBuffer(start_db_cmd, " -l %s start", _("logfile")); printf(_("\nSuccess. You can now start the database server using:\n\n" " %s\n\n"), |