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