Fix tooltip translation in the Video config dialog.

Fix Pad 1-4 and Wiimote 1-4 translation in the input dialogs.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6850 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice
2011-01-14 19:27:18 +00:00
parent 8ad402cdde
commit 2d1b84febe
22 changed files with 1947 additions and 1763 deletions

View File

@ -983,7 +983,7 @@ InputConfigDialog::InputConfigDialog(wxWindow* const parent, InputPlugin& plugin
{
GamepadPage* gp = new GamepadPage(m_pad_notebook, m_plugin, i, this);
m_padpages.push_back(gp);
m_pad_notebook->AddPage(gp, wxString::FromAscii(m_plugin.gui_name) + wxT(' ') + wxChar('1'+i));
m_pad_notebook->AddPage(gp, wxString::Format(wxT("%s %u"), WXTSTR_FROM_CSTR(m_plugin.gui_name), 1+i));
}
m_pad_notebook->SetSelection(tab_num);