projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3192edb
)
Add missing translation marker
author
Peter Eisentraut
<
[email protected]
>
Thu, 8 Dec 2005 21:17:46 +0000
(21:17 +0000)
committer
Peter Eisentraut
<
[email protected]
>
Thu, 8 Dec 2005 21:17:46 +0000
(21:17 +0000)
src/bin/psql/command.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/command.c
b/src/bin/psql/command.c
index a6347717215e3801a93ee9c3027b815972297073..db5b1d36c66fbe962241128166785eb7ec3f1f21 100644
(file)
--- a/
src/bin/psql/command.c
+++ b/
src/bin/psql/command.c
@@
-935,9
+935,9
@@
do_connect(const char *new_dbname, const char *new_user)
password_prompt = strdup("Password: ");
else
{
- password_prompt = malloc(strlen(
"Password for user %s: "
) - 2 +
+ password_prompt = malloc(strlen(
_("Password for user %s: ")
) - 2 +
strlen(userparam) + 1);
- sprintf(password_prompt,
"Password for user %s: "
, userparam);
+ sprintf(password_prompt,
_("Password for user %s: ")
, userparam);
}
/* need to prompt for password? */