Add debug i18n comments and revise existing i18n comments
This commit is contained in:
parent
146ee6de91
commit
d80086adf5
|
@ -28,13 +28,13 @@ static const char* const named_buttons[] = {"A", "B", "X", "Y", "Z", _t
|
||||||
_trans("Mic")};
|
_trans("Mic")};
|
||||||
|
|
||||||
static const char* const named_triggers[] = {
|
static const char* const named_triggers[] = {
|
||||||
// i18n: Left
|
// i18n: The left trigger button (labeled L on real controllers)
|
||||||
_trans("L"),
|
_trans("L"),
|
||||||
// i18n: Right
|
// i18n: The right trigger button (labeled R on real controllers)
|
||||||
_trans("R"),
|
_trans("R"),
|
||||||
// i18n: Left-Analog
|
// i18n: The left trigger button (labeled L on real controllers) used as an analog input
|
||||||
_trans("L-Analog"),
|
_trans("L-Analog"),
|
||||||
// i18n: Right-Analog
|
// i18n: The right trigger button (labeled R on real controllers) used as an analog input
|
||||||
_trans("R-Analog")};
|
_trans("R-Analog")};
|
||||||
|
|
||||||
GCPad::GCPad(const unsigned int index) : m_index(index)
|
GCPad::GCPad(const unsigned int index) : m_index(index)
|
||||||
|
|
|
@ -467,6 +467,7 @@ wxMenu* MainMenuBar::CreateSymbolsMenu() const
|
||||||
wxMenu* MainMenuBar::CreateProfilerMenu() const
|
wxMenu* MainMenuBar::CreateProfilerMenu() const
|
||||||
{
|
{
|
||||||
auto* const profiler_menu = new wxMenu;
|
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->AppendCheckItem(IDM_PROFILE_BLOCKS, _("&Profile Blocks"));
|
||||||
profiler_menu->AppendSeparator();
|
profiler_menu->AppendSeparator();
|
||||||
profiler_menu->Append(IDM_WRITE_PROFILE, _("&Write to profile.txt, Show"));
|
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"),
|
AddToolBarButton(IDM_SKIP, TOOLBAR_DEBUG_SKIP, _("Skip"),
|
||||||
_("Skips the next instruction completely"));
|
_("Skips the next instruction completely"));
|
||||||
AddSeparator();
|
AddSeparator();
|
||||||
|
// i18n: Here, PC is an acronym for program counter, not personal computer.
|
||||||
AddToolBarButton(IDM_GOTOPC, TOOLBAR_DEBUG_GOTOPC, _("Show PC"),
|
AddToolBarButton(IDM_GOTOPC, TOOLBAR_DEBUG_GOTOPC, _("Show PC"),
|
||||||
_("Go to the current instruction"));
|
_("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"));
|
AddToolBarButton(IDM_SETPC, TOOLBAR_DEBUG_SETPC, _("Set PC"), _("Set the current instruction"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue