mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-08 14:13:57 +01:00
Change strings for clarity/consistency.
Changes suggested by (translator) scootergrisen
This commit is contained in:
@@ -638,7 +638,7 @@ wxString LadspaEffect::GetVendor()
|
||||
|
||||
wxString LadspaEffect::GetVersion()
|
||||
{
|
||||
return _("N/A");
|
||||
return _("n/a");
|
||||
}
|
||||
|
||||
wxString LadspaEffect::GetDescription()
|
||||
|
||||
@@ -381,7 +381,7 @@ wxString LV2Effect::GetVendor()
|
||||
|
||||
if (vendor.IsEmpty())
|
||||
{
|
||||
vendor = XO("N/A");
|
||||
vendor = XO("n/a");
|
||||
}
|
||||
|
||||
return vendor;
|
||||
@@ -394,7 +394,7 @@ wxString LV2Effect::GetVersion()
|
||||
|
||||
wxString LV2Effect::GetDescription()
|
||||
{
|
||||
return XO("N/A");
|
||||
return XO("n/a");
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
|
||||
@@ -126,8 +126,8 @@ NyquistEffect::NyquistEffect(const wxString &fName)
|
||||
mDebug = false;
|
||||
mIsSal = false;
|
||||
mOK = false;
|
||||
mAuthor = wxT("N/A");
|
||||
mCopyright = wxT("N/A");
|
||||
mAuthor = XO("n/a");
|
||||
mCopyright = XO("n/a");
|
||||
|
||||
// set clip/split handling when applying over clip boundary.
|
||||
mRestoreSplits = true; // Default: Restore split lines.
|
||||
@@ -201,7 +201,7 @@ wxString NyquistEffect::GetVendor()
|
||||
|
||||
wxString NyquistEffect::GetVersion()
|
||||
{
|
||||
return wxT("N/A");
|
||||
return XO("n/a");
|
||||
}
|
||||
|
||||
wxString NyquistEffect::GetDescription()
|
||||
|
||||
Reference in New Issue
Block a user