1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

Fixed some smart quotes that can cause problems for .po file generation.

This commit is contained in:
james.k.crook@gmail.com
2012-03-20 21:59:30 +00:00
parent 6c71a5e170
commit cd54a2728b
9 changed files with 12 additions and 12 deletions

View File

@@ -139,9 +139,9 @@ bool EffectAutoDuck::Init()
{
wxMessageBox(
_("You selected a track which does not contain audio. AutoDuck can only process audio tracks."),
/* i18n-hint: Auto duck is the name of an effect that <EFBFBD>ducks<EFBFBD> (reduces the volume)
/* i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume)
* of the audio automatically when there is sound on another track. Not as
* in <EFBFBD>Donald-Duck<EFBFBD>!*/
* in 'Donald-Duck'!*/
_("Auto Duck"), wxICON_ERROR, mParent);
return false;
}

View File

@@ -311,7 +311,7 @@ END_EVENT_TABLE()
ChangeSpeedDialog::ChangeSpeedDialog(EffectChangeSpeed *effect, wxWindow *parent)
: EffectDialog(parent,
/* i18n-hint: Audacity<EFBFBD>s change speed effect changes the speed and pitch.*/
/* i18n-hint: Audacity's change speed effect changes the speed and pitch.*/
_("Change Speed"),
PROCESS_EFFECT),
mEffect(effect)

View File

@@ -654,7 +654,7 @@ void CompressorDialog::PopulateOrExchange(ShuttleGui & S)
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
/* i18n-hint: Particularly in percussion, sounds can be regarded as having
* an <EFBFBD>attack<EFBFBD> phase where the sound builds up and a <EFBFBD>decay<EFBFBD> where the
* an 'attack' phase where the sound builds up and a 'decay' where the
* sound dies away. So this means 'onset duration'. */
mAttackLabel = S.AddVariableText(_("Attack Time:"), true,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);