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> (new SVG map)
9 *
10 *   SPDX-License-Identifier: GPL-3.0-or-later
11 */
12import QtQuick 2.9
13
14QtObject {
15   property int numberOfSubLevel: 1
16   property string instruction: qsTr("Council areas of Scotland (North)")
17   property var levels: [
18      {
19         "pixmapfile" : "scotland/scotland-north.svgz",
20         "type" : "SHAPE_BACKGROUND_IMAGE"
21      },
22      {
23         "pixmapfile" : "scotland/aberdeenshire.svgz",
24         //: Council area of Scotland: Aberdeenshire
25         "toolTipText" : qsTr("Aberdeenshire"),
26         "x" : "0.7071",
27         "y" : "0.8299"
28      },
29      {
30         "pixmapfile" : "scotland/aberdeen.svgz",
31         //: Council area of Scotland: Aberdeen
32         "toolTipText" : qsTr("Aberdeen"),
33         "x" : "0.788",
34         "y" : "0.8454"
35      },
36      {
37         "pixmapfile" : "scotland/moray.svgz",
38         //: Council area of Scotland: Moray
39         "toolTipText" : qsTr("Moray"),
40         "x" : "0.6522",
41         "y" : "0.7892"
42      },
43      {
44         "pixmapfile" : "scotland/na_h-eileanan_siar.svgz",
45         //: Council area of Scotland: Na h-Eileanan Siar
46         "toolTipText" : qsTr("Na h-Eileanan Siar"),
47         "x" : "0.146",
48         "y" : "0.7138"
49      },
50      {
51         "pixmapfile" : "scotland/orkney_islands.svgz",
52         //: Council area of Scotland: Orkney Islands
53         "toolTipText" : qsTr("Orkney Islands"),
54         "x" : "0.6982",
55         "y" : "0.4188"
56      },
57      {
58         "pixmapfile" : "scotland/shetland_islands.svgz",
59         //: Council area of Scotland: Shetland Islands
60         "toolTipText" : qsTr("Shetland Islands"),
61         "x" : "0.8868",
62         "y" : "0.1689"
63      },
64      {
65         "pixmapfile" : "scotland/highland.svgz",
66         //: Council area of Scotland: Highland
67         "toolTipText" : qsTr("Highland"),
68         "x" : "0.4206",
69         "y" : "0.7425"
70      }
71   ]
72}
73