SVN Commit by andreas: r4799 - in trunk/pgadmin3/src: frm schema

From: svn(at)pgadmin(dot)org
To: pgadmin-hackers(at)postgresql(dot)org
Subject: SVN Commit by andreas: r4799 - in trunk/pgadmin3/src: frm schema
Date: 2005-12-06 23:57:46
Message-ID: 200512062357.jB6Nvker004896@developer.pgadmin.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Author: andreas
Date: 2005-12-06 23:57:45 +0000 (Tue, 06 Dec 2005)
New Revision: 4799

Modified:
trunk/pgadmin3/src/frm/frmMainConfig.cpp
trunk/pgadmin3/src/schema/pgServer.cpp
Log:
Fix some strings

Modified: trunk/pgadmin3/src/frm/frmMainConfig.cpp
===================================================================
--- trunk/pgadmin3/src/frm/frmMainConfig.cpp 2005-12-06 13:36:47 UTC (rev 4798)
+++ trunk/pgadmin3/src/frm/frmMainConfig.cpp 2005-12-06 23:57:45 UTC (rev 4799)
@@ -549,7 +549,7 @@
const wxChar *hintString[]=
{
_("The PostgreSQL server engine is currently configured to listen for local connections only.\nYou might want to check \"listen_addresses\" to enable accessing the server over the network too."),
- _("The pg_autovacuum backend process is not running.\nIt is recommended to enable it by setting 'stats_start_collector', 'stats_row_level' and 'autovacuum' to 'on'.")
+ _("The autovacuum backend process is not running.\nIt is recommended to enable it by setting 'stats_start_collector', 'stats_row_level' and 'autovacuum' to 'on'.")
};

Modified: trunk/pgadmin3/src/schema/pgServer.cpp
===================================================================
--- trunk/pgadmin3/src/schema/pgServer.cpp 2005-12-06 13:36:47 UTC (rev 4798)
+++ trunk/pgadmin3/src/schema/pgServer.cpp 2005-12-06 23:57:45 UTC (rev 4799)
@@ -868,7 +868,7 @@
{
if (GetUpSince().IsValid())
properties->AppendItem(_("Up since"), GetUpSince());
- properties->AppendItem(wxT("pg_autovacuum"), (autovacuumRunning ? _("running") : _("not running")));
+ properties->AppendItem(wxT("Autovacuum"), (autovacuumRunning ? _("running") : _("not running")));
}
if (GetServerControllable())
properties->AppendItem(_("Running?"), GetServerRunning());

Browse pgadmin-hackers by date

  From Date Subject
Next Message svn 2005-12-06 23:58:12 SVN Commit by andreas: r4800 - in branches/REL-1_4_0_PATCHES/pgadmin3/src: frm schema
Previous Message Guillaume LELARGE 2005-12-06 21:58:21 Schema bug