Fixed appending issue

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@4343 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2009-12-22 22:05:24 +00:00
parent 7d1c82d73c
commit 6c2f86e9b8

View File

@ -160,13 +160,14 @@ void RaceSetupScreen::init()
if (!m_inited) if (!m_inited)
{ {
irr::core::stringw name1 = irr::core::stringw(RaceManager::getNameOf(RaceManager::MINOR_MODE_NORMAL_RACE)) + irr::core::stringw name1 = irr::core::stringw(RaceManager::getNameOf(RaceManager::MINOR_MODE_NORMAL_RACE)) +
L"\n" + L"\n";
_("All blows allowed, so catch weapons and make clever use of them!"); name1 += _("All blows allowed, so catch weapons and make clever use of them!");
w2->addItem( name1, "normal", "/gui/mode_normal.png"); w2->addItem( name1, "normal", "/gui/mode_normal.png");
irr::core::stringw name2 = irr::core::stringw(RaceManager::getNameOf(RaceManager::MINOR_MODE_TIME_TRIAL)) + irr::core::stringw name2 = irr::core::stringw(RaceManager::getNameOf(RaceManager::MINOR_MODE_TIME_TRIAL)) +
L"\n" + L"\n";
_("Contains no powerups, so only your driving skills matter!"); name2 += _("Contains no powerups, so only your driving skills matter!");
w2->addItem( name2, "timetrial", "/gui/mode_tt.png"); w2->addItem( name2, "timetrial", "/gui/mode_tt.png");
if (unlock_manager->isLocked("followtheleader")) if (unlock_manager->isLocked("followtheleader"))
@ -177,16 +178,16 @@ void RaceSetupScreen::init()
else else
{ {
irr::core::stringw name3 = irr::core::stringw(RaceManager::getNameOf(RaceManager::MINOR_MODE_FOLLOW_LEADER)) + irr::core::stringw name3 = irr::core::stringw(RaceManager::getNameOf(RaceManager::MINOR_MODE_FOLLOW_LEADER)) +
L"\n" + L"\n";
_("Run for second place, as the last kart will be disqualified every time the counter hits zero. Beware : going in front of the leader will get you eliminated too!"); name3 += _("Run for second place, as the last kart will be disqualified every time the counter hits zero. Beware : going in front of the leader will get you eliminated too!");
w2->addItem(name3, "ftl", "/gui/mode_ftl.png", false); w2->addItem(name3, "ftl", "/gui/mode_ftl.png", false);
} }
if (race_manager->getNumPlayers() > 1) if (race_manager->getNumPlayers() > 1)
{ {
irr::core::stringw name4 = irr::core::stringw(RaceManager::getNameOf(RaceManager::MINOR_MODE_3_STRIKES)) + irr::core::stringw name4 = irr::core::stringw(RaceManager::getNameOf(RaceManager::MINOR_MODE_3_STRIKES)) +
L"\n" + L"\n";
_("Hit others with weapons until they lose all their lives. (Only in multiplayer games)"); name4 += _("Hit others with weapons until they lose all their lives. (Only in multiplayer games)");
w2->addItem( name4, "3strikes", "/gui/mode_3strikes.png"); w2->addItem( name4, "3strikes", "/gui/mode_3strikes.png");
} }