summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2022-11-26 22:58:46 +0100
committerJosJuice <josjuice@gmail.com>2022-12-24 08:32:49 +0100
commit3611045a6c0f999a369f630f284d17848bf1d798 (patch)
tree3e61dfd9f899045f89e2600c62e8c5081c8e03b8 /Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp
parent0475c939a7faf48f158f805abd5c073f2344ccfe (diff)
DolphinQt: Add more i18n comments
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp')
-rw-r--r--Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp
index ae606d04fa..af24232406 100644
--- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp
+++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp
@@ -579,10 +579,13 @@ void CodeViewWidget::OnContextMenu()
}
auto* run_until_menu = menu->addMenu(tr("Run until (ignoring breakpoints)"));
+ // i18n: One of the options shown below "Run until (ignoring breakpoints)"
run_until_menu->addAction(tr("%1's value is hit").arg(target), this,
[this] { AutoStep(CodeTrace::AutoStop::Always); });
+ // i18n: One of the options shown below "Run until (ignoring breakpoints)"
run_until_menu->addAction(tr("%1's value is used").arg(target), this,
[this] { AutoStep(CodeTrace::AutoStop::Used); });
+ // i18n: One of the options shown below "Run until (ignoring breakpoints)"
run_until_menu->addAction(tr("%1's value is changed").arg(target),
[this] { AutoStep(CodeTrace::AutoStop::Changed); });