Skip to content
Snippets Groups Projects
Commit 2ef63374 authored by Eike Ziller's avatar Eike Ziller
Browse files

TODO: Fix some UI text


Change-Id: I7c07ec61f215cc325109fb091f89b09fbfc0d043
Reviewed-by: default avatarLeena Miettinen <riitta-leena.miettinen@digia.com>
parent 335948fa
No related branches found
No related tags found
No related merge requests found
...@@ -87,14 +87,14 @@ ...@@ -87,14 +87,14 @@
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="text"> <property name="text">
<string>Scan in the whole project</string> <string>Scan the whole active project</string>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QRadioButton" name="scanInCurrentFileRadioButton"> <widget class="QRadioButton" name="scanInCurrentFileRadioButton">
<property name="text"> <property name="text">
<string>Scan in the current opened file</string> <string>Scan only the currently edited document</string>
</property> </property>
<property name="checked"> <property name="checked">
<bool>true</bool> <bool>true</bool>
......
...@@ -188,13 +188,13 @@ void TodoOutputPane::createScopeButtons() ...@@ -188,13 +188,13 @@ void TodoOutputPane::createScopeButtons()
{ {
m_currentFileButton = new QToolButton(); m_currentFileButton = new QToolButton();
m_currentFileButton->setCheckable(true); m_currentFileButton->setCheckable(true);
m_currentFileButton->setText(tr("Current File")); m_currentFileButton->setText(tr("Current Document"));
m_currentFileButton->setToolTip(tr("Scan in the current opened file")); m_currentFileButton->setToolTip(tr("Scan only the currently edited document."));
m_wholeProjectButton = new QToolButton(); m_wholeProjectButton = new QToolButton();
m_wholeProjectButton->setCheckable(true); m_wholeProjectButton->setCheckable(true);
m_wholeProjectButton->setText(tr("Whole Project")); m_wholeProjectButton->setText(tr("Active Project"));
m_wholeProjectButton->setToolTip(tr("Scan in the whole project")); m_wholeProjectButton->setToolTip(tr("Scan the whole active project."));
m_scopeButtons = new QButtonGroup(); m_scopeButtons = new QButtonGroup();
m_scopeButtons->addButton(m_wholeProjectButton); m_scopeButtons->addButton(m_wholeProjectButton);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment