by zhy01 » Wed Jan 04, 2012 3:08 am
one little bug found when translating.
mmex\src\reporttransactions.cpp(194):
//Date range
if ( !transDialog_->userDateRangeStr().IsEmpty())
filterDetails << wxT("<b>") << wxT("Date Range: ") << wxT("</b>") << transDialog_->userDateRangeStr() << wxT("<br>");
the text "Date Range: " should use gettext method:
//Date range
if ( !transDialog_->userDateRangeStr().IsEmpty())
filterDetails << wxT("<b>") << _("Date Range: ") << wxT("</b>") << transDialog_->userDateRangeStr() << wxT("<br>");