diff --git a/src/mac/carbon/aboutdlg.cpp b/src/mac/carbon/aboutdlg.cpp index 9cf251339a..455929f9b6 100644 --- a/src/mac/carbon/aboutdlg.cpp +++ b/src/mac/carbon/aboutdlg.cpp @@ -68,7 +68,10 @@ void wxAboutBox(const wxAboutDialogInfo& info) opts.Set(kHIAboutBoxNameKey, info.GetName()); if ( info.HasVersion() ) - opts.Set(kHIAboutBoxVersionKey, info.GetVersion()); + { + opts.Set(kHIAboutBoxVersionKey, + wxString::Format(_("Version %s"), info.GetVersion().c_str())); + } if ( info.HasCopyright() ) opts.Set(kHIAboutBoxCopyrightKey, info.GetCopyright());