1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Untranslated from GetVendor; translated in effect info menu only

This commit is contained in:
Paul Licameli 2018-03-06 01:14:54 -05:00
parent 4617b0b1a8
commit f6efacbda3
2 changed files with 2 additions and 2 deletions

View File

@ -3458,7 +3458,7 @@ void EffectUIHost::OnMenu(wxCommandEvent & WXUNUSED(evt))
::wxGetTranslation( mEffect->GetFamilyName() )));
sub->Append(kDummyID, wxString::Format(_("Name: %s"), mEffect->GetTranslatedName()));
sub->Append(kDummyID, wxString::Format(_("Version: %s"), mEffect->GetVersion()));
sub->Append(kDummyID, wxString::Format(_("Vendor: %s"), mEffect->GetVendor()));
sub->Append(kDummyID, wxString::Format(_("Vendor: %s"), GetCustomTranslation(mEffect->GetVendor())));
sub->Append(kDummyID, wxString::Format(_("Description: %s"), mEffect->GetDescription()));
menu.Append(0, _("About"), sub.release());

View File

@ -215,7 +215,7 @@ wxString NyquistEffect::GetVendor()
{
if (mIsPrompt)
{
return _("Audacity");
return XO("Audacity");
}
return mAuthor;