mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-10 13:12:41 +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
|
@ -87,6 +87,7 @@ static wxString GetValueByRowCol(int row, int col)
|
|||
case 3:
|
||||
return _("Decimal");
|
||||
case 4:
|
||||
// i18n: Data type used in computing
|
||||
return _("String");
|
||||
default:
|
||||
return wxEmptyString;
|
||||
|
@ -258,7 +259,11 @@ void CWatchView::OnMouseDownR(wxGridEvent& event)
|
|||
|
||||
wxMenu menu;
|
||||
if (row != 0 && row != (int)(PowerPC::watches.GetWatches().size() + 1))
|
||||
{
|
||||
// i18n: This kind of "watch" is used for watching emulated memory.
|
||||
// It's not related to timekeeping devices.
|
||||
menu.Append(IDM_DELETEWATCH, _("&Delete watch"));
|
||||
}
|
||||
|
||||
if (row != 0 && row != (int)(PowerPC::watches.GetWatches().size() + 1) && (col == 1 || col == 2))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue