1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-05 14:18:53 +02:00

Change strings for clarity/consistency.

Changes suggested by (translator) scootergrisen
This commit is contained in:
James Crook 2016-08-19 19:30:21 +01:00
parent 6b4a43a0a7
commit b1526fbdc8
5 changed files with 10 additions and 10 deletions

View File

@ -216,10 +216,10 @@ audio CDs</a>.") + wxT("</p>")
if(Key == wxT("remotehelp") ) if(Key == wxT("remotehelp") )
{ {
// *URL* will be replaced by whatever URL we are looking for. // *URL* will be replaced by whatever URL we are looking for.
return WrapText(_("You do not appear to have the 'help' folder installed. \ return WrapText(_("The manual does not appear to be installed. \
Please <a href=\"*URL*\">view the content online</a> or \ Please <a href=\"*URL*\">view the manual online</a> or \
<a href=\"http://manual.audacityteam.org/man/unzipping_the_manual.html\"> \ <a href=\"http://manual.audacityteam.org/man/unzipping_the_manual.html\"> \
download the current Manual</a>.<br><br>\ download the Manual</a>.<br><br>\
To always view the Manual online, change \"Location of Manual\" in \ To always view the Manual online, change \"Location of Manual\" in \
Interface Preferences to \"From Internet\".") Interface Preferences to \"From Internet\".")
); );

View File

@ -1520,7 +1520,7 @@ void AudacityProject::AddEffectMenuItemGroup(CommandManager *c,
{ {
end = groupCnt; end = groupCnt;
} }
c->BeginSubMenu(wxString::Format(_("Plug-ins %d to %d"), c->BeginSubMenu(wxString::Format(_("Plug-in %d to %d"),
groupNdx + 1, groupNdx + 1,
end)); end));
} }

View File

@ -638,7 +638,7 @@ wxString LadspaEffect::GetVendor()
wxString LadspaEffect::GetVersion() wxString LadspaEffect::GetVersion()
{ {
return _("N/A"); return _("n/a");
} }
wxString LadspaEffect::GetDescription() wxString LadspaEffect::GetDescription()

View File

@ -381,7 +381,7 @@ wxString LV2Effect::GetVendor()
if (vendor.IsEmpty()) if (vendor.IsEmpty())
{ {
vendor = XO("N/A"); vendor = XO("n/a");
} }
return vendor; return vendor;
@ -394,7 +394,7 @@ wxString LV2Effect::GetVersion()
wxString LV2Effect::GetDescription() wxString LV2Effect::GetDescription()
{ {
return XO("N/A"); return XO("n/a");
} }
// ============================================================================ // ============================================================================

View File

@ -126,8 +126,8 @@ NyquistEffect::NyquistEffect(const wxString &fName)
mDebug = false; mDebug = false;
mIsSal = false; mIsSal = false;
mOK = false; mOK = false;
mAuthor = wxT("N/A"); mAuthor = XO("n/a");
mCopyright = wxT("N/A"); mCopyright = XO("n/a");
// set clip/split handling when applying over clip boundary. // set clip/split handling when applying over clip boundary.
mRestoreSplits = true; // Default: Restore split lines. mRestoreSplits = true; // Default: Restore split lines.
@ -201,7 +201,7 @@ wxString NyquistEffect::GetVendor()
wxString NyquistEffect::GetVersion() wxString NyquistEffect::GetVersion()
{ {
return wxT("N/A"); return XO("n/a");
} }
wxString NyquistEffect::GetDescription() wxString NyquistEffect::GetDescription()