summaryrefslogtreecommitdiff
path: root/src/tutorials/tutorial_firststeps_modinfo.js
blob: 1ed0dab7ee295490db2d939179eada8ab8f94b95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function getTutorialSteps()
{
    return [
        function() {
            tutorial.text = qsTr("This dialog tries to expose as much information about a mod as possible. "
                                +"Depending on the mod this may include readmes, screenshots, optional plugins and so on. "
                                +"If a certain type of information was not found in a mod, the corresponding tab "
                                +"is grayed out.")
            highlightItem("tabWidget", false)
            waitForClick()
        },
        function() {
            tutorial.text = qsTr("If you installed the mod from Nexus, the corresponding tab should give you direct "
                                +"access to the mod page.")
            waitForClick()
        },
        function() {
            unhighlight()
            tutorial.text = qsTr("We may revisit this screen in later tutorials.")
            waitForClick()
        }
    ]
}