aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/projectexplorerconstants.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-01-13 11:03:09 +0100
committerhjk <hjk@qt.io>2023-01-13 12:00:17 +0000
commite7c536011f1f66e702b7191848c5e728ae6e50fe (patch)
tree58ff5789a7f0a65d3a760ef920df7ada7690a2ad /src/plugins/projectexplorer/projectexplorerconstants.cpp
parenteab76c5007c1d4aba8ee72f3493cc2fa6c292378 (diff)
Prefix Tr::tr contexts with ::
To make outliers better visible in Linguist Change-Id: Ic35ea2a858b7e3576d9a416fb494fddb616eaaa1 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/projectexplorerconstants.cpp')
-rw-r--r--src/plugins/projectexplorer/projectexplorerconstants.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/projectexplorerconstants.cpp b/src/plugins/projectexplorer/projectexplorerconstants.cpp
index 39f4a2cfc8..804a175ff6 100644
--- a/src/plugins/projectexplorer/projectexplorerconstants.cpp
+++ b/src/plugins/projectexplorer/projectexplorerconstants.cpp
@@ -13,19 +13,19 @@ namespace Constants {
QString msgAutoDetected()
{
- return QCoreApplication::translate("ProjectExplorer", "Auto-detected");
+ return QCoreApplication::translate("::ProjectExplorer", "Auto-detected");
}
QString msgAutoDetectedToolTip()
{
- return QCoreApplication::translate("ProjectExplorer",
+ return QCoreApplication::translate("::ProjectExplorer",
"Automatically managed by %1 or the installer.")
.arg(Core::ICore::ideDisplayName());
}
QString msgManual()
{
- return QCoreApplication::translate("ProjectExplorer", "Manual");
+ return QCoreApplication::translate("::ProjectExplorer", "Manual");
}
} // namespace Constants