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:
parent
6de5f6c3d1
commit
ff06b4c817
|
@ -134,6 +134,10 @@
|
||||||
RelativePath=".\ru.po"
|
RelativePath=".\ru.po"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\tr.po"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\zh_CN.po"
|
RelativePath=".\zh_CN.po"
|
||||||
>
|
>
|
||||||
|
|
325
Languages/da.po
325
Languages/da.po
File diff suppressed because it is too large
Load Diff
340
Languages/de.po
340
Languages/de.po
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
915
Languages/el.po
915
Languages/el.po
File diff suppressed because it is too large
Load Diff
325
Languages/en.po
325
Languages/en.po
File diff suppressed because it is too large
Load Diff
343
Languages/es.po
343
Languages/es.po
File diff suppressed because it is too large
Load Diff
388
Languages/fr.po
388
Languages/fr.po
File diff suppressed because it is too large
Load Diff
325
Languages/he.po
325
Languages/he.po
File diff suppressed because it is too large
Load Diff
343
Languages/hu.po
343
Languages/hu.po
File diff suppressed because it is too large
Load Diff
604
Languages/it.po
604
Languages/it.po
File diff suppressed because it is too large
Load Diff
920
Languages/ja.po
920
Languages/ja.po
File diff suppressed because it is too large
Load Diff
536
Languages/ko.po
536
Languages/ko.po
File diff suppressed because it is too large
Load Diff
340
Languages/nb.po
340
Languages/nb.po
File diff suppressed because it is too large
Load Diff
340
Languages/nl.po
340
Languages/nl.po
File diff suppressed because it is too large
Load Diff
343
Languages/pl.po
343
Languages/pl.po
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
532
Languages/ru.po
532
Languages/ru.po
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -61,6 +61,7 @@ static const wxLanguage langIds[] =
|
||||||
wxLANGUAGE_PORTUGUESE_BRAZILIAN,
|
wxLANGUAGE_PORTUGUESE_BRAZILIAN,
|
||||||
wxLANGUAGE_RUSSIAN,
|
wxLANGUAGE_RUSSIAN,
|
||||||
wxLANGUAGE_SPANISH,
|
wxLANGUAGE_SPANISH,
|
||||||
|
wxLANGUAGE_TURKISH,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Strings for Device Selections
|
// Strings for Device Selections
|
||||||
|
@ -301,6 +302,7 @@ void CConfigMain::InitializeGUILists()
|
||||||
arrayStringFor_InterfaceLang.Add(_("Portuguese (Brazilian)"));
|
arrayStringFor_InterfaceLang.Add(_("Portuguese (Brazilian)"));
|
||||||
arrayStringFor_InterfaceLang.Add(_("Russian"));
|
arrayStringFor_InterfaceLang.Add(_("Russian"));
|
||||||
arrayStringFor_InterfaceLang.Add(_("Spanish"));
|
arrayStringFor_InterfaceLang.Add(_("Spanish"));
|
||||||
|
arrayStringFor_InterfaceLang.Add(_("Turkish"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void CConfigMain::InitializeGUIValues()
|
void CConfigMain::InitializeGUIValues()
|
||||||
|
|
|
@ -1220,8 +1220,8 @@ void CFrame::ConnectWiimote(int wm_idx, bool connect)
|
||||||
if (Core::isRunning() && SConfig::GetInstance().m_LocalCoreStartupParameter.bWii)
|
if (Core::isRunning() && SConfig::GetInstance().m_LocalCoreStartupParameter.bWii)
|
||||||
{
|
{
|
||||||
GetUsbPointer()->AccessWiiMote(wm_idx | 0x100)->Activate(connect);
|
GetUsbPointer()->AccessWiiMote(wm_idx | 0x100)->Activate(connect);
|
||||||
wxString msg(wxString::Format(_("Wiimote %i %s"), wm_idx + 1,
|
wxString msg(wxString::Format(wxT("Wiimote %i %s"), wm_idx + 1,
|
||||||
connect ? _("Connected") : _("Disconnected")));
|
connect ? wxT("Connected") : wxT("Disconnected")));
|
||||||
Core::DisplayMessage(msg.ToAscii(), 3000);
|
Core::DisplayMessage(msg.ToAscii(), 3000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -161,7 +161,7 @@ void GetDllInfo(PLUGIN_INFO* _PluginInfo)
|
||||||
#elif defined _DEBUG
|
#elif defined _DEBUG
|
||||||
sprintf_s(_PluginInfo->Name, 100, "Dolphin Direct3D11 (Debug)");
|
sprintf_s(_PluginInfo->Name, 100, "Dolphin Direct3D11 (Debug)");
|
||||||
#else
|
#else
|
||||||
sprintf_s(_PluginInfo->Name, 100, _trans("Dolphin Direct3D11"));
|
sprintf_s(_PluginInfo->Name, 100, "Dolphin Direct3D11");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -160,7 +160,7 @@ void GetDllInfo(PLUGIN_INFO* _PluginInfo)
|
||||||
#elif defined _DEBUG
|
#elif defined _DEBUG
|
||||||
sprintf_s(_PluginInfo->Name, 100, "Dolphin Direct3D9 (Debug)");
|
sprintf_s(_PluginInfo->Name, 100, "Dolphin Direct3D9 (Debug)");
|
||||||
#else
|
#else
|
||||||
sprintf_s(_PluginInfo->Name, 100, _trans("Dolphin Direct3D9"));
|
sprintf_s(_PluginInfo->Name, 100, "Dolphin Direct3D9");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -243,7 +243,7 @@ void DllConfig(void *_hParent)
|
||||||
// pp shaders
|
// pp shaders
|
||||||
GetShaders(g_Config.backend_info.PPShaders);
|
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->ShowModal();
|
||||||
diag->Destroy();
|
diag->Destroy();
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue