[welcome] Log if no translations matched at all

main
Adriaan de Groot 7 years ago
parent d9a1f6b18b
commit e2b8fb0afe

@ -162,6 +162,7 @@ WelcomePage::initLanguages()
QLocale thisLocale = ui->languageWidget->itemData( i, Qt::UserRole ).toLocale();
if ( thisLocale == QLocale( QLocale::English, QLocale::UnitedStates ) )
{
isTranslationAvailable = true;
ui->languageWidget->setCurrentIndex( i );
cDebug() << "Translation unavailable, so initial locale set to " << thisLocale.name();
QLocale::setDefault( thisLocale );
@ -173,6 +174,9 @@ WelcomePage::initLanguages()
}
}
if ( !isTranslationAvailable )
cWarning() << "No available translation matched" << defaultLocale;
connect( ui->languageWidget,
static_cast< void ( QComboBox::* )( int ) >( &QComboBox::currentIndexChanged ),
this, [ & ]( int newIndex )

Loading…
Cancel
Save