diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-06-11 18:23:33 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-06-11 18:23:33 +0000 |
commit | 05150e2df398b982b70dad1da37cf3cc5e0105b0 (patch) | |
tree | d254b00537396838c2486f671512ad36f24125af /src/bin/psql/help.c | |
parent | 94cb2201bf22a313c0818ae603c04f4464b71b23 (diff) | |
download | postgresql-05150e2df398b982b70dad1da37cf3cc5e0105b0.tar.gz postgresql-05150e2df398b982b70dad1da37cf3cc5e0105b0.zip |
Add French psql translation. (My rendition of French anyway...)
Fix typo in message.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index fe0035626d9..46d5794afad 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.40 2001/06/08 23:53:48 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.41 2001/06/11 18:23:33 petere Exp $ */ #include "postgres_fe.h" #include "help.h" @@ -82,7 +82,7 @@ usage(void) puts(_("Options:")); puts(_(" -a Echo all input from script")); puts(_(" -A Unaligned table output mode (-P format=unaligned)")); - puts(_(" -c COMMAND Run only single command (SQL or interal) and exit")); + puts(_(" -c COMMAND Run only single command (SQL or internal) and exit")); /* Display default database */ env = getenv("PGDATABASE"); @@ -200,7 +200,7 @@ slashUsage(void) fprintf(fout, _(" \\copy ... perform SQL COPY with data stream to the client host\n")); fprintf(fout, _(" \\copyright show PostgreSQL usage and distribution terms\n")); fprintf(fout, _(" \\d TABLE describe table (or view, index, sequence)\n")); - fprintf(fout, _(" \\d{t|i|s|v}... list tables/indices/sequences/views\n")); + fprintf(fout, _(" \\d{t|i|s|v}... list tables/indexes/sequences/views\n")); fprintf(fout, _(" \\d{p|S|l} list access privileges, system tables, or large objects\n")); fprintf(fout, _(" \\da list aggregate functions\n")); fprintf(fout, _(" \\dd NAME show comment for table, type, function, or operator\n")); |