File indexing completed on 2025-01-12 12:23:56
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 extern "C" Q_DECL_EXPORT void print_strings() 0013 { 0014 QTextStream output(stdout); 0015 0016 output << QCoreApplication::translate("testcontext", "test string") << ":"; 0017 output << QCoreApplication::translate("testcontext", "test plural %n", 0, 5) << '\n'; 0018 }