aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/breakwindow.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2009-04-08 12:11:30 +0200
committerhjk <[email protected]>2009-04-08 16:05:49 +0200
commit3e38a0598b0e094afd91b854d530fda034e25ec2 (patch)
treeb877ffea8fda4f84420b6005b5168f7a09413afb /src/plugins/debugger/breakwindow.cpp
parent7a77f8375938212ac228b03845cbdc55a65066d5 (diff)
debugger: make user visible strings translatable
Diffstat (limited to 'src/plugins/debugger/breakwindow.cpp')
-rw-r--r--src/plugins/debugger/breakwindow.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/debugger/breakwindow.cpp b/src/plugins/debugger/breakwindow.cpp
index 308d565a3e9..a571fafae50 100644
--- a/src/plugins/debugger/breakwindow.cpp
+++ b/src/plugins/debugger/breakwindow.cpp
@@ -85,15 +85,15 @@ void BreakWindow::contextMenuEvent(QContextMenuEvent *ev)
{
QMenu menu;
QModelIndex index = indexAt(ev->pos());
- QAction *act0 = new QAction("Delete breakpoint", &menu);
+ QAction *act0 = new QAction(tr("Delete breakpoint"), &menu);
act0->setEnabled(index.isValid());
- QAction *act1 = new QAction("Adjust column widths to contents", &menu);
- QAction *act2 = new QAction("Always adjust column widths to contents", &menu);
+ QAction *act1 = new QAction(tr("Adjust column widths to contents"), &menu);
+ QAction *act2 = new QAction(tr("Always adjust column widths to contents"), &menu);
act2->setCheckable(true);
act2->setChecked(m_alwaysResizeColumnsToContents);
- QAction *act3 = new QAction("Edit condition...", &menu);
+ QAction *act3 = new QAction(tr("Edit condition..."), &menu);
act0->setEnabled(index.isValid());
- QAction *act4 = new QAction("Syncronize breakpoints", &menu);
+ QAction *act4 = new QAction(tr("Syncronize breakpoints"), &menu);
menu.addAction(act0);
menu.addAction(act3);