1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Make effect family names translatable and add i18n-hint comments

This commit is contained in:
Paul Licameli
2018-04-10 21:51:16 -04:00
parent 2c19e8f81e
commit d9606e8cdf
9 changed files with 24 additions and 10 deletions

View File

@@ -118,6 +118,7 @@ wxString AudioUnitEffectsModule::GetSymbol()
wxString AudioUnitEffectsModule::GetName()
{
/* 18n-hint: Audio Unit is the name of an Apple audio software protocol */
return XO("Audio Unit Effects");
}

View File

@@ -29,7 +29,8 @@
#include "AUControl.h"
#define AUDIOUNITEFFECTS_VERSION wxT("1.0.0.0")
#define AUDIOUNITEFFECTS_FAMILY wxT("AudioUnit")
/* 18n-hint: the name of an Apple audio software protocol */
#define AUDIOUNITEFFECTS_FAMILY XO("AudioUnit")
class AudioUnitEffect;