summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorGlenn Rice <glennricster@gmail.com>2011-01-20 03:02:51 +0000
committerGlenn Rice <glennricster@gmail.com>2011-01-20 03:02:51 +0000
commitff06b4c817a95ea3c7123faf17a280a1fba389cd (patch)
treea21251139701d1ae1aede5f5a78d71f6321a4d79 /Source/Core
parent6de5f6c3d19849cac8a81fcd79d05cc87f014169 (diff)
Unmark a few strings that should not be translated.
Updated Greek, French, Japanese, Portuguese (Brazilian), Russian translations. Added Turkish translations thanks to nlgzrgn. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6883 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/Src/ConfigMain.cpp2
-rw-r--r--Source/Core/DolphinWX/Src/FrameTools.cpp4
2 files changed, 4 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Src/ConfigMain.cpp b/Source/Core/DolphinWX/Src/ConfigMain.cpp
index 021b347e93..29809ce142 100644
--- a/Source/Core/DolphinWX/Src/ConfigMain.cpp
+++ b/Source/Core/DolphinWX/Src/ConfigMain.cpp
@@ -61,6 +61,7 @@ static const wxLanguage langIds[] =
wxLANGUAGE_PORTUGUESE_BRAZILIAN,
wxLANGUAGE_RUSSIAN,
wxLANGUAGE_SPANISH,
+ wxLANGUAGE_TURKISH,
};
// Strings for Device Selections
@@ -301,6 +302,7 @@ void CConfigMain::InitializeGUILists()
arrayStringFor_InterfaceLang.Add(_("Portuguese (Brazilian)"));
arrayStringFor_InterfaceLang.Add(_("Russian"));
arrayStringFor_InterfaceLang.Add(_("Spanish"));
+ arrayStringFor_InterfaceLang.Add(_("Turkish"));
}
void CConfigMain::InitializeGUIValues()
diff --git a/Source/Core/DolphinWX/Src/FrameTools.cpp b/Source/Core/DolphinWX/Src/FrameTools.cpp
index 15f564e1d4..ce323ac9e7 100644
--- a/Source/Core/DolphinWX/Src/FrameTools.cpp
+++ b/Source/Core/DolphinWX/Src/FrameTools.cpp
@@ -1220,8 +1220,8 @@ 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(_("Wiimote %i %s"), wm_idx + 1,
- connect ? _("Connected") : _("Disconnected")));
+ wxString msg(wxString::Format(wxT("Wiimote %i %s"), wm_idx + 1,
+ connect ? wxT("Connected") : wxT("Disconnected")));
Core::DisplayMessage(msg.ToAscii(), 3000);
}
}