diff --git a/src/Gui/Splashscreen.cpp b/src/Gui/Splashscreen.cpp index 435d2c76f3..40c7867edd 100644 --- a/src/Gui/Splashscreen.cpp +++ b/src/Gui/Splashscreen.cpp @@ -26,6 +26,7 @@ # include # include # include +# include # include # include # include @@ -553,6 +554,10 @@ void AboutDialog::on_copyButton_clicked() #endif << endl; #endif + QLocale loc; + str << "Locale: " << loc.languageToString(loc.language()) << "/" + << loc.countryToString(loc.country()) + << " (" << loc.name() << ")" << endl; QClipboard* cb = QApplication::clipboard(); cb->setText(data);