well, I just use
wxLocale loc(wxLANGUAGE_ENGLISH);
Do that somewhere after wxWidgets initializes and where it is alive as long as your app is. I so far only need it in a console app, so I'm not 100% sure where to put it for a GUI app, but I'd try the OnRun() handler of your wxApp class. Maybe someone else has a better suggestion.
wxLocale loc(wxLANGUAGE_ENGLISH);
When I use this line I get this error: "wxLocale was not declared in this scope"
In my application I use only gtk for interface, not wxWidget...