Make output string localization-friendly

This commit is contained in:
Artur Wieczorek 2016-10-15 20:51:49 +02:00
parent ca3e63656c
commit d5880dcfd9

View File

@ -2776,7 +2776,7 @@ wxAccStatus wxDataViewTreeCtrlAccessible::GetName(int childId, wxString* name)
{
// Return row number if not textual column found.
// Rows are numbered from 1.
*name = _("Row") + wxString::Format(wxS(" %i"), childId);
*name = wxString::Format(_("Row %i"), childId);
}
else
{