Fixes bug #7295: " Computer vs Computer" not in string_table.
This commit is contained in:
parent
daeab295a4
commit
dd9267a472
2 changed files with 3 additions and 1 deletions
|
@ -257,6 +257,7 @@ login="Login"
|
|||
must_login="You must log in to this server"
|
||||
|
||||
quit_message="Do you really want to quit?"
|
||||
end_turn_message="Some units have movement left. Do you really want to end your turn?"
|
||||
|
||||
advance_unit_heading="Advance Unit"
|
||||
advance_unit_message="What should our victorious unit become?"
|
||||
|
@ -435,6 +436,7 @@ fog_of_war="Fog Of War"
|
|||
observers="Observers"
|
||||
im_ready="I'm Ready"
|
||||
player_type="Player/Type"
|
||||
ai_players=" Computer vs Computer "
|
||||
race="Race"
|
||||
team="Team"
|
||||
color="Color"
|
||||
|
|
|
@ -46,7 +46,7 @@ mp_connect::mp_connect(display& disp, std::string game_name,
|
|||
combos_team_(), combos_color_(), sliders_gold_(),
|
||||
launch_(gui::button(disp, string_table["im_ready"])),
|
||||
cancel_(gui::button(disp, string_table["cancel"])),
|
||||
ai_(gui::button(disp, " Computer vs Computer ")),
|
||||
ai_(gui::button(disp, string_table["ai_players"])),
|
||||
width_(630), height_(290), full_(false)
|
||||
{
|
||||
// Send Initial information
|
||||
|
|
Loading…
Add table
Reference in a new issue