aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/projectexplorerconstants.cpp
blob: 0b1772c9cd57d4edf37f90a86c82791b19019382 (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
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "projectexplorerconstants.h"

#include "projectexplorertr.h"

#include <QGuiApplication>

namespace ProjectExplorer {
namespace Constants {

QString msgAutoDetected()
{
    return Tr::tr("Auto-detected");
}

QString msgAutoDetectedToolTip()
{
    return Tr::tr("Automatically managed by %1 or the installer.")
        .arg(QGuiApplication::applicationDisplayName());
}

QString msgManual()
{
    return Tr::tr("Manual");
}

} // namespace Constants
} // namespace ProjectExplorer