1
0
forked from 0ad/0ad

Fix wrong Single-player main menu item tooltip and some indentation from adf448db4d, as reported by Freagarach, apply 3968760129/D2312 to that string.

This was SVN commit r23360.
This commit is contained in:
elexis 2020-01-10 19:17:46 +00:00
parent d12e5a9df0
commit 7567f56c71

View File

@ -47,11 +47,11 @@ var g_MainMenuItems = [
},
{
"caption": translate("Single-player"),
"tooltip": translate("Click here to start a new single-player game."),
"tooltip": translate("Challenge the computer player to a single-player match."),
"submenu": [
{
"caption": translate("Matches"),
"tooltip": translate("Start the economic tutorial."),
"tooltip": translate("Click here to start a new single-player game."),
"onPress": () => {
Engine.SwitchGuiPage("page_gamesetup.xml", {});
}
@ -193,11 +193,11 @@ var g_MainMenuItems = [
"tooltip": translate("Exits the game."),
"onPress": () => {
messageBox(
400, 200,
translate("Are you sure you want to quit 0 A.D.?"),
translate("Confirmation"),
[translate("No"), translate("Yes")],
[null, Engine.Exit]);
400, 200,
translate("Are you sure you want to quit 0 A.D.?"),
translate("Confirmation"),
[translate("No"), translate("Yes")],
[null, Engine.Exit]);
}
}
];