diff options
Diffstat (limited to 'tests/ECMPoQmToolsTest/tr_test.cpp')
-rw-r--r-- | tests/ECMPoQmToolsTest/tr_test.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/ECMPoQmToolsTest/tr_test.cpp b/tests/ECMPoQmToolsTest/tr_test.cpp deleted file mode 100644 index be5d3427..00000000 --- a/tests/ECMPoQmToolsTest/tr_test.cpp +++ /dev/null @@ -1,16 +0,0 @@ -#include <QCoreApplication> -#include <QTextStream> - -#include <stdio.h> - -int main(int argc, char** argv) -{ - QCoreApplication app(argc, argv); - - QTextStream output(stdout); - - output << QCoreApplication::translate("testcontext", "test string") << ":"; - output << QCoreApplication::translate("testcontext", "test plural %n", 0, 5) << '\n'; - - return 0; -} |