mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-23 07:58:05 +02:00
Remove spaces before question marks (scootergrisen)
Requested by translation team.
This commit is contained in:
parent
ef5cc132ef
commit
cd06f86619
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user