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("Transportation")
15   property var levels: [
16      {
17          "pixmapfile": "images/celerifere.svg",
18          "x": "0.25",
19          "y": "0.2",
20          "width": 0.4,
21          "height": 0.2
22      },
23      {
24          "pixmapfile": "images/mongolfiere.svg",
25          "x": 0.5,
26          "y": 0.65,
27          "width": 0.4,
28          "height": 0.2
29      },
30      {
31          "pixmapfile": "images/st_rocket.svg",
32          "x": 0.75,
33          "y": 0.2,
34          "width": 0.4,
35          "height": 0.2
36      },
37      {
38		  "text": qsTr("1791 Comte de Sivrac's Celerifere"),
39		  "x": "0.25",
40		  "y": 0.4,
41		  "width": "0.4",
42          "height": 0.15,
43		  "type": "DisplayText"
44      },
45      {
46		  "text": qsTr("1783 Montgolfier brothers' hot air balloon"),
47		  "x": "0.5",
48		  "y": 0.85,
49		  "width": "0.4",
50          "height": 0.15,
51		  "type": "DisplayText"
52      },
53      {
54		  "text": qsTr("1829 Stephenson's Rocket Steam locomotive"),
55		  "x": "0.75",
56		  "y": 0.4,
57		  "width": "0.4",
58          "height": 0.15,
59		  "type": "DisplayText"
60      }
61   ]
62}
63