From: Václav Slavík Date: Wed, 12 Mar 2008 20:47:52 +0000 (+0000) Subject: indent app name + version from the rest in about dialog; use i18n-friendly way of... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fd3a0ca9e1823d135bd4c43823e842aea3bb1395?ds=sidebyside indent app name + version from the rest in about dialog; use i18n-friendly way of creating strings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52456 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/aboutdlg.cpp b/src/msw/aboutdlg.cpp index 1d8823b816..ff27b3ad00 100644 --- a/src/msw/aboutdlg.cpp +++ b/src/msw/aboutdlg.cpp @@ -49,8 +49,12 @@ void wxAboutBox(const wxAboutDialogInfo& info) wxString msg; msg << name; if ( info.HasVersion() ) - msg << _(" Version ") << info.GetVersion(); - msg << _T('\n'); + { + msg << _T('\n'); + msg << wxString::Format(_("Version %s"), info.GetVersion()); + } + + msg << _T("\n\n"); if ( info.HasCopyright() ) msg << info.GetCopyright() << _T('\n'); @@ -58,7 +62,7 @@ void wxAboutBox(const wxAboutDialogInfo& info) // add everything remaining msg << info.GetDescriptionAndCredits(); - wxMessageBox(msg, _("About ") + name); + wxMessageBox(msg, wxString::Format(_("About %s"), name)); } else // simple "native" version is not enough {