Ditch the "titlescreen" nomenclature for player-visible strings

(cherry-picked from commit eacc1e0f6b)
This commit is contained in:
Charles Dang 2018-05-03 05:22:15 +11:00
parent d8fa1b945c
commit 015b1891cf
3 changed files with 3 additions and 3 deletions

View file

@ -126,7 +126,7 @@
definition = "listbox_header"
linked_group = "hotkeys_col_type"
label = _ "titlescreen_hotkeys^T"
tooltip = _ "Available at titlescreen"
tooltip = _ "Available at main menu"
[/toggle_button]
[/column]
[/row]

View file

@ -268,7 +268,7 @@ where
[window]
id = "title_screen"
description = "The game's title screen."
description = "The game's main menu."
[resolution]
definition = "title_screen"

View file

@ -121,7 +121,7 @@ std::array<hotkey_command_temp, HOTKEY_NULL - 1> master_hotkey_list {{
{ HOTKEY_STOP_NETWORK, "stopnetwork", N_("Pause Network Game"), false, scope_game, HKCAT_GENERAL, "" },
{ HOTKEY_START_NETWORK, "startnetwork", N_("Continue Network Game"), false, scope_game, HKCAT_GENERAL, "" },
{ HOTKEY_SURRENDER, "surrender", N_("Surrender Game"), false, scope_game, HKCAT_SCENARIO, "" },
{ HOTKEY_QUIT_GAME, "quit", N_("Quit to Titlescreen"), false, scope_game | scope_editor, HKCAT_GENERAL, "" },
{ HOTKEY_QUIT_GAME, "quit", N_("Quit to Main Menu"), false, scope_game | scope_editor, HKCAT_GENERAL, "" },
{ HOTKEY_LABEL_TEAM_TERRAIN, "labelteamterrain", N_("Set Team Label"), false, scope_game, HKCAT_MAP, "" },
{ HOTKEY_LABEL_TERRAIN, "labelterrain", N_("Set Label"), false, scope_game, HKCAT_MAP, "" },
{ HOTKEY_CLEAR_LABELS, "clearlabels", N_("Clear Labels"), false, scope_game, HKCAT_MAP, "" },