aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/projectexplorerconstants.cpp
blob: 27a45a1b9aa72bd921a35bbcdacf278f8b34a2ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "projectexplorerconstants.h"

#include <coreplugin/icore.h>

#include <QCoreApplication>
#include <QString>

namespace ProjectExplorer {
namespace Constants {

QString msgAutoDetected()
{
    return QCoreApplication::translate("ProjectExplorer", "Auto-detected");
}

QString msgAutoDetectedToolTip()
{
    return QCoreApplication::translate("ProjectExplorer",
                                       "Automatically managed by %1 or the installer.")
        .arg(Core::ICore::ideDisplayName());
}

QString msgManual()
{
    return QCoreApplication::translate("ProjectExplorer", "Manual");
}

} // namespace Constants
} // namespace ProjectExplorer