The new Release 20.03 is out! You can download binaries for Windows and many major Linux distros here .
static wxString RemoveCRAndTranslate(const wxString& value){ wxString Result(value); Result.Replace("\r\n", "\n"); return _(Result);}
https://wxwidgets.org/help/msgid-literals/
const wxString& wxGetTranslation ( const wxString & string, const wxString & domain = wxEmptyString, const wxString & context = wxEmptyString )
--- a/src/plugins/contrib/clangd_client/src/codecompletion/parser/parser.cpp+++ b/src/plugins/contrib/clangd_client/src/codecompletion/parser/parser.cpp@@ -1567,7 +1567,7 @@ void Parser::ShowGlobalChangeAnnoyingMsg() "on the project title in the Workspace tree and selecting\n" "'Reparse current project'."); - AnnoyingDialog dlg(_("Global settings warning"), _(warningMsg), wxART_WARNING,+ AnnoyingDialog dlg(_("Global settings warning"), warningMsg, wxART_WARNING, AnnoyingDialog::OK); dlg.ShowModal(); }//endif size