From 8cc9bd9b575287ba89e329acc0d9b669ebf2210a Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Wed, 6 May 2020 13:50:27 -0400 Subject: [PATCH] Remove unnecessary call to Translation --- src/LangChoice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LangChoice.cpp b/src/LangChoice.cpp index 7d6de010d..75bed5281 100644 --- a/src/LangChoice.cpp +++ b/src/LangChoice.cpp @@ -123,7 +123,7 @@ void LangChoiceDialog::OnOk(wxCommandEvent & WXUNUSED(event)) /* i18n-hint: The %s's are replaced by translated and untranslated * versions of language names. */ auto msg = XO("The language you have chosen, %s (%s), is not the same as the system language, %s (%s).") - .Format(mLangNames[ndx].Translation(), + .Format(mLangNames[ndx], mLang, sname, slang);