File indexing completed on 2024-04-14 14:17:46

0001 /*
0002     SPDX-FileCopyrightText: 2015 Alex Merry <alex.merry@kde.org>
0003 
0004     SPDX-License-Identifier: BSD-3-Clause
0005 */
0006 
0007 #include <QCoreApplication>
0008 #include <QTextStream>
0009 
0010 #include <stdio.h>
0011 
0012 int main(int argc, char** argv)
0013 {
0014     QCoreApplication app(argc, argv);
0015 
0016     QTextStream output(stdout);
0017 
0018     output << QCoreApplication::translate("testcontext", "test string") << ":";
0019     output << QCoreApplication::translate("testcontext", "test plural %n", 0, 5) << '\n';
0020 
0021     return 0;
0022 }