mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-02 16:32:55 +00:00
More debug text fixes
Also a few small non-debug text changes.
This commit is contained in:
parent
5102e76a7f
commit
3c6742f66f
14 changed files with 43 additions and 7 deletions
|
@ -214,9 +214,15 @@ void MainToolBar::AddMainToolBarButtons()
|
|||
|
||||
void MainToolBar::AddDebuggerToolBarButtons()
|
||||
{
|
||||
// i18n: Here, "Step" is a verb. This function is used for
|
||||
// going through code step by step.
|
||||
AddToolBarButton(IDM_STEP, TOOLBAR_DEBUG_STEP, _("Step"), _("Step into the next instruction"));
|
||||
// i18n: Here, "Step" is a verb. This function is used for
|
||||
// going through code step by step.
|
||||
AddToolBarButton(IDM_STEPOVER, TOOLBAR_DEBUG_STEPOVER, _("Step Over"),
|
||||
_("Step over the next instruction"));
|
||||
// i18n: Here, "Step" is a verb. This function is used for
|
||||
// going through code step by step.
|
||||
AddToolBarButton(IDM_STEPOUT, TOOLBAR_DEBUG_STEPOUT, _("Step Out"),
|
||||
_("Step out of the current function"));
|
||||
AddToolBarButton(IDM_SKIP, TOOLBAR_DEBUG_SKIP, _("Skip"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue