Translations:Development/74/zh: Difference between revisions

From DDraceNetwork
(Created page with "// 应该这么做: const char *pStr = Team == TEAM_RED ? Localize("Red team") : Localize("Blue team"); </syntaxhighlight>")
 
No edit summary
 
Line 1: Line 1:
// 应该这做:
// 应该这做:
const char *pStr = Team == TEAM_RED ? Localize("Red team") : Localize("Blue team");
const char *pStr = Team == TEAM_RED ? Localize("Red team") : Localize("Blue team");
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 05:42, 30 July 2023

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Development)
// Do this instead:
const char *pStr = Team == TEAM_RED ? Localize("Red team") : Localize("Blue team");
</syntaxhighlight>

// 应该这样做: const char *pStr = Team == TEAM_RED ? Localize("Red team") : Localize("Blue team"); </syntaxhighlight>