X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7a7697aafe33e958d60547c50b30d50fe3d3a454..8064223b7b1b3657363b7a635c381b9269d95e55:/src/mac/carbon/aboutdlg.cpp diff --git a/src/mac/carbon/aboutdlg.cpp b/src/mac/carbon/aboutdlg.cpp index 4cdf9aed9d..243de8b7d7 100644 --- a/src/mac/carbon/aboutdlg.cpp +++ b/src/mac/carbon/aboutdlg.cpp @@ -69,7 +69,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())); + } if ( info.HasCopyright() ) opts.Set(kHIAboutBoxCopyrightKey, info.GetCopyright());