// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #include #include #include int main(int argc, char **argv) { QApplication app(argc, argv); QTranslator translator; translator.load("whitespace"); app.installTranslator(&translator); QObject::tr("\nnewline at the start"); QObject::tr("newline at the end\n"); QObject::tr("newline and space at the end\n "); QObject::tr("space and newline at the end \n"); QObject::tr("\tTab at the start and newline at the end\n"); QObject::tr("\n\tnewline and tab at the start"); QObject::tr(" \tspace and tab at the start"); QObject::tr(" space_first"); QObject::tr("space_last "); QObject::tr("carriage return and line feed last\r\n"); return app.exec(); }