mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-17 14:11:13 +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:
@@ -40,8 +40,8 @@ wxString EffectFade::GetSymbol()
|
||||
wxString EffectFade::GetDescription()
|
||||
{
|
||||
return mFadeIn
|
||||
? wxTRANSLATE("Applies a linear fade-in to the selected audio")
|
||||
: wxTRANSLATE("Applies a linear fade-out to the selected audio");
|
||||
? XO("Applies a linear fade-in to the selected audio")
|
||||
: XO("Applies a linear fade-out to the selected audio");
|
||||
}
|
||||
|
||||
// EffectIdentInterface implementation
|
||||
|
||||
Reference in New Issue
Block a user