Fixed translation of "Projects"

Reviewed-by: dt
This commit is contained in:
Robert Loehning
2010-06-16 17:30:18 +02:00
parent 16081c105b
commit 77558abc32
2 changed files with 6 additions and 2 deletions

View File

@@ -37,6 +37,7 @@
#include <projectexplorer/environment.h> #include <projectexplorer/environment.h>
#include <qtconcurrent/QtConcurrentTools> #include <qtconcurrent/QtConcurrentTools>
#include <QtCore/QtConcurrentRun> #include <QtCore/QtConcurrentRun>
#include <QtCore/QCoreApplication>
#include <QtCore/QSettings> #include <QtCore/QSettings>
#include <QtGui/QFormLayout> #include <QtGui/QFormLayout>
#include <QtGui/QBoxLayout> #include <QtGui/QBoxLayout>
@@ -255,7 +256,8 @@ QString CMakeSettingsPage::category() const
QString CMakeSettingsPage::displayCategory() 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 QIcon CMakeSettingsPage::categoryIcon() const

View File

@@ -36,6 +36,7 @@
#include <coreplugin/filemanager.h> #include <coreplugin/filemanager.h>
#include <QtGui/QLabel> #include <QtGui/QLabel>
#include <QtCore/QCoreApplication>
namespace ProjectExplorer { namespace ProjectExplorer {
namespace Internal { namespace Internal {
@@ -136,7 +137,8 @@ QString ProjectExplorerSettingsPage::category() const
QString ProjectExplorerSettingsPage::displayCategory() 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 QIcon ProjectExplorerSettingsPage::categoryIcon() const