diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-01-15 05:43:06 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-01-15 05:43:06 +0000 |
commit | 299ae4356bcbcc1dbad2bdd7bed4fc779602fa58 (patch) | |
tree | d08dd7f4eef73704b66794b43071d4e3450ca30b /src | |
parent | 0b72ebdc0c89c7cd76a6f6b7d3888326fe8463ec (diff) | |
download | postgresql-299ae4356bcbcc1dbad2bdd7bed4fc779602fa58.tar.gz postgresql-299ae4356bcbcc1dbad2bdd7bed4fc779602fa58.zip |
Adjust warning message about Windows console code page to point to
the right place in the docs, and gettext()ify it.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/startup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 6945cc29d6e..f6990761bae 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.110 2005/01/14 00:25:17 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.111 2005/01/15 05:43:06 tgl Exp $ */ #include "postgres_fe.h" @@ -670,9 +670,9 @@ checkWin32Codepage(void) concp = GetConsoleCP(); if (wincp != concp) { - printf("Warning: Console codepage (%u) differs from windows codepage (%u)\n" - " 8-bit characters will not work correctly. See PostgreSQL\n" - " documentation \"Installation on Windows\" for details.\n\n", + printf(gettext("Warning: Console code page (%u) differs from Windows code page (%u)\n" + " 8-bit characters may not work correctly. See psql reference\n" + " page \"Notes for Windows users\" for details.\n\n"), concp, wincp); } } |