Qt/translations

From Attie's Wiki
(Difference between revisions)
Jump to: navigation, search
m (Installing translations)
m (Installing translations)
Line 36: Line 36:
  
 
==Installing translations==
 
==Installing translations==
Load the translation file '''before''' displaying any translated windows:
+
Load the translation file ''before'' loading or displaying any translated windows:
 
<source lang="cpp">
 
<source lang="cpp">
 +
QApplication app(argc, argv);
 +
QTranslator translator;
 +
MainWindow *main;
 +
 
if (!translator.load(QString("myApp_") + lang + ".qm")) {
 
if (!translator.load(QString("myApp_") + lang + ".qm")) {
 
qDebug("!!! translator.load -> FALSE!!! \n");
 
qDebug("!!! translator.load -> FALSE!!! \n");

Revision as of 16:38, 11 June 2012

Indicating what to translate

Include QTranslator:

#include <QTranslator>

and wrap any strings with the QApplication::translate() or the QObject::tr() function:

QString message = app->translate("Message displayed while the system is loading", "Loading, Please Wait...");

Providing the translations

First, add each language file to the TRANSLATIONS variable:

TRANSLATIONS = myApp_en.ts \
               myApp_fr.ts


Run lupdate on the project:

lupdate myApp.pro


Provide the translations:

linguist *.ts


Release the translations:

lrelease myApp.pro

Installing translations

Load the translation file before loading or displaying any translated windows:

QApplication app(argc, argv);
QTranslator translator;
MainWindow *main;
 
if (!translator.load(QString("myApp_") + lang + ".qm")) {
	qDebug("!!! translator.load -> FALSE!!! \n");
} else {
	app->installTranslator(&translator);
}
 
main = new MainWindow();
Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox