]> git.saurik.com Git - wxWidgets.git/commitdiff
indent app name + version from the rest in about dialog; use i18n-friendly way of...
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 12 Mar 2008 20:47:52 +0000 (20:47 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 12 Mar 2008 20:47:52 +0000 (20:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52456 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/aboutdlg.cpp

index 1d8823b816cf5db8db493d271b73b07d379598ec..ff27b3ad0034b71ba3fbc35abc765342ea029a02 100644 (file)
@@ -49,8 +49,12 @@ void wxAboutBox(const wxAboutDialogInfo& info)
         wxString msg;
         msg << name;
         if ( info.HasVersion() )
         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');
 
         if ( info.HasCopyright() )
             msg << info.GetCopyright() << _T('\n');
@@ -58,7 +62,7 @@ void wxAboutBox(const wxAboutDialogInfo& info)
         // add everything remaining
         msg << info.GetDescriptionAndCredits();
 
         // add everything remaining
         msg << info.GetDescriptionAndCredits();
 
-        wxMessageBox(msg, _("About ") + name);
+        wxMessageBox(msg, wxString::Format(_("About %s"), name));
     }
     else // simple "native" version is not enough
     {
     }
     else // simple "native" version is not enough
     {