Merge similar but not quite identical translated strings.
Some translated strings appeared several times in almost but not quite identical form. Remove a few of them so that they don't have to be translated multiple times. Closes #13637. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -138,7 +138,7 @@ void wxAboutDialogInfo::SetVersion(const wxString& version,
|
||||
|
||||
bool wxGenericAboutDialog::Create(const wxAboutDialogInfo& info, wxWindow* parent)
|
||||
{
|
||||
if ( !wxDialog::Create(parent, wxID_ANY, _("About ") + info.GetName(),
|
||||
if ( !wxDialog::Create(parent, wxID_ANY, wxString::Format(_("About %s"), info.GetName()),
|
||||
wxDefaultPosition, wxDefaultSize, wxRESIZE_BORDER|wxDEFAULT_DIALOG_STYLE) )
|
||||
return false;
|
||||
|
||||
|
Reference in New Issue
Block a user