From d0da689eebc1d9d4e81f3f91b918ba7186e65586 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 23 Jan 2023 20:49:22 +0100 Subject: [PATCH] DolphinQt: Add i18n comments for strings containing the word "watches" These new strings could use the same clarification as we have for the existing string "&Delete Watch". --- Source/Core/DolphinQt/Debugger/WatchWidget.cpp | 6 ++++++ 1 file changed, 6 insertions(+) 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)