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("East Asia")
16    property var levels: [
17    {
18        "pixmapfile": "asiaeast/east_asia.svgz",
19        "type": "SHAPE_BACKGROUND_IMAGE"
20    },
21    {
22        "pixmapfile": "asiaeast/japan.svgz",
23        "soundFile": "voices-$CA/$LOCALE/geography/japan.$CA",
24        "toolTipText": qsTr("Japan"),
25        "x": "0.8317",
26        "y": "0.5323"
27    },
28    {
29        "pixmapfile": "asiaeast/china.svgz",
30        "soundFile": "voices-$CA/$LOCALE/geography/china.$CA",
31        "toolTipText": qsTr("China"),
32        "x": "0.4211",
33        "y": "0.5046"
34    },
35    {
36        "pixmapfile": "asiaeast/mongolia.svgz",
37        "soundFile": "voices-$CA/$LOCALE/geography/mongolia.$CA",
38        "toolTipText": qsTr("Mongolia"),
39        "x": "0.4163",
40        "y": "0.2109"
41    },
42    {
43        "pixmapfile": "asiaeast/north_korea.svgz",
44        "soundFile": "voices-$CA/$LOCALE/geography/north_korea.$CA",
45        "toolTipText": qsTr("North Korea"),
46        "x": "0.7345",
47        "y": "0.3854"
48    },
49    {
50        "pixmapfile": "asiaeast/south_korea.svgz",
51        "soundFile": "voices-$CA/$LOCALE/geography/south_korea.$CA",
52        "toolTipText": qsTr("South Korea"),
53        "x": "0.7473",
54        "y": "0.5047"
55    },
56    {
57        "pixmapfile": "asiaeast/taiwan.svgz",
58        "soundFile": "voices-$CA/$LOCALE/geography/taiwan.$CA",
59        "toolTipText": qsTr("Taiwan"),
60        "x": "0.635",
61        "y": "0.8353"
62    }
63    ]
64}
65