mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-05 06:39:26 +02:00
Bug 2384 - Filter Curve EQ error in non-English locale
This commit is contained in:
parent
abf0f8157e
commit
c840133dd8
@ -1582,7 +1582,7 @@ void EffectEqualization::LoadCurves(const wxString &fileName, bool append)
|
|||||||
(void)fileName;
|
(void)fileName;
|
||||||
(void)append;
|
(void)append;
|
||||||
mCurves.clear();
|
mCurves.clear();
|
||||||
mCurves.push_back( _("unnamed") ); // we still need a default curve to use
|
mCurves.push_back( wxT("unnamed") ); // we still need a default curve to use
|
||||||
#else
|
#else
|
||||||
// Construct normal curve filename
|
// Construct normal curve filename
|
||||||
//
|
//
|
||||||
@ -1678,7 +1678,7 @@ void EffectEqualization::UpdateDefaultCurves(bool updateAll /* false */)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
/* i18n-hint: name of the 'unnamed' custom curve */
|
/* i18n-hint: name of the 'unnamed' custom curve */
|
||||||
wxString unnamed = _("unnamed");
|
wxString unnamed = wxT("unnamed");
|
||||||
|
|
||||||
// Save the "unnamed" curve and remove it so we can add it back as the final curve.
|
// Save the "unnamed" curve and remove it so we can add it back as the final curve.
|
||||||
EQCurve userUnnamed(wxT("temp"));
|
EQCurve userUnnamed(wxT("temp"));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user