Merge pull request #1896 from Dune-jr/fix-missing-locales

Add Localize comments to fix the string export scripts (#1891)
This commit is contained in:
oy 2018-12-17 16:33:49 +01:00 committed by GitHub
commit 4373ab0784
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1840,14 +1840,14 @@ void CMenus::RenderDetailInfo(CUIRect View, const CServerInfo *pInfo)
if(pInfo)
{
CUIRect Row;
// Localize("Map"); Localize("Game type"); Localize("Version"); Localize("Casual"); Localize("Normal"); Localize("Difficulty"); Localize("Competitive");
static CLocConstString s_aLabels[] = {
"Map", // Localize - these strings are localized within CLocConstString
"Map",
"Game type",
"Version",
"Difficulty" };
static CLocConstString s_aDifficulty[] = {
"Casual", // Localize - these strings are localized within CLocConstString
"Casual",
"Normal",
"Competitive" };