Use Free-For-All for name instead

This commit is contained in:
Benau 2018-08-13 09:00:37 +08:00
parent 41a3a1056e
commit 8aab1c0a69
3 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@
<spacer width="25" height="25"/> <spacer width="25" height="25"/>
<bubble proportion="1" height="100%" <bubble proportion="1" height="100%"
I18N="In the help menu" I18N="In the help menu"
text="There are 3 types of battle mode: In 3 Strikes Battle, you need to hit others with weapons until they lose all their lives. In Free For All, the player who hits others the most will win in a given hit or time limit. In Capture The Flag, your team needs to bring the flag of the other team to your own flag base, as long as your flag is not captured by the other team."/> text="There are 3 types of battle mode: In 3 Strikes Battle, you need to hit others with weapons until they lose all their lives. In Free-For-All, the player who hits others the most will win in a given hit or time limit. In Capture The Flag, your team needs to bring the flag of the other team to your own flag base, as long as your flag is not captured by the other team."/>
</div> </div>
<div width="100%" proportion="2" layout="horizontal-row"> <div width="100%" proportion="2" layout="horizontal-row">

View File

@ -190,7 +190,7 @@ core::stringw NetworkConfig::getModeName(unsigned id)
case 7: case 7:
// I18n: Free for all means a deathmatch game with battle mode in // I18n: Free for all means a deathmatch game with battle mode in
// networking // networking
return _("Free For All"); return _("Free-For-All");
case 8: case 8:
return _("Capture The Flag"); return _("Capture The Flag");
default: default:

View File

@ -174,7 +174,7 @@ void CreateServerScreen::updateMoreOption(int game_mode)
m_more_options_spinner->setVisible(true); m_more_options_spinner->setVisible(true);
m_more_options_spinner->clearLabels(); m_more_options_spinner->clearLabels();
//I18N: In the create server screen for battle server //I18N: In the create server screen for battle server
m_more_options_spinner->addLabel(_("Free For All")); m_more_options_spinner->addLabel(_("Free-For-All"));
//I18N: In the create server screen for battle server //I18N: In the create server screen for battle server
m_more_options_spinner->addLabel(_("Capture The Flag")); m_more_options_spinner->addLabel(_("Capture The Flag"));
m_more_options_spinner->setValue(m_prev_value); m_more_options_spinner->setValue(m_prev_value);