mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-08 14:13:57 +01:00
A few more missed translations...
"seconds" and "Output" are translated elsewhere, so just add _
New string _("%") will simply go through untranslated for now but can be in next
version's audacity.pot
This commit is contained in:
@@ -242,7 +242,7 @@ void EffectBassTreble::PopulateOrExchange(ShuttleGui & S)
|
|||||||
}
|
}
|
||||||
S.EndStatic();
|
S.EndStatic();
|
||||||
|
|
||||||
S.StartStatic("Output");
|
S.StartStatic(_("Output"));
|
||||||
{
|
{
|
||||||
S.StartMultiColumn(3, wxEXPAND);
|
S.StartMultiColumn(3, wxEXPAND);
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -723,7 +723,7 @@ void EffectTruncSilence::PopulateOrExchange(ShuttleGui & S)
|
|||||||
vldDur.SetRange(MIN_Minimum, MAX_Minimum);
|
vldDur.SetRange(MIN_Minimum, MAX_Minimum);
|
||||||
mInitialAllowedSilenceT = S.AddTextBox(_("Duration:"), wxT(""), 12);
|
mInitialAllowedSilenceT = S.AddTextBox(_("Duration:"), wxT(""), 12);
|
||||||
mInitialAllowedSilenceT->SetValidator(vldDur);
|
mInitialAllowedSilenceT->SetValidator(vldDur);
|
||||||
S.AddUnits(wxT("seconds"));
|
S.AddUnits(_("seconds"));
|
||||||
}
|
}
|
||||||
S.EndMultiColumn();
|
S.EndMultiColumn();
|
||||||
}
|
}
|
||||||
@@ -747,13 +747,13 @@ void EffectTruncSilence::PopulateOrExchange(ShuttleGui & S)
|
|||||||
vldTrunc.SetRange(MIN_Truncate, MAX_Truncate);
|
vldTrunc.SetRange(MIN_Truncate, MAX_Truncate);
|
||||||
mTruncLongestAllowedSilenceT = S.AddTextBox(_("Truncate to:"), wxT(""), 12);
|
mTruncLongestAllowedSilenceT = S.AddTextBox(_("Truncate to:"), wxT(""), 12);
|
||||||
mTruncLongestAllowedSilenceT->SetValidator(vldTrunc);
|
mTruncLongestAllowedSilenceT->SetValidator(vldTrunc);
|
||||||
S.AddUnits(wxT("seconds"));
|
S.AddUnits(_("seconds"));
|
||||||
|
|
||||||
FloatingPointValidator<double> vldComp(3, &mSilenceCompressPercent, NUM_VAL_NO_TRAILING_ZEROES);
|
FloatingPointValidator<double> vldComp(3, &mSilenceCompressPercent, NUM_VAL_NO_TRAILING_ZEROES);
|
||||||
vldComp.SetRange(MIN_Compress, MAX_Compress);
|
vldComp.SetRange(MIN_Compress, MAX_Compress);
|
||||||
mSilenceCompressPercentT = S.AddTextBox(_("Compress to:"), wxT(""), 12);
|
mSilenceCompressPercentT = S.AddTextBox(_("Compress to:"), wxT(""), 12);
|
||||||
mSilenceCompressPercentT->SetValidator(vldComp);
|
mSilenceCompressPercentT->SetValidator(vldComp);
|
||||||
S.AddUnits(wxT("percent"));
|
S.AddUnits(_("%"));
|
||||||
}
|
}
|
||||||
S.EndMultiColumn();
|
S.EndMultiColumn();
|
||||||
|
|
||||||
|
|||||||
@@ -433,7 +433,7 @@ ImportRawDialog::ImportRawDialog(wxWindow * parent,
|
|||||||
mPercentText = S.AddTextBox(_("Amount to import:"),
|
mPercentText = S.AddTextBox(_("Amount to import:"),
|
||||||
wxT("100"),
|
wxT("100"),
|
||||||
12);
|
12);
|
||||||
S.AddUnits(wxT("%"));
|
S.AddUnits(_("%"));
|
||||||
|
|
||||||
// Rate text
|
// Rate text
|
||||||
/* i18n-hint: (noun)*/
|
/* i18n-hint: (noun)*/
|
||||||
|
|||||||
Reference in New Issue
Block a user