Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0acd843

Browse files
committed
Finish German translation, edit (original) messages a bit.
1 parent 959dc92 commit 0acd843

File tree

4 files changed

+240
-203
lines changed

4 files changed

+240
-203
lines changed

src/bin/psql/command.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright 2000 by PostgreSQL Global Development Group
55
*
6-
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.55 2001/06/02 18:25:17 petere Exp $
6+
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.56 2001/06/08 23:53:48 petere Exp $
77
*/
88
#include "postgres_fe.h"
99
#include "command.h"
@@ -149,7 +149,7 @@ HandleSlashCmds(const char *line,
149149

150150
#if 0 /* turned out to be too annoying */
151151
if (status != CMD_UNKNOWN && isalpha((unsigned char) new_cmd[0]))
152-
psql_error("Warning: this syntax is deprecated\n");
152+
psql_error("Warning: This syntax is deprecated.\n");
153153
#endif
154154
}
155155

@@ -442,7 +442,7 @@ exec_command(const char *cmd,
442442
SetVariable(pset.vars, "ENCODING", pg_encoding_to_char(pset.encoding));
443443
}
444444
#else
445-
psql_error("\\%s: multi-byte support is not enabled\n", cmd);
445+
psql_error("\\%s: multibyte support is not enabled\n", cmd);
446446
#endif
447447
free(encoding);
448448
}
@@ -1483,7 +1483,7 @@ do_edit(const char *filename_arg, PQExpBuffer query_buf)
14831483

14841484
if (fd == -1 || !stream)
14851485
{
1486-
psql_error("couldn't open temp file %s: %s\n", fname, strerror(errno));
1486+
psql_error("could not open temporary file %s: %s\n", fname, strerror(errno));
14871487
error = true;
14881488
}
14891489
else

src/bin/psql/common.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright 2000 by PostgreSQL Global Development Group
55
*
6-
* $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.33 2001/06/02 18:25:18 petere Exp $
6+
* $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.34 2001/06/08 23:53:48 petere Exp $
77
*/
88
#include "postgres_fe.h"
99

@@ -528,7 +528,7 @@ SendQuery(const char *query)
528528
/* check for asynchronous notification returns */
529529
while ((notify = PQnotifies(pset.db)) != NULL)
530530
{
531-
fprintf(pset.queryFout, gettext("Asynchronous NOTIFY '%s' from backend with pid '%d' received.\n"),
531+
fprintf(pset.queryFout, gettext("Asynchronous NOTIFY '%s' from backend with pid %d received.\n"),
532532
notify->relname, notify->be_pid);
533533
free(notify);
534534
fflush(pset.queryFout);

0 commit comments

Comments
 (0)