blob: 19926eb8724934f16f242e43a35aa7b22a71cfac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
function getTutorialSteps()
{
tutorialCanceller.visible = false
return [
function() {
highlightItem("tabWidget", true)
tutorial.text = qsTr("It is possible to download files directly from Nexus.\n\n"
+ "Please open the \"Nexus\" tab.")
tutorialControl.waitForTabOpen("tabWidget", "nexusTab")
},
function() {
highlightItem("associateButton", false)
tutorial.text = qsTr("Clicking on this button should register Nexus \"Download with Manager\" buttons "
+"to download with Mod Organizer.")
waitForClick()
},
function() {
highlightItem("nexusBox", false)
tutorial.text = qsTr("Use this interface to authorize Mod Organizer with Nexus Mods. "
+"This login is used for all API connections - downloads, updates "
+"etc. MO2 uses the Windows Credential Manager to store "
+"these credentials securely.")
waitForClick()
}
]
}
|