aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/todo
diff options
context:
space:
mode:
authorEike Ziller <[email protected]>2013-12-09 09:06:12 +0100
committerEike Ziller <[email protected]>2013-12-09 16:56:39 +0100
commit2ef63374b32cdd75b107d2d2c7591e748759dd5b (patch)
treeda441a9b86c8735f4ca4077fba28c60a92fbbe99 /src/plugins/todo
parent335948fa1424739b21165a66ac4bd57504815ac1 (diff)
TODO: Fix some UI text
Change-Id: I7c07ec61f215cc325109fb091f89b09fbfc0d043 Reviewed-by: Leena Miettinen <[email protected]>
Diffstat (limited to 'src/plugins/todo')
-rw-r--r--src/plugins/todo/optionsdialog.ui4
-rwxr-xr-xsrc/plugins/todo/todooutputpane.cpp8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/todo/optionsdialog.ui b/src/plugins/todo/optionsdialog.ui
index d8b4f6d963d..b07912b5e93 100644
--- a/src/plugins/todo/optionsdialog.ui
+++ b/src/plugins/todo/optionsdialog.ui
@@ -87,14 +87,14 @@
<bool>true</bool>
</property>
<property name="text">
- <string>Scan in the whole project</string>
+ <string>Scan the whole active project</string>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="scanInCurrentFileRadioButton">
<property name="text">
- <string>Scan in the current opened file</string>
+ <string>Scan only the currently edited document</string>
</property>
<property name="checked">
<bool>true</bool>
diff --git a/src/plugins/todo/todooutputpane.cpp b/src/plugins/todo/todooutputpane.cpp
index 6efa68fafd8..578f935b546 100755
--- a/src/plugins/todo/todooutputpane.cpp
+++ b/src/plugins/todo/todooutputpane.cpp
@@ -188,13 +188,13 @@ void TodoOutputPane::createScopeButtons()
{
m_currentFileButton = new QToolButton();
m_currentFileButton->setCheckable(true);
- m_currentFileButton->setText(tr("Current File"));
- m_currentFileButton->setToolTip(tr("Scan in the current opened file"));
+ m_currentFileButton->setText(tr("Current Document"));
+ m_currentFileButton->setToolTip(tr("Scan only the currently edited document."));
m_wholeProjectButton = new QToolButton();
m_wholeProjectButton->setCheckable(true);
- m_wholeProjectButton->setText(tr("Whole Project"));
- m_wholeProjectButton->setToolTip(tr("Scan in the whole project"));
+ m_wholeProjectButton->setText(tr("Active Project"));
+ m_wholeProjectButton->setToolTip(tr("Scan the whole active project."));
m_scopeButtons = new QButtonGroup();
m_scopeButtons->addButton(m_wholeProjectButton);