mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 01:49:33 -06:00
DolphinQt: Add more i18n comments
This commit is contained in:
@ -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); });
|
||||
|
||||
|
Reference in New Issue
Block a user