Author: andreas
Date: 2005-12-06 23:58:11 +0000 (Tue, 06 Dec 2005)
New Revision: 4800

Modified:
   branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmMainConfig.cpp
   branches/REL-1_4_0_PATCHES/pgadmin3/src/schema/pgServer.cpp
Log:
Fix some strings

Modified: branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmMainConfig.cpp
===================================================================
--- branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmMainConfig.cpp       
2005-12-06 23:57:45 UTC (rev 4799)
+++ branches/REL-1_4_0_PATCHES/pgadmin3/src/frm/frmMainConfig.cpp       
2005-12-06 23:58:11 UTC (rev 4800)
@@ -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: branches/REL-1_4_0_PATCHES/pgadmin3/src/schema/pgServer.cpp
===================================================================
--- branches/REL-1_4_0_PATCHES/pgadmin3/src/schema/pgServer.cpp 2005-12-06 
23:57:45 UTC (rev 4799)
+++ branches/REL-1_4_0_PATCHES/pgadmin3/src/schema/pgServer.cpp 2005-12-06 
23:58:11 UTC (rev 4800)
@@ -867,7 +867,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());


---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

Reply via email to