summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/WatchWidget.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2023-01-24 03:44:46 +0100
committerGitHub <noreply@github.com>2023-01-24 03:44:46 +0100
commitcf2f8a70f6dbb2b043dd8df86edfe4fe7cee5302 (patch)
tree06f7776c0ebf540a5f7b41ffc8a40d6f39cb0a8f /Source/Core/DolphinQt/Debugger/WatchWidget.cpp
parent8d477c65c9a72020a5839299c0dcf130304cb2e6 (diff)
parentd0da689eebc1d9d4e81f3f91b918ba7186e65586 (diff)
Merge pull request #11478 from JosJuice/i18n-comments
DolphinQt: Add i18n comments for strings containing the word "watches"
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/WatchWidget.cpp')
-rw-r--r--Source/Core/DolphinQt/Debugger/WatchWidget.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Debugger/WatchWidget.cpp b/Source/Core/DolphinQt/Debugger/WatchWidget.cpp
index 2f4ea27598..7dfc0afe88 100644
--- a/Source/Core/DolphinQt/Debugger/WatchWidget.cpp
+++ b/Source/Core/DolphinQt/Debugger/WatchWidget.cpp
@@ -310,8 +310,14 @@ void WatchWidget::ShowContextMenu()
const std::size_t count = m_table->selectionModel()->selectedRows().count();
if (count > 1)
{
+ // i18n: This kind of "watch" is used for watching emulated memory.
+ // It's not related to timekeeping devices.
menu->addAction(tr("&Delete Watches"), this, [this] { DeleteSelectedWatches(); });
+ // i18n: This kind of "watch" is used for watching emulated memory.
+ // It's not related to timekeeping devices.
menu->addAction(tr("&Lock Watches"), this, [this] { LockSelectedWatches(); });
+ // i18n: This kind of "watch" is used for watching emulated memory.
+ // It's not related to timekeeping devices.
menu->addAction(tr("&Unlock Watches"), this, [this] { UnlockSelectedWatches(); });
}
else if (count == 1)