1/* GCompris
2 *
3 * SPDX-FileCopyrightText: 2016 Divyam Madaan <divyam3897@gmail.com>
4 *
5 * Authors:
6 *   Divyam Madaan <divyam3897@gmail.com>
7 *
8 *   SPDX-License-Identifier: GPL-3.0-or-later
9 */
10import QtQuick 2.9
11
12QtObject {
13    property bool isEmbedded: true
14    property bool allowExpertMode: true
15    property string imagesPrefix: "qrc:/gcompris/src/activities/categorization/resource/images/monuments/"
16    property var levels: [
17        {
18            "type": "lesson",
19            "name": qsTr("Monuments"),
20            "image": imagesPrefix + "colosseum.jpg",
21            "content": [
22                {
23                    "instructions": qsTr("Place the MONUMENTS to the right and other objects to the left"),
24                    "image": imagesPrefix + "victoriaMemorial.jpg",
25                    "maxNumberOfGood": 6,
26                    "maxNumberOfBad": 6,
27                    "prefix": "qrc:/gcompris/src/activities/categorization/resource/images/",
28                    "good": ["monuments/bayterek.jpg","monuments/burj.jpg","monuments/cathedral.jpg","monuments/colosseum.jpg","monuments/beandenburgGate.jpg","monuments/arcDeTriomphe.jpg"],
29                    "bad": ["renewable/windmill5.jpg","renewable/dam2.jpg","tools/tweezer.jpg","others/bulb.jpg","others/pan.jpg","others/knife.jpg"]
30                },
31                {
32                    "instructions": qsTr("Place the MONUMENTS to the right and other objects to the left"),
33                    "image": imagesPrefix + "parthenon.jpg",
34                    "maxNumberOfGood": 6,
35                    "maxNumberOfBad": 6,
36                    "prefix": "qrc:/gcompris/src/activities/categorization/resource/images/",
37                    "good": ["monuments/christTheRedeemer.jpg","monuments/eiffelTower.jpg","monuments/empireState.jpg" ,"monuments/greatPyramid.jpg","monuments/greatWall.jpg","monuments/IndiaGate.jpg"],
38                    "bad": ["fishes/fish3.jpg","fishes/fish5.jpg","renewable/dam2.jpg","others/spoons.jpg","others/igloo.jpg","tools/measuringTape.jpg"]
39                },
40                {
41                    "instructions": qsTr("Place the MONUMENTS to the right and other objects to the left"),
42                    "image": imagesPrefix + "monument2.jpg",
43                    "maxNumberOfGood": 5,
44                    "maxNumberOfBad": 4,
45                    "prefix": "qrc:/gcompris/src/activities/categorization/resource/images/",
46                    "good": ["monuments/jucheTower.jpg","monuments/kutubMinar.jpg","monuments/leaningTowerOfPisa.jpg" ,"monuments/leninMuseum.jpg","monuments/monument1.jpg"],
47                    "bad": ["fishes/fish7.jpg","fishes/fish16.jpg","tools/hammer4.jpg","tools/sprinkler.jpg"]
48                },
49                {
50                    "instructions": qsTr("Place the MONUMENTS to the right and other objects to the left"),
51                    "image": imagesPrefix + "greatPyramid.jpg",
52                    "maxNumberOfGood": 5,
53                    "maxNumberOfBad": 4,
54                    "prefix": "qrc:/gcompris/src/activities/categorization/resource/images/",
55                    "good": ["monuments/mountRushmore.jpg","monuments/operaHouse.jpg","monuments/parthenon.jpg","monuments/statueOfLiberty.jpg","monuments/tajMahal.jpg"],
56                    "bad": ["renewable/solar2.jpg","renewable/geothermal.jpg","tools/scissor.jpg","tools/stripper1.png"]
57                },
58                {
59                    "instructions": qsTr("Place the MONUMENTS to the right and other objects to the left"),
60                    "image": imagesPrefix + "beandenburgGate.jpg",
61                    "maxNumberOfGood": 3,
62                    "maxNumberOfBad": 3,
63                    "prefix": "qrc:/gcompris/src/activities/categorization/resource/images/",
64                    "good": ["monuments/usCapitol.jpg","monuments/victoriaMemorial.jpg","monuments/zimniPalace.jpg"],
65                    "bad": ["tools/plier2.jpg","others/pillow.jpg","renewable/solar5.jpg"]
66                },
67                {
68                    "instructions": qsTr("Place the MONUMENTS to the right and other objects to the left"),
69                    "image": imagesPrefix + "IndiaGate.jpg",
70                    "maxNumberOfGood": 2,
71                    "maxNumberOfBad": 4,
72                    "prefix": "qrc:/gcompris/src/activities/categorization/resource/images/",
73                    "good": ["monuments/monument2.jpg","monuments/monument3.jpg"],
74                    "bad": ["others/volleyball.jpg","tools/sickle.jpg","others/chair.jpg","renewable/dam4.jpg"]
75                }
76            ]
77        }
78    ]
79}
80