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 *   Timothée Giet <animtim@gmail.com> (map update svg)
9 *
10 *   SPDX-License-Identifier: GPL-3.0-or-later
11 */
12import QtQuick 2.9
13
14QtObject {
15    property string instruction: qsTr("Continents")
16    property var levels: [
17    {
18        "pixmapfile": "continents/back.svgz",
19        "type": "SHAPE_BACKGROUND_IMAGE"
20    },
21    {
22        "pixmapfile": "continents/oceania.svgz",
23        "soundFile": "voices-$CA/$LOCALE/geography/oceania.$CA",
24        "toolTipText": qsTr("Oceania"),
25        "x": "0.8694",
26        "y": "0.6471"
27    },
28    {
29        "pixmapfile": "continents/europa.svgz",
30        "soundFile": "voices-$CA/$LOCALE/geography/europe.$CA",
31        "toolTipText": qsTr("Europe"),
32        "x": "0.4851",
33        "y": "0.1488"
34    },
35    {
36        "pixmapfile": "continents/asia.svgz",
37        "soundFile": "voices-$CA/$LOCALE/geography/asia.$CA",
38        "toolTipText": qsTr("Asia"),
39        "x": "0.6814",
40        "y": "0.2886"
41    },
42    {
43        "pixmapfile": "continents/antarctica.svgz",
44        "soundFile": "voices-$CA/$LOCALE/geography/antarctica.$CA",
45        "toolTipText": qsTr("Antarctica"),
46        "x": "0.4647",
47        "y": "0.887"
48    },
49    {
50        "pixmapfile": "continents/america.svgz",
51        "soundFile": "voices-$CA/$LOCALE/geography/america.$CA",
52        "toolTipText": qsTr("America"),
53        "x": "0.219",
54        "y": "0.4216"
55    },
56    {
57        "pixmapfile": "continents/africa.svgz",
58        "soundFile": "voices-$CA/$LOCALE/geography/africa.$CA",
59        "toolTipText": qsTr("Africa"),
60        "x": "0.4782",
61        "y": "0.4832"
62    }
63    ]
64}
65