Warning, /education/gcompris/src/activities/geo-country/resource/board/board2_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 string instruction: qsTr("States of Germany") 0016 property var levels: [ 0017 { 0018 "pixmapfile" : "germany/germany.svgz", 0019 "type" : "SHAPE_BACKGROUND_IMAGE" 0020 }, 0021 { 0022 "pixmapfile" : "germany/thuringia.svgz", 0023 //: State of Germany: Thuringia 0024 "toolTipText" : qsTr("Thuringia"), 0025 "x" : "0.5837", 0026 "y" : "0.5303" 0027 }, 0028 { 0029 "pixmapfile" : "germany/schleswig-holstein.svgz", 0030 //: State of Germany: Schleswig-Holstein 0031 "toolTipText" : qsTr("Schleswig-Holstein"), 0032 "x" : "0.4397", 0033 "y" : "0.1253" 0034 }, 0035 { 0036 "pixmapfile" : "germany/saxony.svgz", 0037 //: State of Germany: Saxony 0038 "toolTipText" : qsTr("Saxony"), 0039 "x" : "0.8065", 0040 "y" : "0.5284" 0041 }, 0042 { 0043 "pixmapfile" : "germany/saxony-anhalt.svgz", 0044 //: State of Germany: Saxony-Anhalt 0045 "toolTipText" : qsTr("Saxony-Anhalt"), 0046 "x" : "0.644", 0047 "y" : "0.3984" 0048 }, 0049 { 0050 "pixmapfile" : "germany/saarland.svgz", 0051 //: State of Germany: Saarland 0052 "toolTipText" : qsTr("Saarland"), 0053 "x" : "0.1238", 0054 "y" : "0.715" 0055 }, 0056 { 0057 "pixmapfile" : "germany/rhineland-palatinate.svgz", 0058 //: State of Germany: Rhineland-Palatinate 0059 "toolTipText" : qsTr("Rhineland-Palatinate"), 0060 "x" : "0.1729", 0061 "y" : "0.6468" 0062 }, 0063 { 0064 "pixmapfile" : "germany/north_rhine-westphalia.svgz", 0065 //: State of Germany: North Rhine-Westphalia 0066 "toolTipText" : qsTr("North Rhine-Westphalia"), 0067 "x" : "0.2175", 0068 "y" : "0.4638" 0069 }, 0070 { 0071 "pixmapfile" : "germany/lower_saxony.svgz", 0072 //: State of Germany: Lower Saxony 0073 "toolTipText" : qsTr("Lower Saxony"), 0074 "x" : "0.371", 0075 "y" : "0.3243" 0076 }, 0077 { 0078 "pixmapfile" : "germany/mecklenburg-vorpommern.svgz", 0079 //: State of Germany: Mecklenburg-Vorpommern 0080 "toolTipText" : qsTr("Mecklenburg-Vorpommern"), 0081 "x" : "0.6998", 0082 "y" : "0.1631" 0083 }, 0084 { 0085 "pixmapfile" : "germany/hesse.svgz", 0086 //: State of Germany: Hesse 0087 "toolTipText" : qsTr("Hesse"), 0088 "x" : "0.3505", 0089 "y" : "0.5786" 0090 }, 0091 { 0092 "pixmapfile" : "germany/hamburg.svgz", 0093 //: State of Germany: Hamburg 0094 "toolTipText" : qsTr("Hamburg"), 0095 "x" : "0.4601", 0096 "y" : "0.2058" 0097 }, 0098 { 0099 "pixmapfile" : "germany/bremen.svgz", 0100 //: State of Germany: Bremen 0101 "toolTipText" : qsTr("Bremen"), 0102 "x" : "0.3342", 0103 "y" : "0.2357" 0104 }, 0105 { 0106 "pixmapfile" : "germany/brandenburg.svgz", 0107 //: State of Germany: Brandenburg 0108 "toolTipText" : qsTr("Brandenburg"), 0109 "x" : "0.7576", 0110 "y" : "0.3359" 0111 }, 0112 { 0113 "pixmapfile" : "germany/berlin.svgz", 0114 //: State of Germany: Berlin 0115 "toolTipText" : qsTr("Berlin"), 0116 "x" : "0.7949", 0117 "y" : "0.3315" 0118 }, 0119 { 0120 "pixmapfile" : "germany/bavaria.svgz", 0121 //: State of Germany: Bavaria 0122 "toolTipText" : qsTr("Bavaria"), 0123 "x" : "0.6046", 0124 "y" : "0.7778" 0125 }, 0126 { 0127 "pixmapfile" : "germany/baden-wurttemberg.svgz", 0128 //: State of Germany: Baden-Württemberg 0129 "toolTipText" : qsTr("Baden-Württemberg"), 0130 "x" : "0.3416", 0131 "y" : "0.808" 0132 } 0133 ] 0134 }