aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/LSession.cpp
diff options
context:
space:
mode:
authorZackaryWelch <welch.zackary@gmail.com>2017-08-15 13:16:59 -0400
committerZackaryWelch <welch.zackary@gmail.com>2017-08-15 13:16:59 -0400
commit9e9d68f1f5889f44d620fb044b1c9cec43b095e1 (patch)
treea442a18a4589f17fd745cded260eca8bc6262750 /src-qt5/core/lumina-desktop/LSession.cpp
parentAdded fixes for the experimental video screensaver (diff)
downloadlumina-9e9d68f1f5889f44d620fb044b1c9cec43b095e1.tar.gz
lumina-9e9d68f1f5889f44d620fb044b1c9cec43b095e1.tar.bz2
lumina-9e9d68f1f5889f44d620fb044b1c9cec43b095e1.zip
Resynced translation files and fixed translations of the boot splash UI
Diffstat (limited to 'src-qt5/core/lumina-desktop/LSession.cpp')
-rw-r--r--src-qt5/core/lumina-desktop/LSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop/LSession.cpp b/src-qt5/core/lumina-desktop/LSession.cpp
index 777affd1..aa37fa8c 100644
--- a/src-qt5/core/lumina-desktop/LSession.cpp
+++ b/src-qt5/core/lumina-desktop/LSession.cpp
@@ -91,6 +91,7 @@ void LSession::setupSession(){
//Seed random number generator (if needed)
qsrand( QTime::currentTime().msec() );
+ currTranslator = LUtils::LoadTranslation(this, "lumina-desktop");
BootSplash splash;
splash.showScreen("init");
qDebug() << "Initializing Session";
@@ -114,7 +115,6 @@ void LSession::setupSession(){
sessionsettings->value("InitLocale/LC_COLLATE","").toString(), \
sessionsettings->value("InitLocale/LC_CTYPE","").toString() );
}
- currTranslator = LUtils::LoadTranslation(this, "lumina-desktop");
//use the system settings
//Setup the user's lumina settings directory as necessary
splash.showScreen("user");
bgstack15