mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 22:48:18 +00:00
Merge pull request #1686 from Dune-jr/feature-addlocalecontext
Add context to the locale for the Yes/No password field
This commit is contained in:
commit
f344450f4c
|
@ -337,7 +337,7 @@ void CMenus::RenderServerInfo(CUIRect MainView)
|
|||
Localize("Address"), g_Config.m_UiServerAddress,
|
||||
Localize("Ping"), m_pClient->m_Snap.m_pLocalInfo->m_Latency,
|
||||
Localize("Version"), CurrentServerInfo.m_aVersion,
|
||||
Localize("Password"), CurrentServerInfo.m_Flags&IServerBrowser::FLAG_PASSWORD ? Localize("Yes") : Localize("No")
|
||||
Localize("Password"), CurrentServerInfo.m_Flags&IServerBrowser::FLAG_PASSWORD ? Localize("Yes", "With") : Localize("No", "Without/None")
|
||||
);
|
||||
|
||||
TextRender()->Text(0, ServerInfo.x+x, ServerInfo.y+y, 20, aBuf, 250);
|
||||
|
|
Loading…
Reference in a new issue