summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/linguist/test_add_translation_macro/myi18nobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/cmake/linguist/test_add_translation_macro/myi18nobject.cpp')
-rw-r--r--tests/auto/cmake/linguist/test_add_translation_macro/myi18nobject.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/auto/cmake/linguist/test_add_translation_macro/myi18nobject.cpp b/tests/auto/cmake/linguist/test_add_translation_macro/myi18nobject.cpp
new file mode 100644
index 000000000..ed518ab5f
--- /dev/null
+++ b/tests/auto/cmake/linguist/test_add_translation_macro/myi18nobject.cpp
@@ -0,0 +1,28 @@
+// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly <stephen.kelly@kdab.com>
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include <QCoreApplication>
+#include <QLocale>
+#include <QTranslator>
+
+#include "some_include.h"
+
+int main(int argc, char **argv)
+{
+ QCoreApplication app(argc, argv);
+ QTranslator *myappTranslator = new QTranslator;
+
+ QLocale::setDefault(QLocale("de"));
+
+ if (!myappTranslator->load(QLocale(), "myobject", "_", qApp->applicationDirPath()))
+ qFatal("Could not load translation file!");
+
+ app.installTranslator(myappTranslator);
+
+ QString text = QCoreApplication::translate("main", "Hello, world!");
+ if (text != QLatin1String("Hallo, Welt!"))
+ qFatal("Translation not found!");
+
+ std::fprintf(stdout, "%s\n", qPrintable(text));
+ return 0;
+}