1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-22 23:30:07 +02:00

The whole Preferences dialog caption should be translatable

This commit is contained in:
alexandre.prokoudine 2011-09-17 21:33:25 +00:00
parent eb8d20940f
commit cb3f80d0f2

View File

@ -94,7 +94,7 @@ int wxTreebookExt::ChangeSelection(size_t n) {
int wxTreebookExt::SetSelection(size_t n) int wxTreebookExt::SetSelection(size_t n)
{ {
int i = wxTreebook::SetSelection(n); int i = wxTreebook::SetSelection(n);
wxString Temp = wxString(wxT("Preferences: ")) + GetPageText( n ); wxString Temp = wxString(_("Preferences: ")) + GetPageText( n );
((wxDialog*)GetParent())->SetTitle( Temp ); ((wxDialog*)GetParent())->SetTitle( Temp );
return i; return i;
} }