From cb3f80d0f26a4b43eeae4644b011fff0d1ce04a8 Mon Sep 17 00:00:00 2001 From: "alexandre.prokoudine" Date: Sat, 17 Sep 2011 21:33:25 +0000 Subject: [PATCH] The whole Preferences dialog caption should be translatable --- src/prefs/PrefsDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prefs/PrefsDialog.cpp b/src/prefs/PrefsDialog.cpp index e05b5d793..3a5dae24a 100644 --- a/src/prefs/PrefsDialog.cpp +++ b/src/prefs/PrefsDialog.cpp @@ -94,7 +94,7 @@ int wxTreebookExt::ChangeSelection(size_t n) { int wxTreebookExt::SetSelection(size_t n) { int i = wxTreebook::SetSelection(n); - wxString Temp = wxString(wxT("Preferences: ")) + GetPageText( n ); + wxString Temp = wxString(_("Preferences: ")) + GetPageText( n ); ((wxDialog*)GetParent())->SetTitle( Temp ); return i; }