blob: a277923428a9ac2f284f076682c009d1288e21c3 (
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
29
30
31
32
33
34
35
36
37
|
//WIN InstallDialog
function getTutorialSteps()
{
return [
function() {
tutorial.text = qsTr("This mod has been packaged in a way that Mod Organizer did not automatically "
+ "recognize...")
waitForClick()
},
function() {
tutorial.text = qsTr("You can use drag&drop on this list to fix the structure of the mod.")
highlightItem("treeContent", false)
waitForClick()
},
function() {
tutorial.text = qsTr("The correct structure replicates the data-directory of the game. That means "
+ "esps, the \"meshes\"- or \"textures\"-directory and so on should be directly "
+ "below \"<data>\".")
waitForClick()
},
function() {
tutorial.text = qsTr("You can also disable files and directories that you don't want to unpack.")
waitForClick()
},
function() {
tutorial.text = qsTr("From the context menu (right-click) you can open textfiles, in case "
+ "you want to access a readme.")
waitForClick()
},
function() {
tutorial.text = qsTr("This text will turn green if MO thinks the structure looks good.")
highlightItem("problemLabel", false)
manager.finishWindowTutorial("InstallDialog")
waitForClick()
}
]
}
|