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
This commit is contained in:
Glenn Rice
2011-01-20 03:02:51 +00:00
parent 6de5f6c3d1
commit ff06b4c817
25 changed files with 9003 additions and 3978 deletions
+4
View File
@@ -134,6 +134,10 @@
RelativePath=".\ru.po"
>
</File>
<File
RelativePath=".\tr.po"
>
</File>
<File
RelativePath=".\zh_CN.po"
>
+152 -173
View File
File diff suppressed because it is too large Load Diff
+166 -174
View File
File diff suppressed because it is too large Load Diff
+152 -173
View File
File diff suppressed because it is too large Load Diff
+487 -428
View File
File diff suppressed because it is too large Load Diff
+152 -173
View File
File diff suppressed because it is too large Load Diff
+170 -173
View File
File diff suppressed because it is too large Load Diff
+205 -183
View File
File diff suppressed because it is too large Load Diff
+152 -173
View File
File diff suppressed because it is too large Load Diff
+170 -173
View File
File diff suppressed because it is too large Load Diff
+328 -276
View File
File diff suppressed because it is too large Load Diff
+474 -446
View File
File diff suppressed because it is too large Load Diff
+259 -277
View File
File diff suppressed because it is too large Load Diff
+166 -174
View File
File diff suppressed because it is too large Load Diff
+166 -174
View File
File diff suppressed because it is too large Load Diff
+170 -173
View File
File diff suppressed because it is too large Load Diff
+195 -191
View File
File diff suppressed because it is too large Load Diff
+267 -265
View File
File diff suppressed because it is too large Load Diff
+4995
View File
File diff suppressed because it is too large Load Diff
+166 -174
View File
File diff suppressed because it is too large Load Diff
+2
View File
@@ -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()
+2 -2
View File
@@ -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);
}
}
+1 -1
View File
@@ -161,7 +161,7 @@ void GetDllInfo(PLUGIN_INFO* _PluginInfo)
#elif defined _DEBUG
sprintf_s(_PluginInfo->Name, 100, "Dolphin Direct3D11 (Debug)");
#else
sprintf_s(_PluginInfo->Name, 100, _trans("Dolphin Direct3D11"));
sprintf_s(_PluginInfo->Name, 100, "Dolphin Direct3D11");
#endif
}
+1 -1
View File
@@ -160,7 +160,7 @@ void GetDllInfo(PLUGIN_INFO* _PluginInfo)
#elif defined _DEBUG
sprintf_s(_PluginInfo->Name, 100, "Dolphin Direct3D9 (Debug)");
#else
sprintf_s(_PluginInfo->Name, 100, _trans("Dolphin Direct3D9"));
sprintf_s(_PluginInfo->Name, 100, "Dolphin Direct3D9");
#endif
}
+1 -1
View File
@@ -243,7 +243,7 @@ void DllConfig(void *_hParent)
// pp shaders
GetShaders(g_Config.backend_info.PPShaders);
VideoConfigDiag *const diag = new VideoConfigDiag((wxWindow*)_hParent, _trans("OpenGL"), "gfx_opengl");
VideoConfigDiag *const diag = new VideoConfigDiag((wxWindow*)_hParent, "OpenGL", "gfx_opengl");
diag->ShowModal();
diag->Destroy();
#endif