Explain what 'Advertise' means, fixes #3382

This commit is contained in:
Nubbie 2016-04-24 21:24:28 +02:00 committed by Michael Steenbeek
parent cea0f30121
commit 44a92e3f6b
3 changed files with 4 additions and 1 deletions

View File

@ -4110,6 +4110,7 @@ STR_5801 :Disable littering
STR_5802 :{SMALLFONT}{BLACK}Stops guests from littering and vomiting
STR_5803 :{SMALLFONT}{BLACK}Rotate selected map element
STR_5804 :Mute sound
STR_5805 :{SMALLFONT}{BLACK}If checked, your server will be added to the{NEWLINE}public server list so everyone can find it
#############

View File

@ -2441,6 +2441,8 @@ enum {
STR_CHEAT_DISABLE_LITTERING_TIP = 5802,
STR_SHORTCUT_MUTE_SOUND = 5804,
STR_ADVERTISE_SERVER_TIP = 5805,
// Have to include resource strings (from scenarios and objects) for the time being now that language is partially working
STR_COUNT = 32768

View File

@ -61,7 +61,7 @@ static rct_widget window_server_start_widgets[] = {
{ WWT_SPINNER, 1, 120, WW-8, 68, 77, 1871, STR_NONE }, // max players
{ WWT_DROPDOWN_BUTTON, 1, WW-18, WW-8, 68, 72, STR_NUMERIC_UP, STR_NONE },
{ WWT_DROPDOWN_BUTTON, 1, WW-18, WW-8, 72, 76, STR_NUMERIC_DOWN, STR_NONE },
{ WWT_CHECKBOX, 1, 6, WW-8, 85, 91, STR_ADVERTISE, STR_NONE }, // advertise checkbox
{ WWT_CHECKBOX, 1, 6, WW-8, 85, 91, STR_ADVERTISE, STR_ADVERTISE_SERVER_TIP }, // advertise checkbox
{ WWT_DROPDOWN_BUTTON, 1, 6, 106, WH-6-11, WH-6, STR_NEW_GAME, STR_NONE }, // start server button
{ WWT_DROPDOWN_BUTTON, 1, 112, 212, WH-6-11, WH-6, STR_LOAD_GAME, STR_NONE },
{ WIDGETS_END },