Add plugintr.h files to all plugins

Except FakeVim, which had it before.

for i in [a-eg-z]*/*.json ; do
    upper=${i##*/}
    upper=${upper/.json/}
    lower=${i%/*}
    trfile=$lower/${lower}tr.h

    cat << EOT > $lower/${lower}tr.h
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/

namespace $upper {

struct Tr
{
    Q_DECLARE_TR_FUNCTIONS($upper)
};

} // namespace $upper
EOT

    git add $trfile

    perl -pi -e "s/(${lower}_global.h)/\1\n    ${lower}tr.h/"  $lower/CMakeLists.txt

    perl -pi -e "s/(\"${lower}_global.h\",)/\1 \"${lower}tr.h\",/"  $lower/$lower.qbs

done

Change-Id: I15ebbaaa9443c57b391b9e143f592d8a0c9208a9
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
hjk
2022-06-22 10:12:01 +02:00
parent c7b724c4ca
commit 9e363c6421
129 changed files with 2757 additions and 28 deletions

View File

@@ -5,6 +5,7 @@ add_qtc_plugin(Android
addnewavddialog.ui addnewavddialog.ui
android.qrc android.qrc
android_global.h android_global.h
androidtr.h
androidavdmanager.cpp androidavdmanager.h androidavdmanager.cpp androidavdmanager.h
androidbuildapkstep.cpp androidbuildapkstep.h androidbuildapkstep.cpp androidbuildapkstep.h
androidconfigurations.cpp androidconfigurations.h androidconfigurations.cpp androidconfigurations.h

View File

@@ -18,7 +18,7 @@ Project {
Depends { name: "app_version_header" } Depends { name: "app_version_header" }
files: [ files: [
"android_global.h", "android_global.h", "androidtr.h",
"android.qrc", "android.qrc",
"addnewavddialog.ui", "addnewavddialog.ui",
"androidavdmanager.cpp", "androidavdmanager.cpp",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Android {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Android)
};
} // namespace Android

View File

@@ -5,6 +5,7 @@ add_qtc_plugin(AutoTest
SOURCES SOURCES
autotest.qrc autotest.qrc
autotest_global.h autotest_global.h
autotesttr.h
autotestconstants.h autotestconstants.h
autotesticons.h autotesticons.h
autotestplugin.cpp autotestplugin.h autotestplugin.cpp autotestplugin.h

View File

@@ -33,7 +33,7 @@ QtcPlugin {
files: [ files: [
"autotest.qrc", "autotest.qrc",
"autotesticons.h", "autotesticons.h",
"autotest_global.h", "autotest_global.h", "autotesttr.h",
"autotestconstants.h", "autotestconstants.h",
"autotestplugin.cpp", "autotestplugin.cpp",
"autotestplugin.h", "autotestplugin.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace AutoTest {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(AutoTest)
};
} // namespace AutoTest

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace AutotoolsProjectManager {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(AutotoolsProjectManager)
};
} // namespace AutotoolsProjectManager

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace BareMetal {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(BareMetal)
};
} // namespace BareMetal

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Bazaar {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Bazaar)
};
} // namespace Bazaar

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Beautifier {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Beautifier)
};
} // namespace Beautifier

View File

@@ -2,6 +2,7 @@ add_qtc_plugin(BinEditor
PLUGIN_DEPENDS Core TextEditor PLUGIN_DEPENDS Core TextEditor
SOURCES SOURCES
bineditor_global.h bineditor_global.h
bineditortr.h
bineditorconstants.h bineditorconstants.h
bineditorplugin.cpp bineditorplugin.h bineditorplugin.cpp bineditorplugin.h
bineditorservice.h bineditorservice.h

View File

@@ -11,7 +11,7 @@ QtcPlugin {
Depends { name: "TextEditor" } Depends { name: "TextEditor" }
files: [ files: [
"bineditor_global.h", "bineditor_global.h", "bineditortr.h",
"bineditorconstants.h", "bineditorconstants.h",
"bineditorwidget.cpp", "bineditorwidget.h", "bineditorwidget.cpp", "bineditorwidget.h",
"bineditorplugin.cpp", "bineditorplugin.h", "bineditorplugin.cpp", "bineditorplugin.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace BinEditor {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(BinEditor)
};
} // namespace BinEditor

View File

@@ -5,5 +5,6 @@ add_qtc_plugin(Bookmarks
bookmarkfilter.cpp bookmarkfilter.h bookmarkfilter.cpp bookmarkfilter.h
bookmarkmanager.cpp bookmarkmanager.h bookmarkmanager.cpp bookmarkmanager.h
bookmarks_global.h bookmarks_global.h
bookmarkstr.h
bookmarksplugin.cpp bookmarksplugin.h bookmarksplugin.cpp bookmarksplugin.h
) )

View File

@@ -17,7 +17,7 @@ QtcPlugin {
"bookmarkfilter.h", "bookmarkfilter.h",
"bookmarkmanager.cpp", "bookmarkmanager.cpp",
"bookmarkmanager.h", "bookmarkmanager.h",
"bookmarks_global.h", "bookmarks_global.h", "bookmarkstr.h",
"bookmarksplugin.cpp", "bookmarksplugin.cpp",
"bookmarksplugin.h", "bookmarksplugin.h",
] ]

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Bookmarks {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Bookmarks)
};
} // namespace Bookmarks

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Boot2Qt {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Boot2Qt)
};
} // namespace Boot2Qt

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace ClangCodeModel {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(ClangCodeModel)
};
} // namespace ClangCodeModel

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace ClangFormat {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(ClangFormat)
};
} // namespace ClangFormat

View File

@@ -22,6 +22,7 @@ add_qtc_plugin(ClangTools
clangtoolruncontrol.cpp clangtoolruncontrol.h clangtoolruncontrol.cpp clangtoolruncontrol.h
clangtoolrunner.cpp clangtoolrunner.h clangtoolrunner.cpp clangtoolrunner.h
clangtools_global.h clangtools_global.h
clangtoolstr.h
clangtoolsconstants.h clangtoolsconstants.h
clangtoolsdiagnostic.cpp clangtoolsdiagnostic.h clangtoolsdiagnostic.cpp clangtoolsdiagnostic.h
clangtoolsdiagnosticmodel.cpp clangtoolsdiagnosticmodel.h clangtoolsdiagnosticmodel.cpp clangtoolsdiagnosticmodel.h

View File

@@ -37,7 +37,7 @@ QtcPlugin {
"clangtoolruncontrol.h", "clangtoolruncontrol.h",
"clangtoolrunner.cpp", "clangtoolrunner.cpp",
"clangtoolrunner.h", "clangtoolrunner.h",
"clangtools_global.h", "clangtools_global.h", "clangtoolstr.h",
"clangtoolsconstants.h", "clangtoolsconstants.h",
"clangtoolsdiagnostic.cpp", "clangtoolsdiagnostic.cpp",
"clangtoolsdiagnostic.h", "clangtoolsdiagnostic.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace ClangTools {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(ClangTools)
};
} // namespace ClangTools

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace ClassView {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(ClassView)
};
} // namespace ClassView

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace ClearCase {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(ClearCase)
};
} // namespace ClearCase

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace CMakeProjectManager {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(CMakeProjectManager)
};
} // namespace CMakeProjectManager

37
src/plugins/coco/cocotr.h Normal file
View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Coco {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Coco)
};
} // namespace Coco

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace CompilationDatabaseProjectManager {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(CompilationDatabaseProjectManager)
};
} // namespace CompilationDatabaseProjectManager

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Conan {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Conan)
};
} // namespace Conan

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Core {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Core)
};
} // namespace Core

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace CodePaster {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(CodePaster)
};
} // namespace CodePaster

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Cppcheck {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Cppcheck)
};
} // namespace Cppcheck

View File

@@ -40,6 +40,7 @@ add_qtc_plugin(CppEditor
cppdoxygen.cpp cppdoxygen.h cppdoxygen.cpp cppdoxygen.h
cppeditor.qrc cppeditor.qrc
cppeditor_global.h cppeditor_global.h
cppeditortr.h
cppeditorconstants.h cppeditorconstants.h
cppeditordocument.cpp cppeditordocument.h cppeditordocument.cpp cppeditordocument.h
cppeditoroutline.cpp cppeditoroutline.h cppeditoroutline.cpp cppeditoroutline.h

View File

@@ -99,7 +99,7 @@ QtcPlugin {
"cppeditorwidget.cpp", "cppeditorwidget.cpp",
"cppeditorwidget.h", "cppeditorwidget.h",
"cppeditor.qrc", "cppeditor.qrc",
"cppeditor_global.h", "cppeditor_global.h", "cppeditortr.h",
"cppeditorconstants.h", "cppeditorconstants.h",
"cppeditordocument.cpp", "cppeditordocument.cpp",
"cppeditordocument.h", "cppeditordocument.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace CppEditor {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(CppEditor)
};
} // namespace CppEditor

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace CtfVisualizer {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(CtfVisualizer)
};
} // namespace CtfVisualizer

37
src/plugins/cvs/cvstr.h Normal file
View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace CVS {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(CVS)
};
} // namespace CVS

View File

@@ -29,6 +29,7 @@ add_qtc_plugin(Debugger
console/consoleview.cpp console/consoleview.h console/consoleview.cpp console/consoleview.h
debugger.qrc debugger.qrc
debugger_global.h debugger_global.h
debuggertr.h
debuggeractions.cpp debuggeractions.h debuggeractions.cpp debuggeractions.h
debuggerconstants.h debuggerconstants.h
debuggercore.h debuggercore.h

View File

@@ -38,7 +38,7 @@ Project {
"breakpoint.cpp", "breakpoint.h", "breakpoint.cpp", "breakpoint.h",
"commonoptionspage.cpp", "commonoptionspage.h", "commonoptionspage.cpp", "commonoptionspage.h",
"debugger.qrc", "debugger.qrc",
"debugger_global.h", "debugger_global.h", "debuggertr.h",
"debuggeractions.cpp", "debuggeractions.h", "debuggeractions.cpp", "debuggeractions.h",
"debuggerconstants.h", "debuggerconstants.h",
"debuggericons.h", "debuggericons.cpp", "debuggericons.h", "debuggericons.cpp",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Debugger {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Debugger)
};
} // namespace Debugger

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Designer {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Designer)
};
} // namespace Designer

View File

@@ -5,6 +5,7 @@ add_qtc_plugin(DiffEditor
diffeditor.cpp diffeditor.h diffeditor.cpp diffeditor.h
diffeditor.qrc diffeditor.qrc
diffeditor_global.h diffeditor_global.h
diffeditortr.h
diffeditorconstants.h diffeditorconstants.h
diffeditorcontroller.cpp diffeditorcontroller.h diffeditorcontroller.cpp diffeditorcontroller.h
diffeditordocument.cpp diffeditordocument.h diffeditordocument.cpp diffeditordocument.h

View File

@@ -19,7 +19,7 @@ QtcPlugin {
"diffeditor.cpp", "diffeditor.cpp",
"diffeditor.h", "diffeditor.h",
"diffeditor.qrc", "diffeditor.qrc",
"diffeditor_global.h", "diffeditor_global.h", "diffeditortr.h",
"diffeditorconstants.h", "diffeditorconstants.h",
"diffeditoricons.h", "diffeditoricons.h",
"diffeditorcontroller.cpp", "diffeditorcontroller.cpp",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace DiffEditor {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(DiffEditor)
};
} // namespace DiffEditor

View File

@@ -3,6 +3,7 @@ add_qtc_plugin(Docker
PLUGIN_DEPENDS Core ProjectExplorer QtSupport PLUGIN_DEPENDS Core ProjectExplorer QtSupport
SOURCES SOURCES
docker_global.h docker_global.h
dockertr.h
dockerapi.cpp dockerapi.h dockerapi.cpp dockerapi.h
dockerconstants.h dockerconstants.h
dockerdevice.cpp dockerdevice.h dockerdevice.cpp dockerdevice.h

View File

@@ -11,7 +11,7 @@ QtcPlugin {
Depends { name: "QtSupport" } Depends { name: "QtSupport" }
files: [ files: [
"docker_global.h", "docker_global.h", "dockertr.h",
"dockerapi.cpp", "dockerapi.cpp",
"dockerapi.h", "dockerapi.h",
"dockerconstants.h", "dockerconstants.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Docker {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Docker)
};
} // namespace Docker

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace EmacsKeys {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(EmacsKeys)
};
} // namespace EmacsKeys

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace GenericProjectManager {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(GenericProjectManager)
};
} // namespace GenericProjectManager

View File

@@ -20,6 +20,7 @@ add_qtc_plugin(Git
gerrit/gerritserver.cpp gerrit/gerritserver.h gerrit/gerritserver.cpp gerrit/gerritserver.h
git.qrc git.qrc
git_global.h git_global.h
gittr.h
gitclient.cpp gitclient.h gitclient.cpp gitclient.h
gitconstants.h gitconstants.h
giteditor.cpp giteditor.h giteditor.cpp giteditor.h

View File

@@ -32,7 +32,7 @@ QtcPlugin {
"commitdata.cpp", "commitdata.cpp",
"commitdata.h", "commitdata.h",
"git.qrc", "git.qrc",
"git_global.h", "git_global.h", "gittr.h",
"gitclient.cpp", "gitclient.cpp",
"gitclient.h", "gitclient.h",
"gitconstants.h", "gitconstants.h",

37
src/plugins/git/gittr.h Normal file
View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Git {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Git)
};
} // namespace Git

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace GitLab {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(GitLab)
};
} // namespace GitLab

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace GLSLEditor {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(GLSLEditor)
};
} // namespace GLSLEditor

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace HelloWorld {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(HelloWorld)
};
} // namespace HelloWorld

37
src/plugins/help/helptr.h Normal file
View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Help {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Help)
};
} // namespace Help

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace ImageViewer {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(ImageViewer)
};
} // namespace ImageViewer

View File

@@ -13,6 +13,7 @@ add_qtc_plugin(IncrediBuild
ibconsolebuildstep.cpp ibconsolebuildstep.cpp
ibconsolebuildstep.h ibconsolebuildstep.h
incredibuild_global.h incredibuild_global.h
incredibuildtr.h
incredibuildconstants.h incredibuildconstants.h
incredibuildplugin.cpp incredibuildplugin.cpp
incredibuildplugin.h incredibuildplugin.h

View File

@@ -19,7 +19,7 @@ QtcPlugin {
"commandbuilderaspect.h", "commandbuilderaspect.h",
"ibconsolebuildstep.cpp", "ibconsolebuildstep.cpp",
"ibconsolebuildstep.h", "ibconsolebuildstep.h",
"incredibuild_global.h", "incredibuild_global.h", "incredibuildtr.h",
"incredibuildconstants.h", "incredibuildconstants.h",
"incredibuildplugin.cpp", "incredibuildplugin.cpp",
"incredibuildplugin.h", "incredibuildplugin.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace IncrediBuild {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(IncrediBuild)
};
} // namespace IncrediBuild

37
src/plugins/ios/iostr.h Normal file
View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Ios {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Ios)
};
} // namespace Ios

View File

@@ -20,6 +20,7 @@ add_qtc_plugin(LanguageClient
languageclientsymbolsupport.cpp languageclientsymbolsupport.h languageclientsymbolsupport.cpp languageclientsymbolsupport.h
languageclientutils.cpp languageclientutils.h languageclientutils.cpp languageclientutils.h
languageclient_global.h languageclient_global.h
languageclienttr.h
locatorfilter.cpp locatorfilter.h locatorfilter.cpp locatorfilter.h
lspinspector.cpp lspinspector.h lspinspector.cpp lspinspector.h
progressmanager.cpp progressmanager.h progressmanager.cpp progressmanager.h

View File

@@ -29,7 +29,7 @@ QtcPlugin {
"dynamiccapabilities.cpp", "dynamiccapabilities.cpp",
"dynamiccapabilities.h", "dynamiccapabilities.h",
"languageclient.qrc", "languageclient.qrc",
"languageclient_global.h", "languageclient_global.h", "languageclienttr.h",
"languageclientformatter.cpp", "languageclientformatter.cpp",
"languageclientformatter.h", "languageclientformatter.h",
"languageclienthoverhandler.cpp", "languageclienthoverhandler.cpp",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace LanguageClient {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(LanguageClient)
};
} // namespace LanguageClient

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Macros {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Macros)
};
} // namespace Macros

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Marketplace {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Marketplace)
};
} // namespace Marketplace

View File

@@ -5,6 +5,7 @@ add_qtc_plugin(McuSupport
mcukitinformation.cpp mcukitinformation.h mcukitinformation.cpp mcukitinformation.h
mcusupport.qrc mcusupport.qrc
mcusupport_global.h mcusupport_global.h
mcusupporttr.h
mcusupportconstants.h mcusupportconstants.h
mcusupportdevice.cpp mcusupportdevice.h mcusupportdevice.cpp mcusupportdevice.h
mcusupportoptions.cpp mcusupportoptions.h mcuabstractpackage.h mcusupportoptions.cpp mcusupportoptions.h mcuabstractpackage.h

View File

@@ -28,7 +28,7 @@ QtcPlugin {
"mcutargetfactorylegacy.cpp", "mcutargetfactorylegacy.cpp",
"mcutargetfactorylegacy.h", "mcutargetfactorylegacy.h",
"mcusupport.qrc", "mcusupport.qrc",
"mcusupport_global.h", "mcusupport_global.h", "mcusupporttr.h",
"mcusupportconstants.h", "mcusupportconstants.h",
"mcusupportdevice.cpp", "mcusupportdevice.cpp",
"mcusupportdevice.h", "mcusupportdevice.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace McuSupport {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(McuSupport)
};
} // namespace McuSupport

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Mercurial {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Mercurial)
};
} // namespace Mercurial

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace MesonProjectManager {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(MesonProjectManager)
};
} // namespace MesonProjectManager

View File

@@ -16,6 +16,7 @@ add_qtc_plugin(ModelEditor
modeleditor.cpp modeleditor.h modeleditor.cpp modeleditor.h
modeleditor_constants.h modeleditor_constants.h
modeleditor_global.h modeleditor_global.h
modeleditortr.h
modeleditor_plugin.cpp modeleditor_plugin.h modeleditor_plugin.cpp modeleditor_plugin.h
modeleditorfactory.cpp modeleditorfactory.h modeleditorfactory.cpp modeleditorfactory.h
modelindexer.cpp modelindexer.h modelindexer.cpp modelindexer.h

View File

@@ -51,7 +51,7 @@ QtcPlugin {
"modeleditor.cpp", "modeleditor.cpp",
"modeleditorfactory.cpp", "modeleditorfactory.cpp",
"modeleditorfactory.h", "modeleditorfactory.h",
"modeleditor_global.h", "modeleditor_global.h", "modeleditortr.h",
"modeleditor.h", "modeleditor.h",
"modeleditor_plugin.cpp", "modeleditor_plugin.cpp",
"modeleditor_plugin.h", "modeleditor_plugin.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace ModelEditor {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(ModelEditor)
};
} // namespace ModelEditor

37
src/plugins/nim/nimtr.h Normal file
View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Nim {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Nim)
};
} // namespace Nim

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Perforce {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Perforce)
};
} // namespace Perforce

View File

@@ -29,6 +29,7 @@ set(PERFPROFILER_CPP_SOURCES
perfprofilertracemanager.cpp perfprofilertracemanager.h perfprofilertracemanager.cpp perfprofilertracemanager.h
perfprofilertraceview.cpp perfprofilertraceview.h perfprofilertraceview.cpp perfprofilertraceview.h
perfprofiler_global.h perfprofiler_global.h
perfprofilertr.h
perfresourcecounter.cpp perfresourcecounter.h perfresourcecounter.cpp perfresourcecounter.h
perfrunconfigurationaspect.cpp perfrunconfigurationaspect.h perfrunconfigurationaspect.cpp perfrunconfigurationaspect.h
perfsettings.cpp perfsettings.h perfsettings.cpp perfsettings.h

View File

@@ -30,7 +30,7 @@ QtcPlugin {
"perfloaddialog.ui", "perfloaddialog.ui",
"perfoptionspage.cpp", "perfoptionspage.cpp",
"perfoptionspage.h", "perfoptionspage.h",
"perfprofiler_global.h", "perfprofiler_global.h", "perfprofilertr.h",
"perfprofilerconstants.h", "perfprofilerconstants.h",
"perfprofilerplugin.cpp", "perfprofilerplugin.cpp",
"perfprofilerplugin.h", "perfprofilerplugin.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace PerfProfiler {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(PerfProfiler)
};
} // namespace PerfProfiler

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace ProjectExplorer {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(ProjectExplorer)
};
} // namespace ProjectExplorer

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace Python {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(Python)
};
} // namespace Python

View File

@@ -23,6 +23,7 @@ add_qtc_plugin(QbsProjectManager
qbsprojectimporter.cpp qbsprojectimporter.h qbsprojectimporter.cpp qbsprojectimporter.h
qbsprojectmanager.qrc qbsprojectmanager.qrc
qbsprojectmanager_global.h qbsprojectmanager_global.h
qbsprojectmanagertr.h
qbsprojectmanagerconstants.h qbsprojectmanagerconstants.h
qbsprojectmanagerplugin.cpp qbsprojectmanagerplugin.h qbsprojectmanagerplugin.cpp qbsprojectmanagerplugin.h
qbsprojectparser.cpp qbsprojectparser.h qbsprojectparser.cpp qbsprojectparser.h

View File

@@ -52,7 +52,7 @@ QtcPlugin {
"qbsprojectimporter.cpp", "qbsprojectimporter.cpp",
"qbsprojectimporter.h", "qbsprojectimporter.h",
"qbsprojectmanager.qrc", "qbsprojectmanager.qrc",
"qbsprojectmanager_global.h", "qbsprojectmanager_global.h", "qbsprojectmanagertr.h",
"qbsprojectmanagerconstants.h", "qbsprojectmanagerconstants.h",
"qbsprojectmanagerplugin.cpp", "qbsprojectmanagerplugin.cpp",
"qbsprojectmanagerplugin.h", "qbsprojectmanagerplugin.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace QbsProjectManager {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(QbsProjectManager)
};
} // namespace QbsProjectManager

View File

@@ -32,6 +32,7 @@ add_qtc_plugin(QmakeProjectManager
qmakeprojectimporter.cpp qmakeprojectimporter.h qmakeprojectimporter.cpp qmakeprojectimporter.h
qmakeprojectmanager.qrc qmakeprojectmanager.qrc
qmakeprojectmanager_global.h qmakeprojectmanager_global.h
qmakeprojectmanagertr.h
qmakeprojectmanagerconstants.h qmakeprojectmanagerconstants.h
qmakeprojectmanagerplugin.cpp qmakeprojectmanagerplugin.h qmakeprojectmanagerplugin.cpp qmakeprojectmanagerplugin.h
qmakesettings.cpp qmakesettings.h qmakesettings.cpp qmakesettings.h

View File

@@ -41,7 +41,7 @@ Project {
"qmakenodetreebuilder.cpp", "qmakenodetreebuilder.h", "qmakenodetreebuilder.cpp", "qmakenodetreebuilder.h",
"qmakeproject.cpp", "qmakeproject.h", "qmakeproject.cpp", "qmakeproject.h",
"qmakeprojectmanager.qrc", "qmakeprojectmanager.qrc",
"qmakeprojectmanager_global.h", "qmakeprojectmanager_global.h", "qmakeprojectmanagertr.h",
"qmakeprojectmanagerconstants.h", "qmakeprojectmanagerconstants.h",
"qmakeprojectmanagerplugin.cpp", "qmakeprojectmanagerplugin.h", "qmakeprojectmanagerplugin.cpp", "qmakeprojectmanagerplugin.h",
] ]

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace QmakeProjectManager {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(QmakeProjectManager)
};
} // namespace QmakeProjectManager

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace QmlDesigner {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(QmlDesigner)
};
} // namespace QmlDesigner

View File

@@ -10,6 +10,7 @@ add_qtc_plugin(QmlJSEditor
qmljseditingsettingspage.cpp qmljseditingsettingspage.h qmljseditingsettingspage.ui qmljseditingsettingspage.cpp qmljseditingsettingspage.h qmljseditingsettingspage.ui
qmljseditor.cpp qmljseditor.h qmljseditor.cpp qmljseditor.h
qmljseditor_global.h qmljseditor_global.h
qmljseditortr.h
qmljseditorconstants.h qmljseditorconstants.h
qmljseditordocument.cpp qmljseditordocument.h qmljseditordocument_p.h qmljseditordocument.cpp qmljseditordocument.h qmljseditordocument_p.h
qmljseditorplugin.cpp qmljseditorplugin.h qmljseditorplugin.cpp qmljseditorplugin.h

View File

@@ -31,7 +31,7 @@ QtcPlugin {
"qmljseditingsettingspage.ui", "qmljseditingsettingspage.ui",
"qmljseditor.cpp", "qmljseditor.cpp",
"qmljseditor.h", "qmljseditor.h",
"qmljseditor_global.h", "qmljseditor_global.h", "qmljseditortr.h",
"qmljseditorconstants.h", "qmljseditorconstants.h",
"qmljseditordocument.cpp", "qmljseditordocument.cpp",
"qmljseditordocument.h", "qmljseditordocument.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace QmlJSEditor {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(QmlJSEditor)
};
} // namespace QmlJSEditor

View File

@@ -19,6 +19,7 @@ add_qtc_plugin(QmlJSTools
qmljssemanticinfo.cpp qmljssemanticinfo.h qmljssemanticinfo.cpp qmljssemanticinfo.h
qmljstools.qrc qmljstools.qrc
qmljstools_global.h qmljstools_global.h
qmljstoolstr.h
qmljstoolsconstants.h qmljstoolsconstants.h
qmljstoolsplugin.cpp qmljstoolsplugin.h qmljstoolsplugin.cpp qmljstoolsplugin.h
qmljstoolssettings.cpp qmljstoolssettings.h qmljstoolssettings.cpp qmljstoolssettings.h

View File

@@ -47,7 +47,7 @@ QtcPlugin {
"qmljsrefactoringchanges.h", "qmljsrefactoringchanges.h",
"qmljssemanticinfo.cpp", "qmljssemanticinfo.cpp",
"qmljssemanticinfo.h", "qmljssemanticinfo.h",
"qmljstools_global.h", "qmljstools_global.h", "qmljstoolstr.h",
"qmljstoolsconstants.h", "qmljstoolsconstants.h",
"qmljstoolsplugin.cpp", "qmljstoolsplugin.cpp",
"qmljstoolsplugin.h", "qmljstoolsplugin.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace QmlJSTools {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(QmlJSTools)
};
} // namespace QmlJSTools

View File

@@ -13,6 +13,7 @@ add_qtc_plugin(QmlPreview
qmlpreviewruncontrol.cpp qmlpreviewruncontrol.h qmlpreviewruncontrol.cpp qmlpreviewruncontrol.h
qmldebugtranslationclient.cpp qmldebugtranslationclient.h qmldebugtranslationclient.cpp qmldebugtranslationclient.h
qmlpreview_global.h qmlpreview_global.h
qmlpreviewtr.h
) )
extend_qtc_plugin(QmlPreview extend_qtc_plugin(QmlPreview

View File

@@ -30,7 +30,7 @@ QtcPlugin {
"qmlpreviewconnectionmanager.h", "qmlpreviewconnectionmanager.h",
"qmlpreviewfileontargetfinder.cpp", "qmlpreviewfileontargetfinder.cpp",
"qmlpreviewfileontargetfinder.h", "qmlpreviewfileontargetfinder.h",
"qmlpreview_global.h", "qmlpreview_global.h", "qmlpreviewtr.h",
"qmlpreviewplugin.cpp", "qmlpreviewplugin.cpp",
"qmlpreviewplugin.h", "qmlpreviewplugin.h",
"qmlpreviewruncontrol.cpp", "qmlpreviewruncontrol.cpp",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace QmlPreview {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(QmlPreview)
};
} // namespace QmlPreview

View File

@@ -38,6 +38,7 @@ set(QMLPROFILER_CPP_SOURCES
qmleventtype.cpp qmleventtype.h qmleventtype.cpp qmleventtype.h
qmlnote.cpp qmlnote.h qmlnote.cpp qmlnote.h
qmlprofiler_global.h qmlprofiler_global.h
qmlprofilertr.h
qmlprofileractions.cpp qmlprofileractions.h qmlprofileractions.cpp qmlprofileractions.h
qmlprofileranimationsmodel.cpp qmlprofileranimationsmodel.h qmlprofileranimationsmodel.cpp qmlprofileranimationsmodel.h
qmlprofilerattachdialog.cpp qmlprofilerattachdialog.h qmlprofilerattachdialog.cpp qmlprofilerattachdialog.h

View File

@@ -30,7 +30,7 @@ QtcPlugin {
"qmleventlocation.cpp", "qmleventlocation.h", "qmleventlocation.cpp", "qmleventlocation.h",
"qmleventtype.cpp", "qmleventtype.h", "qmleventtype.cpp", "qmleventtype.h",
"qmlnote.cpp", "qmlnote.h", "qmlnote.cpp", "qmlnote.h",
"qmlprofiler_global.h", "qmlprofiler_global.h", "qmlprofilertr.h",
"qmlprofileractions.h", "qmlprofileractions.cpp", "qmlprofileractions.h", "qmlprofileractions.cpp",
"qmlprofileranimationsmodel.h", "qmlprofileranimationsmodel.cpp", "qmlprofileranimationsmodel.h", "qmlprofileranimationsmodel.cpp",
"qmlprofilerattachdialog.cpp", "qmlprofilerattachdialog.h", "qmlprofilerattachdialog.cpp", "qmlprofilerattachdialog.h",

View File

@@ -0,0 +1,37 @@
/****************************************************************************
**
** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** 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.
**
****************************************************************************/
#pragma once
#include <QCoreApplication>
namespace QmlProfiler {
struct Tr
{
Q_DECLARE_TR_FUNCTIONS(QmlProfiler)
};
} // namespace QmlProfiler

View File

@@ -26,6 +26,7 @@ add_qtc_plugin(QmlProjectManager
qmlproject.qrc qmlproject.qrc
qmlprojectconstants.h qmlprojectconstants.h
qmlprojectmanager_global.h qmlprojectmanager_global.h
qmlprojectmanagertr.h
qmlprojectmanagerconstants.h qmlprojectmanagerconstants.h
qmlprojectnodes.cpp qmlprojectnodes.h qmlprojectnodes.cpp qmlprojectnodes.h
qmlprojectplugin.cpp qmlprojectplugin.h qmlprojectplugin.cpp qmlprojectplugin.h

Some files were not shown because too many files have changed in this diff Show More