From f4adda8d665a0ff2231a05a8f05ef2e460a8f9f5 Mon Sep 17 00:00:00 2001
From: Leena Miettinen <riitta-leena.miettinen@nokia.com>
Date: Fri, 17 Sep 2010 11:03:43 +0200
Subject: [PATCH] UI text - fix capitalization

---
 src/libs/utils/debuggerlanguagechooser.cpp |  2 +-
 src/plugins/debugger/debuggerdialogs.cpp   |  2 +-
 src/plugins/debugger/debuggerengine.cpp    | 12 ++++++------
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/libs/utils/debuggerlanguagechooser.cpp b/src/libs/utils/debuggerlanguagechooser.cpp
index 92045ed0709..dd908e86bda 100644
--- a/src/libs/utils/debuggerlanguagechooser.cpp
+++ b/src/libs/utils/debuggerlanguagechooser.cpp
@@ -18,7 +18,7 @@ DebuggerLanguageChooser::DebuggerLanguageChooser(QWidget *parent) :
     connect(m_useQmlDebugger, SIGNAL(toggled(bool)),
             this, SLOT(useQmlDebuggerToggled(bool)));
 
-    m_debugServerPortLabel = new QLabel(tr("Debug Port:"), this);
+    m_debugServerPortLabel = new QLabel(tr("Debug port:"), this);
     m_debugServerPort = new QSpinBox(this);
     m_debugServerPort->setMinimum(1);
     m_debugServerPort->setMaximum(65535);
diff --git a/src/plugins/debugger/debuggerdialogs.cpp b/src/plugins/debugger/debuggerdialogs.cpp
index 7d63f1825e7..a5431e584bf 100644
--- a/src/plugins/debugger/debuggerdialogs.cpp
+++ b/src/plugins/debugger/debuggerdialogs.cpp
@@ -713,7 +713,7 @@ AddressDialog::AddressDialog(QWidget *parent) :
         m_lineEdit(new QLineEdit),
         m_box(new QDialogButtonBox(QDialogButtonBox::Ok|QDialogButtonBox::Cancel))
 {
-    setWindowTitle(tr("Select start address"));
+    setWindowTitle(tr("Select Start Address"));
     setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
     QHBoxLayout *hLayout = new QHBoxLayout;
     hLayout->addWidget(new QLabel(tr("Enter an address: ")));
diff --git a/src/plugins/debugger/debuggerengine.cpp b/src/plugins/debugger/debuggerengine.cpp
index bff0904e7f1..0df9936ee7d 100644
--- a/src/plugins/debugger/debuggerengine.cpp
+++ b/src/plugins/debugger/debuggerengine.cpp
@@ -1021,21 +1021,21 @@ void DebuggerEngine::showQtDumperLibraryWarning(const QString &details)
 {
     //QMessageBox dialog(d->m_mainWindow); // FIXME
     QMessageBox dialog;
-    QPushButton *qtPref = dialog.addButton(tr("Open Qt preferences"),
+    QPushButton *qtPref = dialog.addButton(tr("Open Qt4 Options"),
         QMessageBox::ActionRole);
-    QPushButton *helperOff = dialog.addButton(tr("Turn off helper usage"),
+    QPushButton *helperOff = dialog.addButton(tr("Turn off Helper Usage"),
         QMessageBox::ActionRole);
-    QPushButton *justContinue = dialog.addButton(tr("Continue anyway"),
+    QPushButton *justContinue = dialog.addButton(tr("Continue Anyway"),
         QMessageBox::AcceptRole);
     dialog.setDefaultButton(justContinue);
-    dialog.setWindowTitle(tr("Debugging helper missing"));
+    dialog.setWindowTitle(tr("Debugging Helper Missing"));
     dialog.setText(tr("The debugger could not load the debugging helper library."));
     dialog.setInformativeText(tr(
         "The debugging helper is used to nicely format the values of some Qt "
         "and Standard Library data types. "
         "It must be compiled for each used Qt version separately. "
-        "This can be done in the Qt preferences page by selecting a Qt installation "
-        "and clicking on 'Rebuild' in the 'Debugging Helper' row."));
+        "On the Qt4 options page, select a Qt installation "
+        "and click Rebuild."));
     if (!details.isEmpty())
         dialog.setDetailedText(details);
     dialog.exec();
-- 
GitLab