From 7941a05a8078280be8af62b18bce29e5ac3548e0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 30 Apr 2017 03:08:05 -0400 Subject: [PATCH] MemoryWindow: Add missing translation markers for UI strings --- Source/Core/DolphinWX/Debugger/MemoryWindow.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Core/DolphinWX/Debugger/MemoryWindow.cpp b/Source/Core/DolphinWX/Debugger/MemoryWindow.cpp index 3422f2c2ef..8285f2fa71 100644 --- a/Source/Core/DolphinWX/Debugger/MemoryWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/MemoryWindow.cpp @@ -122,16 +122,16 @@ CMemoryWindow::CMemoryWindow(wxWindow* parent, wxWindowID id, const wxPoint& pos wxDefaultSize, data_type_options, 1); wxStaticBoxSizer* const memcheck_options_sizer = - new wxStaticBoxSizer(wxVERTICAL, this, "Memory breakpoint options"); + new wxStaticBoxSizer(wxVERTICAL, this, _("Memory breakpoint options")); memcheck_options_sizer->Add(m_read_write_radio_btn = new wxRadioButton( - this, IDM_MEMCHECK_OPTIONS_CHANGE, "Read and Write", + this, IDM_MEMCHECK_OPTIONS_CHANGE, _("Read and Write"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP)); memcheck_options_sizer->Add( - m_read_radio_btn = new wxRadioButton(this, IDM_MEMCHECK_OPTIONS_CHANGE, "Read only")); + m_read_radio_btn = new wxRadioButton(this, IDM_MEMCHECK_OPTIONS_CHANGE, _("Read only"))); memcheck_options_sizer->Add( - m_write_radio_btn = new wxRadioButton(this, IDM_MEMCHECK_OPTIONS_CHANGE, "Write only")); + m_write_radio_btn = new wxRadioButton(this, IDM_MEMCHECK_OPTIONS_CHANGE, _("Write only"))); memcheck_options_sizer->Add(m_log_checkbox = - new wxCheckBox(this, IDM_MEMCHECK_OPTIONS_CHANGE, "Log")); + new wxCheckBox(this, IDM_MEMCHECK_OPTIONS_CHANGE, _("Log"))); wxBoxSizer* const right_sizer = new wxBoxSizer(wxVERTICAL); right_sizer->Add(search_sizer);