mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 06:08:50 +00:00
DolphinQt: Add more i18n comments
This commit is contained in:
parent
0475c939a7
commit
3611045a6c
4 changed files with 18 additions and 5 deletions
|
@ -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); });
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue