Commit 763530cc authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: Remove the use of the Qt translations

parent 82153a98
...@@ -422,33 +422,6 @@ static void *Thread( void *obj ) ...@@ -422,33 +422,6 @@ static void *Thread( void *obj )
/* Explain to the core how to show a dialog :D */ /* Explain to the core how to show a dialog :D */
p_intf->pf_show_dialog = ShowDialog; p_intf->pf_show_dialog = ShowDialog;
#ifdef ENABLE_NLS
// Translation - get locale
# if defined (WIN32) || defined (__APPLE__)
char* psz_tmp = config_GetPsz( p_intf, "language" );
QString lang = qfu( psz_tmp );
free( psz_tmp);
if (lang == "auto")
lang = QLocale::system().name();
# else
QString lang = QLocale::system().name();
# endif
// Translations for qt's own dialogs
QTranslator qtTranslator( 0 );
// Let's find the right path for the translation file
#if !defined( WIN32 )
QString path = QString( QT4LOCALEDIR );
#else
QString path = QString( QString(config_GetDataDir()) + DIR_SEP +
"locale" + DIR_SEP + "qt4" + DIR_SEP );
#endif
// files depending on locale
bool b_loaded = qtTranslator.load( path + "qt_" + lang );
if (!b_loaded)
msg_Dbg( p_intf, "Error while initializing qt-specific localization" );
app.installTranslator( &qtTranslator );
#endif //ENABLE_NLS
/* Last settings */ /* Last settings */
app.setQuitOnLastWindowClosed( false ); app.setQuitOnLastWindowClosed( false );
...@@ -461,7 +434,6 @@ static void *Thread( void *obj ) ...@@ -461,7 +434,6 @@ static void *Thread( void *obj )
if( s_style.compare("") != 0 ) if( s_style.compare("") != 0 )
QApplication::setStyle( s_style ); QApplication::setStyle( s_style );
/* Launch */ /* Launch */
app.exec(); app.exec();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment