1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-11 17:13:37 +02:00

Bug 1962 - Nyquist effect dialog labels not translated

This commit is contained in:
James Crook
2018-08-31 10:51:10 +01:00
parent a6a2833135
commit 792fddbd22

View File

@@ -1644,7 +1644,7 @@ wxString NyquistEffect::UnQuote(const wxString &s, bool allowParens,
int len = s.Length();
if (len >= 2 && s[0] == wxT('\"') && s[len - 1] == wxT('\"')) {
auto unquoted = s.Mid(1, len - 2);
return unquoted;
return wxGetTranslation( unquoted );
}
else if (allowParens &&
len >= 2 && s[0] == wxT('(') && s[len - 1] == wxT(')')) {