summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorBenjamin Poulain <benjamin.poulain@nokia.com>2009-11-11 12:37:15 (GMT)
committerBenjamin Poulain <benjamin.poulain@nokia.com>2009-11-11 12:37:15 (GMT)
commit500e71ab649a5053667ff3f9dc7d87730b565756 (patch)
tree52c1d0fa9d9f37c988a949b9bf9d205ecb2acec7 /tools
parentea80fc7a97c39deeca6bb51d8441d755af1e0591 (diff)
downloadQt-500e71ab649a5053667ff3f9dc7d87730b565756.zip
Qt-500e71ab649a5053667ff3f9dc7d87730b565756.tar.gz
Qt-500e71ab649a5053667ff3f9dc7d87730b565756.tar.bz2
Add tr() to strings of Assistant that need to be translated
Diffstat (limited to 'tools')
-rw-r--r--tools/assistant/tools/assistant/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/assistant/tools/assistant/mainwindow.cpp b/tools/assistant/tools/assistant/mainwindow.cpp
index c56e7e4..01c4f75 100644
--- a/tools/assistant/tools/assistant/mainwindow.cpp
+++ b/tools/assistant/tools/assistant/mainwindow.cpp
@@ -451,7 +451,7 @@ void MainWindow::setupActions()
m_findAction = menu->addAction(tr("&Find in Text..."), m_centralWidget,
SLOT(showTextSearch()));
- m_findAction->setIconText("&Find");
+ m_findAction->setIconText(tr("&Find"));
m_findAction->setIcon(QIcon(resourcePath + QLatin1String("/find.png")));
m_findAction->setShortcuts(QKeySequence::Find);
@@ -515,7 +515,7 @@ void MainWindow::setupActions()
m_syncAction = menu->addAction(tr("Sync with Table of Contents"), this,
SLOT(syncContents()));
- m_syncAction->setIconText("Sync");
+ m_syncAction->setIconText(tr("Sync"));
m_syncAction->setIcon(QIcon(resourcePath + QLatin1String("/synctoc.png")));
menu->addSeparator();