mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 10:09:36 -06:00
Add debug i18n comments and revise existing i18n comments
This commit is contained in:
@ -467,6 +467,7 @@ wxMenu* MainMenuBar::CreateSymbolsMenu() const
|
||||
wxMenu* MainMenuBar::CreateProfilerMenu() const
|
||||
{
|
||||
auto* const profiler_menu = new wxMenu;
|
||||
// i18n: "Profile" is used as a verb, not a noun.
|
||||
profiler_menu->AppendCheckItem(IDM_PROFILE_BLOCKS, _("&Profile Blocks"));
|
||||
profiler_menu->AppendSeparator();
|
||||
profiler_menu->Append(IDM_WRITE_PROFILE, _("&Write to profile.txt, Show"));
|
||||
|
@ -222,8 +222,10 @@ void MainToolBar::AddDebuggerToolBarButtons()
|
||||
AddToolBarButton(IDM_SKIP, TOOLBAR_DEBUG_SKIP, _("Skip"),
|
||||
_("Skips the next instruction completely"));
|
||||
AddSeparator();
|
||||
// i18n: Here, PC is an acronym for program counter, not personal computer.
|
||||
AddToolBarButton(IDM_GOTOPC, TOOLBAR_DEBUG_GOTOPC, _("Show PC"),
|
||||
_("Go to the current instruction"));
|
||||
// i18n: Here, PC is an acronym for program counter, not personal computer.
|
||||
AddToolBarButton(IDM_SETPC, TOOLBAR_DEBUG_SETPC, _("Set PC"), _("Set the current instruction"));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user