diff options
| author | JosJuice <josjuice@gmail.com> | 2016-10-31 15:06:27 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2016-11-02 17:46:52 +0100 |
| commit | 3c6742f66f4a165edc0e6e03e132aed4cce29cec (patch) | |
| tree | 8c144fc67127c9ae2281869cad92d0b84c70a90c /Source/Core/DolphinWX/Debugger/RegisterView.cpp | |
| parent | 5102e76a7f3cefa515c2c37143c9d707bc5dbc4d (diff) | |
More debug text fixes
Also a few small non-debug text changes.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/RegisterView.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/RegisterView.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Debugger/RegisterView.cpp b/Source/Core/DolphinWX/Debugger/RegisterView.cpp index 002e29e9e1..1451ecb184 100644 --- a/Source/Core/DolphinWX/Debugger/RegisterView.cpp +++ b/Source/Core/DolphinWX/Debugger/RegisterView.cpp @@ -483,6 +483,8 @@ void CRegisterView::OnMouseDownR(wxGridEvent& event) TryParse("0x" + WxStrToStr(strNewVal), &m_selectedAddress); wxMenu menu; + // i18n: This kind of "watch" is used for watching emulated memory. + // It's not related to timekeeping devices. menu.Append(IDM_WATCHADDRESS, _("Add to &watch")); menu.Append(IDM_VIEWMEMORY, _("View &memory")); menu.Append(IDM_VIEWCODE, _("View &code")); @@ -495,11 +497,13 @@ void CRegisterView::OnMouseDownR(wxGridEvent& event) menu.Append(IDM_VIEW_HEX8, _("View as hexadecimal")); menu.Append(IDM_VIEW_INT, _("View as signed integer")); menu.Append(IDM_VIEW_UINT, _("View as unsigned integer")); + // i18n: Float means floating point number menu.Append(IDM_VIEW_FLOAT, _("View as float")); } else { menu.Append(IDM_VIEW_HEX16, _("View as hexadecimal")); + // i18n: Double means double-precision floating point number menu.Append(IDM_VIEW_DOUBLE, _("View as double")); } } |
