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("North America")
16    property var levels: [
17    {
18        "pixmapfile": "northamerica/north_america.svgz",
19        "type": "SHAPE_BACKGROUND_IMAGE"
20    },
21    {
22        "pixmapfile": "northamerica/usa.svgz",
23        "soundFile": "voices-$CA/$LOCALE/geography/usa.$CA",
24        "toolTipText": qsTr("United States of America"),
25        "x": "0.3422",
26        "y": "0.5581"
27    },
28    {
29        "pixmapfile": "northamerica/mexico.svgz",
30        "soundFile": "voices-$CA/$LOCALE/geography/mexico.$CA",
31        "toolTipText": qsTr("Mexico"),
32        "x": "0.4825",
33        "y": "0.8641"
34    },
35    {
36        "pixmapfile": "northamerica/greenland.svgz",
37        "soundFile": "voices-$CA/$LOCALE/geography/greenland.$CA",
38        "toolTipText": qsTr("Greenland"),
39        "x": "0.8257",
40        "y": "0.1815"
41    },
42    {
43        "pixmapfile": "northamerica/canada.svgz",
44        "soundFile": "voices-$CA/$LOCALE/geography/canada.$CA",
45        "toolTipText": qsTr("Canada"),
46        "x": "0.515",
47        "y": "0.3138"
48    }
49    ]
50}
51