Warning, /education/gcompris/src/activities/geo-country/resource/board/board15_0.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris 0002 * 0003 * SPDX-FileCopyrightText: 2015 Bruno Coudoin <bruno.coudoin@gcompris.net> 0004 * 0005 * Authors: 0006 * Bruno Coudoin <bruno.coudoin@gcompris.net> (GTK+ version) 0007 * Pulkit Gupta <pulkitgenius@gmail.com> (Qt Quick port) 0008 * Timothée Giet <animtim@gmail.com> (new SVG map) 0009 * 0010 * SPDX-License-Identifier: GPL-3.0-or-later 0011 */ 0012 import QtQuick 2.12 0013 0014 QtObject { 0015 property int numberOfSubLevel: 1 0016 property string instruction: qsTr("Council areas of Scotland (North)") 0017 property var levels: [ 0018 { 0019 "pixmapfile" : "scotland/scotland-north.svgz", 0020 "type" : "SHAPE_BACKGROUND_IMAGE" 0021 }, 0022 { 0023 "pixmapfile" : "scotland/aberdeenshire.svgz", 0024 //: Council area of Scotland: Aberdeenshire 0025 "toolTipText" : qsTr("Aberdeenshire"), 0026 "x" : "0.7071", 0027 "y" : "0.8299" 0028 }, 0029 { 0030 "pixmapfile" : "scotland/aberdeen.svgz", 0031 //: Council area of Scotland: Aberdeen 0032 "toolTipText" : qsTr("Aberdeen"), 0033 "x" : "0.788", 0034 "y" : "0.8454" 0035 }, 0036 { 0037 "pixmapfile" : "scotland/moray.svgz", 0038 //: Council area of Scotland: Moray 0039 "toolTipText" : qsTr("Moray"), 0040 "x" : "0.6522", 0041 "y" : "0.7892" 0042 }, 0043 { 0044 "pixmapfile" : "scotland/na_h-eileanan_siar.svgz", 0045 //: Council area of Scotland: Na h-Eileanan Siar 0046 "toolTipText" : qsTr("Na h-Eileanan Siar"), 0047 "x" : "0.146", 0048 "y" : "0.7138" 0049 }, 0050 { 0051 "pixmapfile" : "scotland/orkney_islands.svgz", 0052 //: Council area of Scotland: Orkney Islands 0053 "toolTipText" : qsTr("Orkney Islands"), 0054 "x" : "0.6982", 0055 "y" : "0.4188" 0056 }, 0057 { 0058 "pixmapfile" : "scotland/shetland_islands.svgz", 0059 //: Council area of Scotland: Shetland Islands 0060 "toolTipText" : qsTr("Shetland Islands"), 0061 "x" : "0.8868", 0062 "y" : "0.1689" 0063 }, 0064 { 0065 "pixmapfile" : "scotland/highland.svgz", 0066 //: Council area of Scotland: Highland 0067 "toolTipText" : qsTr("Highland"), 0068 "x" : "0.4206", 0069 "y" : "0.7425" 0070 } 0071 ] 0072 }