1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

Removed wxLog* squelching on language initialization in AudacityApp::InitLang.

This commit is contained in:
v.audacity 2010-08-23 23:06:29 +00:00
parent 9678742ef8
commit d6bbfa6295

View File

@ -819,9 +819,8 @@ void AudacityApp::InitLang( const wxString & lang )
if( mLocale )
delete mLocale;
if (lang != wxT("en")) {
wxLogNull nolog;
if (lang != wxT("en"))
{
// LL: I do not know why loading translations fail on the Mac if LANG is not
// set, but for some reason it does. So wrap the creation of wxLocale
// with the default translation.