[welcome] Log if no translations matched at all
This commit is contained in:
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…
Reference in New Issue
Block a user