diff --git a/src/modules/locale/LocalePage.cpp b/src/modules/locale/LocalePage.cpp index 4b4638215..e1f1d18fc 100644 --- a/src/modules/locale/LocalePage.cpp +++ b/src/modules/locale/LocalePage.cpp @@ -171,9 +171,7 @@ LocalePage::LocalePage( QWidget* parent ) !dlg->selectedLCLocale().isEmpty() ) { m_selectedLocaleConfiguration.lang = dlg->selectedLCLocale(); - m_localeLabel->setText( tr( "The system language will be set to %1." ) - .arg( prettyLCLocale( - m_selectedLocaleConfiguration.lang ) ) ); + this->updateLocaleLabels(); } dlg->deleteLater(); @@ -203,9 +201,7 @@ LocalePage::LocalePage( QWidget* parent ) m_selectedLocaleConfiguration.lc_measurement = dlg->selectedLCLocale(); m_selectedLocaleConfiguration.lc_identification = dlg->selectedLCLocale(); - m_formatsLabel->setText( tr( "The numbers and dates locale will be set to %1." ) - .arg( prettyLCLocale( - m_selectedLocaleConfiguration.lc_numeric ) ) ); + this->updateLocaleLabels(); } dlg->deleteLater();