Add missing translation marker
authorPeter Eisentraut <[email protected]>
Thu, 8 Dec 2005 21:17:46 +0000 (21:17 +0000)
committerPeter Eisentraut <[email protected]>
Thu, 8 Dec 2005 21:17:46 +0000 (21:17 +0000)
src/bin/psql/command.c

index a6347717215e3801a93ee9c3027b815972297073..db5b1d36c66fbe962241128166785eb7ec3f1f21 100644 (file)
@@ -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? */