Better l10n support on sequences' statistics, per a patch from Marek Cernocky.
authorguillaume <guillaume@a7884b65-44f6-0310-8a51-81a127f17b15>
Tue, 4 Aug 2009 22:01:35 +0000 (22:01 +0000)
committerguillaume <guillaume@a7884b65-44f6-0310-8a51-81a127f17b15>
Tue, 4 Aug 2009 22:01:35 +0000 (22:01 +0000)
git-svn-id: svn://svn.pgadmin.org/trunk/pgadmin3@8005 a7884b65-44f6-0310-8a51-81a127f17b15

CHANGELOG
pgadmin/schema/pgSequence.cpp

index 795b7f63cf75898fdd289f85d8e96c6e561f8eca..313e673a4ea91ce204d52c5877331c0c465e080a 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -36,6 +36,8 @@ Changes
 
 Date       Dev Ver     Change details
 ---------- --- ------  --------------
+2009-08-05 GL  1.12.0  Better l10n support on sequences' statistics, per a
+                       patch from Marek Cernocky.
 2009-08-04 DP  1.10.1  Include comments on procedures in the reverse engineered
                        SQL.
 2009-08-03 GL  1.12.0  Better l10n support on the Grant Wizard, per a
index 4f98d54eafbf0d7b932cbcebd74bd232d0958bd1..ed130854d433e508500c4ac047df424de7103f44 100644 (file)
@@ -131,9 +131,9 @@ void pgSequence::ShowStatistics(frmMain *form, ctlListView *statistics)
 
     if (stats)
     {
-        statistics->InsertItem(0, wxT("Blocks Read"), PGICON_STATISTICS);
+        statistics->InsertItem(0, _("Blocks Read"), PGICON_STATISTICS);
         statistics->SetItem(0l, 1, stats->GetVal(wxT("blks_read")));
-        statistics->InsertItem(1, wxT("Blocks Hit"), PGICON_STATISTICS);
+        statistics->InsertItem(1, _("Blocks Hit"), PGICON_STATISTICS);
         statistics->SetItem(1, 1, stats->GetVal(wxT("blks_hit")));
 
         delete stats;