TODO: Fix some UI text

Change-Id: I7c07ec61f215cc325109fb091f89b09fbfc0d043
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
Eike Ziller
2013-12-09 09:06:12 +01:00
parent 335948fa14
commit 2ef63374b3
2 changed files with 6 additions and 6 deletions

View File

@@ -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);