Skip to content

Commit

Permalink
Fix last commit.
Browse files Browse the repository at this point in the history
Still had some debug code in there. Sorry!!
  • Loading branch information
MKleusberg committed May 24, 2014
1 parent 51be349 commit dac1ed1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ Application::Application(int& argc, char** argv) :

// Load translations
m_translatorQt = new QTranslator();
m_translatorQt->load("qt_de"/* + QLocale::system().name()*/, QLibraryInfo::location(QLibraryInfo::TranslationsPath));
m_translatorQt->load("qt_" + QLocale::system().name(), QLibraryInfo::location(QLibraryInfo::TranslationsPath));
installTranslator(m_translatorQt);
m_translatorApp = new QTranslator();
m_translatorApp->load("tr_de", "translations");// + QLocale::system().name());
m_translatorApp->load("tr_" + QLocale::system().name(), "translations");
installTranslator(m_translatorApp);

// Parse command line
Expand Down

0 comments on commit dac1ed1

Please sign in to comment.