Merge pull request #5348 from JosJuice/host-code-ip-address

Mark "Host Code:" and "IP Address:" as translatable
This commit is contained in:
Mat M 2017-04-30 18:19:21 -04:00 committed by GitHub
commit 4f2ecf03b3
1 changed files with 7 additions and 6 deletions

View File

@ -174,15 +174,16 @@ wxNotebook* NetPlaySetupFrame::CreateNotebookGUI(wxWindow* parent)
// connect tab // connect tab
{ {
m_ip_lbl = new wxStaticText(connect_tab, wxID_ANY, _("Host Code :")); // The text of these three controls will be set by OnDirectTraversalChoice
m_connect_ip_text = new wxTextCtrl(connect_tab, wxID_ANY, "127.0.0.1"); m_ip_lbl = new wxStaticText(connect_tab, wxID_ANY, "");
m_connect_hashcode_text = new wxTextCtrl(connect_tab, wxID_ANY, "00000000"); m_connect_ip_text = new wxTextCtrl(connect_tab, wxID_ANY);
m_connect_hashcode_text = new wxTextCtrl(connect_tab, wxID_ANY);
// Will be overridden by OnDirectTraversalChoice, but is necessary // Will be overridden by OnDirectTraversalChoice, but is necessary
// so that both inputs do not take up space // so that both inputs do not take up space
m_connect_hashcode_text->Hide(); m_connect_hashcode_text->Hide();
m_client_port_lbl = new wxStaticText(connect_tab, wxID_ANY, _("Port :")); m_client_port_lbl = new wxStaticText(connect_tab, wxID_ANY, _("Port:"));
m_connect_port_text = new wxTextCtrl(connect_tab, wxID_ANY, m_connect_port_text = new wxTextCtrl(connect_tab, wxID_ANY,
std::to_string(NetPlayHostConfig::DEFAULT_LISTEN_PORT)); std::to_string(NetPlayHostConfig::DEFAULT_LISTEN_PORT));
@ -436,7 +437,7 @@ void NetPlaySetupFrame::OnDirectTraversalChoice(wxCommandEvent& event)
// Traversal // Traversal
// client tab // client tab
{ {
m_ip_lbl->SetLabelText("Host Code: "); m_ip_lbl->SetLabelText(_("Host Code:"));
m_client_port_lbl->Hide(); m_client_port_lbl->Hide();
m_connect_port_text->Hide(); m_connect_port_text->Hide();
} }
@ -461,7 +462,7 @@ void NetPlaySetupFrame::OnDirectTraversalChoice(wxCommandEvent& event)
// Direct // Direct
// Client tab // Client tab
{ {
m_ip_lbl->SetLabelText("IP Address :"); m_ip_lbl->SetLabelText(_("IP Address:"));
std::string address; std::string address;
netplay_section.Get("Address", &address, "127.0.0.1"); netplay_section.Get("Address", &address, "127.0.0.1");