mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
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:
+109
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+109
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+109
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+109
-99
File diff suppressed because it is too large
Load Diff
+109
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+110
-99
File diff suppressed because it is too large
Load Diff
+116
-105
File diff suppressed because it is too large
Load Diff
@@ -26,7 +26,7 @@
|
||||
namespace Pad
|
||||
{
|
||||
|
||||
static InputPlugin g_plugin("GCPadNew", "Pad", "GCPad");
|
||||
static InputPlugin g_plugin("GCPadNew", _trans("Pad"), "GCPad");
|
||||
InputPlugin *GetPlugin()
|
||||
{
|
||||
return &g_plugin;
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
namespace Wiimote
|
||||
{
|
||||
|
||||
static InputPlugin g_plugin(WIIMOTE_INI_NAME, "Wiimote", "Wiimote");
|
||||
static InputPlugin g_plugin(WIIMOTE_INI_NAME, _trans("Wiimote"), "Wiimote");
|
||||
InputPlugin *GetPlugin()
|
||||
{
|
||||
return &g_plugin;
|
||||
|
||||
@@ -1220,7 +1220,7 @@ void CFrame::ConnectWiimote(int wm_idx, bool connect)
|
||||
if (Core::isRunning() && SConfig::GetInstance().m_LocalCoreStartupParameter.bWii)
|
||||
{
|
||||
GetUsbPointer()->AccessWiiMote(wm_idx | 0x100)->Activate(connect);
|
||||
wxString msg(wxString::Format(wxT("Wiimote %i %s"), wm_idx + 1,
|
||||
wxString msg(wxString::Format(_("Wiimote %i %s"), wm_idx + 1,
|
||||
connect ? _("Connected") : _("Disconnected")));
|
||||
Core::DisplayMessage(msg.ToAscii(), 3000);
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user