Joerg's changes to the third help screen.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1875 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
cosmosninja 2008-05-12 04:55:46 +00:00
parent e13203677e
commit 47057e916b

View File

@ -51,29 +51,30 @@ HelpPageThree::HelpPageThree()
if(!unlock_manager->isLocked("grandprix"))
{
widget_manager->addTextWgt( WTOK_TXT1, 100, 10,
_("Grand Prix\n\
Race through a group of tracks, the one with the most \n\
points wins!"));
_("Grand Prix: Win victory points \n\
by racing through a group of tracks, \n\
most points wins (shortest time in case of a tie!) "));
widget_manager->setWgtTextSize( WTOK_TXT1, WGT_FNT_SML );
widget_manager->addEmptyWgt( WidgetManager::WGT_NONE, 100, 1 );
}
widget_manager->addTextWgt( WTOK_TXT2, 100, 10,
_("Quick race\n\
Configurable track selection "));
_("Quick race: Pick a single track, shortest time wins. "));
widget_manager->setWgtTextSize( WTOK_TXT2, WGT_FNT_SML );
widget_manager->addEmptyWgt( WidgetManager::WGT_NONE, 100, 1 );
widget_manager->addTextWgt( WTOK_TXT3, 100, 10,
_("Time Trial\n\
Single kart race through a track against the clock! \n\
Boosters items are disabled."));
_("Time Trial: As quick race, but no items. "));
widget_manager->setWgtTextSize( WTOK_TXT3, WGT_FNT_SML );
widget_manager->addEmptyWgt( WidgetManager::WGT_NONE, 100, 1 );
if(!unlock_manager->isLocked("followleader"))
{
widget_manager->addTextWgt( WTOK_TXT4, 100, 10,
_("Follow the leader\n\
The kart that is the farthest from the leader kart is\n\
disqualified every few seconds!"));
_("Follow the leader: Stay behind the leader kart.\n\
When the countdown reaches zero, a kart ahead\n\
of the leader or the last kart is eliminated."));
widget_manager->setWgtTextSize( WTOK_TXT4, WGT_FNT_SML );
widget_manager->addEmptyWgt( WidgetManager::WGT_NONE, 100, 1 );
}