Netplay: Fix a typo in the MD5 check dropdown

"Curent game" → "Current game"
This commit is contained in:
Léo Lam 2016-07-22 17:41:33 +02:00
parent 66b11c5198
commit da18f7f8ac
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ NetPlayDialog::NetPlayDialog(wxWindow* const parent, const CGameListCtrl* const
m_MD5_choice = new wxChoice(panel, wxID_ANY, wxDefaultPosition, wxSize(150, -1)); m_MD5_choice = new wxChoice(panel, wxID_ANY, wxDefaultPosition, wxSize(150, -1));
m_MD5_choice->Bind(wxEVT_CHOICE, &NetPlayDialog::OnMD5ComputeRequested, this); m_MD5_choice->Bind(wxEVT_CHOICE, &NetPlayDialog::OnMD5ComputeRequested, this);
m_MD5_choice->Append(_("MD5 check...")); m_MD5_choice->Append(_("MD5 check..."));
m_MD5_choice->Append(_("Curent game")); m_MD5_choice->Append(_("Current game"));
m_MD5_choice->Append(_("Other game")); m_MD5_choice->Append(_("Other game"));
m_MD5_choice->Append(_("SD card")); m_MD5_choice->Append(_("SD card"));
m_MD5_choice->SetSelection(0); m_MD5_choice->SetSelection(0);