1/* GCompris
2 *
3 * SPDX-FileCopyrightText: 2021 Timothée Giet <animtim@gmail.com>
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("South Asia")
16    property var levels: [
17    {
18        "pixmapfile": "asiasouth/south_asia.svgz",
19        "type": "SHAPE_BACKGROUND_IMAGE"
20    },
21    {
22        "pixmapfile": "asiasouth/india.svgz",
23        "soundFile": "voices-$CA/$LOCALE/geography/india.$CA",
24        "toolTipText": qsTr("India"),
25        "x": "0.6032",
26        "y": "0.4832"
27    },
28    {
29        "pixmapfile": "asiasouth/sri_lanka.svgz",
30        "soundFile": "voices-$CA/$LOCALE/geography/sri_lanka.$CA",
31        "toolTipText": qsTr("Sri Lanka"),
32        "x": "0.5512",
33        "y": "0.8412"
34    },
35    {
36        "pixmapfile": "asiasouth/pakistan.svgz",
37        "soundFile": "voices-$CA/$LOCALE/geography/pakistan.$CA",
38        "toolTipText": qsTr("Pakistan"),
39        "x": "0.2369",
40        "y": "0.232"
41    },
42    {
43        "pixmapfile": "asiasouth/afghanistan.svgz",
44        "soundFile": "voices-$CA/$LOCALE/geography/afghanistan.$CA",
45        "toolTipText": qsTr("Afghanistan"),
46        "x": "0.2038",
47        "y": "0.137"
48    },
49    {
50        "pixmapfile": "asiasouth/nepal.svgz",
51        "soundFile": "voices-$CA/$LOCALE/geography/nepal.$CA",
52        "toolTipText": qsTr("Nepal"),
53        "x": "0.6391",
54        "y": "0.2876"
55    },
56    {
57        "pixmapfile": "asiasouth/bangladesh.svgz",
58        "soundFile": "voices-$CA/$LOCALE/geography/bangladesh.$CA",
59        "toolTipText": qsTr("Bangladesh"),
60        "x": "0.8041",
61        "y": "0.4143"
62    },
63    {
64        "pixmapfile": "asiasouth/bhutan.svgz",
65        "soundFile": "voices-$CA/$LOCALE/geography/bhutan.$CA",
66        "toolTipText": qsTr("Bhutan"),
67        "x": "0.8064",
68        "y": "0.3113"
69    },
70    {
71        "pixmapfile": "asiasouth/maldives.svgz",
72        "soundFile": "voices-$CA/$LOCALE/geography/maldives.$CA",
73        "toolTipText": qsTr("Maldives"),
74        "x": "0.356",
75        "y": "0.9539"
76    }
77    ]
78}
79