diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp b/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp
index 0ef46a5f647a25ba63ef2d19077b1c56435c5d9d..3a4cc432bbe6a425e1924f04c388a58d65b7d607 100644
--- a/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp
@@ -37,6 +37,7 @@
 #include <projectexplorer/environment.h>
 #include <qtconcurrent/QtConcurrentTools>
 #include <QtCore/QtConcurrentRun>
+#include <QtCore/QCoreApplication>
 #include <QtCore/QSettings>
 #include <QtGui/QFormLayout>
 #include <QtGui/QBoxLayout>
@@ -255,7 +256,8 @@ QString CMakeSettingsPage::category() const
 
 QString CMakeSettingsPage::displayCategory() const
 {
-    return tr(ProjectExplorer::Constants::PROJECTEXPLORER_SETTINGS_TR_CATEGORY);
+    return QCoreApplication::translate("ProjectExplorer",
+                                       ProjectExplorer::Constants::PROJECTEXPLORER_SETTINGS_TR_CATEGORY);
 }
 
 QIcon CMakeSettingsPage::categoryIcon() const
diff --git a/src/plugins/projectexplorer/projectexplorersettingspage.cpp b/src/plugins/projectexplorer/projectexplorersettingspage.cpp
index db70b96890a99f47ae3323d3b98cba70ad2ee670..806b9b4570c7c2968e2d9b8f757183bb6c2742d7 100644
--- a/src/plugins/projectexplorer/projectexplorersettingspage.cpp
+++ b/src/plugins/projectexplorer/projectexplorersettingspage.cpp
@@ -36,6 +36,7 @@
 #include <coreplugin/filemanager.h>
 
 #include <QtGui/QLabel>
+#include <QtCore/QCoreApplication>
 
 namespace ProjectExplorer {
 namespace Internal {
@@ -136,7 +137,8 @@ QString ProjectExplorerSettingsPage::category() const
 
 QString ProjectExplorerSettingsPage::displayCategory() const
 {
-    return tr(Constants::PROJECTEXPLORER_SETTINGS_TR_CATEGORY);
+    return QCoreApplication::translate("ProjectExplorer",
+                                       Constants::PROJECTEXPLORER_SETTINGS_TR_CATEGORY);
 }
 
 QIcon ProjectExplorerSettingsPage::categoryIcon() const