diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-06-30 17:26:12 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-06-30 17:26:12 +0000 |
commit | 2ab0f11a796a7afa11bf22f59ffe5ebcc1bbf2ab (patch) | |
tree | 55a01cc9fe88be5caa95d8b1859acfc8c9fa6131 /src/bin/psql/startup.c | |
parent | 201aa35d2f5a71ba3cd0faeb0283caf94d50d5b4 (diff) | |
download | postgresql-2ab0f11a796a7afa11bf22f59ffe5ebcc1bbf2ab.tar.gz postgresql-2ab0f11a796a7afa11bf22f59ffe5ebcc1bbf2ab.zip |
NLS for the psql \d family of commands. (E.g., the column headers will
have localized strings.) Also, modernize the system catalog queries where
appropriate, e.g., with outer joins.
Diffstat (limited to 'src/bin/psql/startup.c')
-rw-r--r-- | src/bin/psql/startup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 49e239a4fe1..bd0dddcb365 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.50 2001/06/02 18:25:18 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.51 2001/06/30 17:26:12 petere Exp $ */ #include "postgres_fe.h" @@ -174,7 +174,7 @@ main(int argc, char *argv[]) * by the name on the command line. */ if (strcmp(options.username, "\001") == 0) - username = simple_prompt("Username: ", 100, true); + username = simple_prompt("User name: ", 100, true); else username = strdup(options.username); } |