L10n: tr()-Fixes.

This commit is contained in:
Friedemann Kleint
2011-03-01 17:07:15 +01:00
parent fbdfb3acae
commit ad21b4859a
7 changed files with 10 additions and 9 deletions

View File

@@ -181,7 +181,7 @@ QString DebuggingHelperOptionPage::id() const
QString DebuggingHelperOptionPage::displayName() const
{
return tr("Debugging Helper");
return QCoreApplication::translate("Debugger", "Debugging Helper");
}
QString DebuggingHelperOptionPage::category() const
@@ -215,7 +215,8 @@ QWidget *DebuggingHelperOptionPage::createPage(QWidget *parent)
m_ui.setupUi(w);
m_ui.dumperLocationChooser->setExpectedKind(Utils::PathChooser::Command);
m_ui.dumperLocationChooser->setPromptDialogTitle(tr("Choose DebuggingHelper Location"));
m_ui.dumperLocationChooser->setPromptDialogTitle(QCoreApplication::translate("Debugger",
"Choose DebuggingHelper Location"));
m_ui.dumperLocationChooser->setInitialBrowsePathBackup(
ICore::instance()->resourcePath() + "../../lib");