From d5880dcfd9d30e2520d622fc7be51bd38f41dc44 Mon Sep 17 00:00:00 2001 From: Artur Wieczorek Date: Sat, 15 Oct 2016 20:51:49 +0200 Subject: [PATCH] Make output string localization-friendly --- src/common/datavcmn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/datavcmn.cpp b/src/common/datavcmn.cpp index 2e6c8287b0..3e1c681785 100644 --- a/src/common/datavcmn.cpp +++ b/src/common/datavcmn.cpp @@ -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 {