1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-23 16:08:07 +02:00

Remove spaces before question marks (scootergrisen)

Requested by translation team.
This commit is contained in:
James Crook 2018-03-24 11:01:29 +00:00
parent ef5cc132ef
commit cd06f86619
2 changed files with 3 additions and 3 deletions

View File

@ -1809,7 +1809,7 @@ bool PluginManager::DropFile(const wxString &fileName)
if ( dst.Exists() ) {
// Query whether to overwrite
bool overwrite = (wxYES == ::AudacityMessageBox(
wxString::Format(_("Overwrite the plug-in file %s ?"),
wxString::Format(_("Overwrite the plug-in file %s?"),
dst.GetFullPath() ),
_("Plug-in already exists"),
wxYES_NO

View File

@ -3428,7 +3428,7 @@ void EditCurvesDialog::OnDelete(wxCommandEvent & WXUNUSED(event))
{
// Create the prompt
wxString quest;
quest = wxString(_("Delete '")) + mEditCurves[ item-deleted ].Name + _("' ?");
quest = wxString(_("Delete '")) + mEditCurves[ item-deleted ].Name + _("'?");
// Ask for confirmation before removal
int ans = mEffect->Effect::MessageBox( quest, wxYES_NO | wxCENTRE, _("Confirm Deletion") );
@ -3457,7 +3457,7 @@ void EditCurvesDialog::OnDelete(wxCommandEvent & WXUNUSED(event))
quest.Printf(_("Delete ") + wxString(wxT("%d ")) + _("items?"), count);
else
if( count == 1 )
quest = wxString(_("Delete '")) + mEditCurves[ item ].Name + _("' ?");
quest = wxString(_("Delete '")) + mEditCurves[ item ].Name + _("'?");
else
return;
// Ask for confirmation before removal