1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-13 16:15:48 +01:00

Don't form translated strings with concatenation

This commit is contained in:
Paul Licameli
2018-10-25 04:05:36 -04:00
parent 303553ae4e
commit 38f97349f5

View File

@@ -1375,7 +1375,7 @@ bool NyquistEffect::ProcessOne()
if (rval == nyx_double) {
wxString str;
str.Printf(_("Nyquist returned the value:") + wxString(wxT(" %f")),
str.Printf(_("Nyquist returned the value: %f"),
nyx_get_double());
Effect::MessageBox(str);
return (GetType() != EffectTypeProcess || mIsPrompt);
@@ -1383,7 +1383,7 @@ bool NyquistEffect::ProcessOne()
if (rval == nyx_int) {
wxString str;
str.Printf(_("Nyquist returned the value:") + wxString(wxT(" %d")),
str.Printf(_("Nyquist returned the value: %d"),
nyx_get_int());
Effect::MessageBox(str);
return (GetType() != EffectTypeProcess || mIsPrompt);