summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/WatchView.cpp
diff options
context:
space:
mode:
authormagumagu <magumagu9@gmail.com>2015-02-24 11:42:14 -0800
committermagumagu <magumagu9@gmail.com>2015-02-24 11:42:14 -0800
commite9e1a2c2dcb32fa6edfd9a6cc2aa40a2723d3796 (patch)
tree225e528812d2fdb3bd3aae5db1d4510cb35142b0 /Source/Core/DolphinWX/Debugger/WatchView.cpp
parent7d5a558f31ee8eca26b2b5ee4775f07ffdb8b8bc (diff)
parentd50e7562af52e73de4c23e91322aef2a29c8eb94 (diff)
Merge pull request #2110 from lioncash/tl
DolphinWX: Make RAM watch strings translatable
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/WatchView.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/WatchView.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Core/DolphinWX/Debugger/WatchView.cpp b/Source/Core/DolphinWX/Debugger/WatchView.cpp
index 0ede80bb34..8f88fb637b 100644
--- a/Source/Core/DolphinWX/Debugger/WatchView.cpp
+++ b/Source/Core/DolphinWX/Debugger/WatchView.cpp
@@ -81,11 +81,11 @@ static wxString GetValueByRowCol(int row, int col)
// Column Labels
switch (col)
{
- case 0: return wxString::Format("Label");
- case 1: return wxString::Format("Addr");
- case 2: return wxString::Format("Hex");
- case 3: return wxString::Format("Dec");
- case 4: return wxString::Format("Str");
+ case 0: return _("Label");
+ case 1: return _("Address");
+ case 2: return _("Hexadecimal");
+ case 3: return _("Decimal");
+ case 4: return _("String");
default: return wxEmptyString;
}
}