/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ function basic() { return qsTr("hello") } function basic2() { return qsTranslate("CustomContext", "goodbye") } function basic3() { if (1) return qsTr("hello") return ""; } function disambiguation() { return qsTr("hi", "informal 'hello'") } function disambiguation2() { return qsTranslate("CustomContext", "see ya", "informal 'goodbye'") } function disambiguation3() { if (1) return qsTr("hi", "informal 'hello'") return ""; } function noop() { var _noop = QT_TR_NOOP("hello") return qsTr(_noop) } function noop2() { var _noop2 = QT_TRANSLATE_NOOP("CustomContext", "goodbye") return qsTranslate("CustomContext", _noop2) } function singular() { return qsTr("%n duck(s)", "", 1) } function singular2() { if (1) return qsTr("%n duck(s)", "", 1) return ""; } function plural() { return qsTr("%n duck(s)", "", 2) } function plural2() { if (1) return qsTr("%n duck(s)", "", 2) return ""; }