aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-03-13 09:10:49 -0400
committerPeter Eisentraut <peter_e@gmx.net>2017-03-13 09:10:49 -0400
commitd69fae203c8223c45ae1201acce46e8beb0eb6ee (patch)
tree5ba4d46139218ae15833bba8db27ddc76c9f322a
parent1bfebffe81d02e6124fc604ae4293c6487ef7e83 (diff)
downloadpostgresql-d69fae203c8223c45ae1201acce46e8beb0eb6ee.tar.gz
postgresql-d69fae203c8223c45ae1201acce46e8beb0eb6ee.zip
initdb: Re-add translatable string that got lost
-rw-r--r--src/bin/initdb/initdb.c3
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"),