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());