1/* GCompris
2 *
3 * SPDX-FileCopyrightText: 2015 Bruno Coudoin <bruno.coudoin@gcompris.net>
4 *
5 * Authors:
6 *   Bruno Coudoin <bruno.coudoin@gcompris.net> (GTK+ version)
7 *   Pulkit Gupta <pulkitgenius@gmail.com> (Qt Quick port)
8 *
9 *   SPDX-License-Identifier: GPL-3.0-or-later
10 */
11import QtQuick 2.9
12
13QtObject {
14   property string instruction: qsTr("The 4 Seasons")
15   property var levels: [
16      {
17          "pixmapfile": "images/autumn.svg",
18          "x": 0.25,
19          "y": 0.65,
20          "width": 0.4,
21          "height": 0.25
22      },
23      {
24          "pixmapfile": "images/summer.svg",
25          "x": 0.75,
26          "y": 0.2,
27          "width": 0.4,
28          "height": 0.25
29      },
30      {
31          "pixmapfile": "images/spring.svg",
32          "x": 0.25,
33          "y": 0.2,
34          "width": 0.4,
35          "height": 0.25
36      },
37      {
38          "pixmapfile": "images/winter.svg",
39          "x": 0.75,
40          "y": 0.65,
41          "width": 0.4,
42          "height": 0.25
43      },
44      {
45		  "text": qsTr("Spring"),
46		  "x": "0.25",
47		  "y": 0.4,
48		  "width": "0.4",
49          "height": 0.1,
50		  "type": "DisplayText"
51      },
52      {
53		  "text": qsTr("Summer"),
54		  "x": "0.75",
55		  "y": 0.4,
56		  "width": "0.4",
57          "height": 0.1,
58		  "type": "DisplayText"
59      },
60      {
61		  "text": qsTr("Autumn"),
62		  "x": "0.25",
63		  "y": 0.85,
64		  "width": "0.4",
65          "height": 0.1,
66		  "type": "DisplayText"
67      },
68      {
69		  "text": qsTr("Winter"),
70		  "x": "0.75",
71		  "y": 0.85,
72		  "width": "0.4",
73          "height": 0.1,
74		  "type": "DisplayText"
75      }
76   ]
77}
78