diff --git a/src/plugins/debugger/watchwindow.cpp b/src/plugins/debugger/watchwindow.cpp
index fdd8b539a493ee595e4fc2cd0a25fbde592bf4e5..b762610b199ed1ac6fd51b19f03edf06105f3632 100644
--- a/src/plugins/debugger/watchwindow.cpp
+++ b/src/plugins/debugger/watchwindow.cpp
@@ -300,10 +300,10 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
     const bool canSetWatchpoint = engineCapabilities & WatchpointCapability;
     if (canSetWatchpoint && !address.isEmpty()) {
         actSetWatchpoint =
-            new QAction(tr("Break on changing %1").arg(address), &menu);
+            new QAction(tr("Break on Changing Contents of %1").arg(address), &menu);
     } else {
         actSetWatchpoint =
-            new QAction(tr("Break on changing contents"), &menu);
+            new QAction(tr("Break on Changing Contents"), &menu);
         actSetWatchpoint->setEnabled(false);
     }