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:
parent
ef5cc132ef
commit
cd06f86619
@ -1809,7 +1809,7 @@ bool PluginManager::DropFile(const wxString &fileName)
|
|||||||
if ( dst.Exists() ) {
|
if ( dst.Exists() ) {
|
||||||
// Query whether to overwrite
|
// Query whether to overwrite
|
||||||
bool overwrite = (wxYES == ::AudacityMessageBox(
|
bool overwrite = (wxYES == ::AudacityMessageBox(
|
||||||
wxString::Format(_("Overwrite the plug-in file %s ?"),
|
wxString::Format(_("Overwrite the plug-in file %s?"),
|
||||||
dst.GetFullPath() ),
|
dst.GetFullPath() ),
|
||||||
_("Plug-in already exists"),
|
_("Plug-in already exists"),
|
||||||
wxYES_NO
|
wxYES_NO
|
||||||
|
@ -3428,7 +3428,7 @@ void EditCurvesDialog::OnDelete(wxCommandEvent & WXUNUSED(event))
|
|||||||
{
|
{
|
||||||
// Create the prompt
|
// Create the prompt
|
||||||
wxString quest;
|
wxString quest;
|
||||||
quest = wxString(_("Delete '")) + mEditCurves[ item-deleted ].Name + _("' ?");
|
quest = wxString(_("Delete '")) + mEditCurves[ item-deleted ].Name + _("'?");
|
||||||
|
|
||||||
// Ask for confirmation before removal
|
// Ask for confirmation before removal
|
||||||
int ans = mEffect->Effect::MessageBox( quest, wxYES_NO | wxCENTRE, _("Confirm Deletion") );
|
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);
|
quest.Printf(_("Delete ") + wxString(wxT("%d ")) + _("items?"), count);
|
||||||
else
|
else
|
||||||
if( count == 1 )
|
if( count == 1 )
|
||||||
quest = wxString(_("Delete '")) + mEditCurves[ item ].Name + _("' ?");
|
quest = wxString(_("Delete '")) + mEditCurves[ item ].Name + _("'?");
|
||||||
else
|
else
|
||||||
return;
|
return;
|
||||||
// Ask for confirmation before removal
|
// Ask for confirmation before removal
|
||||||
|
Loading…
x
Reference in New Issue
Block a user