Index: binaries/data/mods/public/gui/gamesetup/gamesetup.js =================================================================== --- binaries/data/mods/public/gui/gamesetup/gamesetup.js +++ binaries/data/mods/public/gui/gamesetup/gamesetup.js @@ -617,6 +617,7 @@ */ var g_PlayerDropdowns = { "playerAssignment": { + "tooltip": (idx) => translate("Select player."), "labels": (idx) => g_PlayerAssignmentList.Name || [], "colors": (idx) => g_PlayerAssignmentList.Color || [], "ids": (idx) => g_PlayerAssignmentList.Choice || [], @@ -651,6 +652,7 @@ "autocomplete": true, }, "playerTeam": { + "tooltip": (idx) => translate("Select player's team."), "labels": (idx) => g_PlayerTeamList.label, "ids": (idx) => g_PlayerTeamList.id, "default": (idx) => 0, @@ -662,7 +664,7 @@ "enabled": () => g_GameAttributes.mapType != "scenario", }, "playerCiv": { - "tooltip": (hoverIdx, idx) => g_PlayerCivList.tooltip[hoverIdx] || translate("Chose the civilization for this player"), + "tooltip": (hoverIdx, idx) => g_PlayerCivList.tooltip[hoverIdx] || translate("Chose the civilization for this player."), "labels": (idx) => g_PlayerCivList.name, "colors": (idx) => g_PlayerCivList.color, "ids": (idx) => g_PlayerCivList.code, @@ -676,6 +678,7 @@ "autocomplete": true, }, "playerColorPicker": { + "tooltip": (idx) => translate("Pick a color."), "labels": (idx) => g_PlayerColorPickerList.map(color => "■"), "colors": (idx) => g_PlayerColorPickerList.map(color => rgbToGuiColor(color)), "ids": (idx) => g_PlayerColorPickerList.map((color, index) => index), Index: binaries/data/mods/public/gui/gamesetup/gamesetup.xml =================================================================== --- binaries/data/mods/public/gui/gamesetup/gamesetup.xml +++ binaries/data/mods/public/gui/gamesetup/gamesetup.xml @@ -66,7 +66,7 @@ sprite_over="iconInfoWhite" size="85%-37 0 85%-21 16" > - View civilization info + View civilization info. @@ -79,7 +79,7 @@ sprite_over="iconResetWhite" size="85%-16 0 85% 16" > - Reset any civilizations that have been selected to the default (random) + Reset any civilizations that have been selected to the default (random). resetCivilizations(); @@ -104,12 +104,8 @@ - - Pick a color. - - - Select player. - + + Configure AI settings. - - Select player's civilization. - + - - Select player's team. - + @@ -138,7 +130,7 @@ - Show this message in the future + Show this message in the future. saveSPTipsSetting(); @@ -282,7 +274,7 @@ tooltip_style="onscreenToolTip" > More Options - See more game options + See more game options. showMoreOptions(true); @@ -354,7 +346,7 @@ hotkey="cancel" > OK - Close more game options window + Close more game options window. showMoreOptions(false);