Index: ps/trunk/binaries/data/mods/public/gui/gamesetup/gamesetup.js =================================================================== --- ps/trunk/binaries/data/mods/public/gui/gamesetup/gamesetup.js +++ ps/trunk/binaries/data/mods/public/gui/gamesetup/gamesetup.js @@ -724,6 +724,7 @@ */ var g_PlayerDropdowns = { "playerAssignment": { + "tooltip": (playerIdx) => translate("Select player."), "labels": (playerIdx) => g_PlayerAssignmentList.Name || [], "colors": (playerIdx) => g_PlayerAssignmentList.Color || [], "ids": (playerIdx) => g_PlayerAssignmentList.Choice || [], @@ -758,6 +759,7 @@ "autocomplete": 100, }, "playerTeam": { + "tooltip": (playerIdx) => translate("Select player's team."), "labels": (playerIdx) => g_PlayerTeamList.label, "ids": (playerIdx) => g_PlayerTeamList.id, "default": (playerIdx) => 0, @@ -769,7 +771,7 @@ "enabled": () => g_GameAttributes.mapType != "scenario", }, "playerCiv": { - "tooltip": (hoverIdx, playerIdx) => g_PlayerCivList.tooltip[hoverIdx] || translate("Choose the civilization for this player"), + "tooltip": (hoverIdx, playerIdx) => g_PlayerCivList.tooltip[hoverIdx] || translate("Choose the civilization for this player."), "labels": (playerIdx) => g_PlayerCivList.name, "colors": (playerIdx) => g_PlayerCivList.color, "ids": (playerIdx) => g_PlayerCivList.code, @@ -783,6 +785,7 @@ "autocomplete": 90, }, "playerColorPicker": { + "tooltip": (playerIdx) => translate("Pick a color."), "labels": (playerIdx) => g_PlayerColorPickerList.map(color => "■"), "colors": (playerIdx) => g_PlayerColorPickerList.map(color => rgbToGuiColor(color)), "ids": (playerIdx) => g_PlayerColorPickerList.map((color, index) => index), @@ -1027,7 +1030,7 @@ !g_IsNetworked || Object.keys(g_PlayerAssignments).every(guid => g_PlayerAssignments[guid].status || g_PlayerAssignments[guid].player == -1) ? translate("Start a new game with the current settings.") : - translate("Start a new game with the current settings (disabled until all players are ready)"), + translate("Start a new game with the current settings (disabled until all players are ready)."), "enabled": () => !g_GameStarted && ( !g_IsController || Object.keys(g_PlayerAssignments).every(guid => g_PlayerAssignments[guid].status || Index: ps/trunk/binaries/data/mods/public/gui/gamesetup/gamesetup.xml =================================================================== --- ps/trunk/binaries/data/mods/public/gui/gamesetup/gamesetup.xml +++ ps/trunk/binaries/data/mods/public/gui/gamesetup/gamesetup.xml @@ -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,19 +104,13 @@ - - Pick a color. - - - Select player. - + + - - Select player's team. - + @@ -128,7 +122,7 @@ - Show this message in the future + Show this message in the future. saveSettingAndWriteToUserConfig("gui.gamesetup.enabletips", String(this.checked));