mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-09 14:43:57 +01:00
Convert all wxTRANSLATE() to XO()
XO() can be used anywhere a string must be extracted for translation but not automatically translated at runtime.
This commit is contained in:
@@ -115,12 +115,12 @@ EffectNoiseRemoval::~EffectNoiseRemoval()
|
||||
|
||||
wxString EffectNoiseRemoval::GetSymbol()
|
||||
{
|
||||
return wxTRANSLATE("Noise Removal");
|
||||
return XO("Noise Removal");
|
||||
}
|
||||
|
||||
wxString EffectNoiseRemoval::GetDescription()
|
||||
{
|
||||
return wxTRANSLATE("Removes constant background noise such as fans, tape noise, or hums");
|
||||
return XO("Removes constant background noise such as fans, tape noise, or hums");
|
||||
}
|
||||
|
||||
// EffectIdentInterface implementation
|
||||
|
||||
Reference in New Issue
Block a user