The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
715 B
28 lines
715 B
#include <QCoreApplication> |
|
#include <QtGlobal> |
|
#include <QString> |
|
#include <QTranslator> |
|
#include <QLocale> |
|
#include <QLibraryInfo> |
|
#include <QDebug> |
|
|
|
int main(int argc, char **argv) { |
|
QCoreApplication app(argc, argv); |
|
|
|
QTranslator qtTranslator; |
|
qtTranslator.load("qt_" + QLocale::system().name(), |
|
QLibraryInfo::location(QLibraryInfo::TranslationsPath)); |
|
app.installTranslator(&qtTranslator); |
|
|
|
QTranslator myappTranslator; |
|
if(!myappTranslator.load("qt5core_fr") ) |
|
return 1; |
|
|
|
app.installTranslator(&myappTranslator); |
|
|
|
qDebug() << QObject::tr("Translate me!"); |
|
// Don't actually start the main loop so this |
|
// can be run as a unit test. |
|
//return app.exec(); |
|
return 0; |
|
}
|
|
|