Warning, /education/gcompris/src/activities/geo-country/resource/board/board6_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 * SPDX-FileCopyrightText: 2018,2020 Karl Ove Hufthammer <karl@huftis.org> 0005 * 0006 * Authors: 0007 * Bruno Coudoin <bruno.coudoin@gcompris.net> (GTK+ version) 0008 * Pulkit Gupta <pulkitgenius@gmail.com> (Qt Quick port) 0009 * Karl Ove Hufthammer <karl@huftis.org> (updated map for new counties in 2018 and 2020) 0010 * Timothée Giet <animtim@gmail.com> (new SVG map) 0011 * 0012 * SPDX-License-Identifier: GPL-3.0-or-later 0013 */ 0014 import QtQuick 2.12 0015 0016 QtObject { 0017 property string instruction: qsTr("Counties of Norway") 0018 property var levels: [ 0019 { 0020 "pixmapfile" : "norway/norway.svgz", 0021 "type" : "SHAPE_BACKGROUND_IMAGE" 0022 }, 0023 { 0024 "pixmapfile" : "norway/vestfold_og_telemark.svgz", 0025 //: County of Norway: Vestfold og Telemark 0026 "toolTipText" : qsTr("Vestfold og Telemark"), 0027 "x" : "0.2109", 0028 "y" : "0.8757" 0029 }, 0030 { 0031 "pixmapfile" : "norway/viken.svgz", 0032 //: County of Norway: Viken 0033 "toolTipText" : qsTr("Viken"), 0034 "x" : "0.2538", 0035 "y" : "0.8429" 0036 }, 0037 { 0038 "pixmapfile" : "norway/nordland.svgz", 0039 //: County of Norway: Nordland 0040 "toolTipText" : qsTr("Nordland"), 0041 "x" : "0.4779", 0042 "y" : "0.3375" 0043 }, 0044 { 0045 "pixmapfile" : "norway/troms_og_finnmark.svgz", 0046 //: County of Norway: Troms og Finnmark 0047 "toolTipText" : qsTr("Troms og Finnmark"), 0048 "x" : "0.7362", 0049 "y" : "0.1338" 0050 }, 0051 { 0052 "pixmapfile" : "norway/trondelag.svgz", 0053 //: County of Norway: Trøndelag 0054 "toolTipText" : qsTr("Trøndelag"), 0055 "x" : "0.3378", 0056 "y" : "0.5798" 0057 }, 0058 { 0059 "pixmapfile" : "norway/oslo.svgz", 0060 //: County of Norway: Oslo 0061 "toolTipText" : qsTr("Oslo"), 0062 "x" : "0.2973", 0063 "y" : "0.8464" 0064 }, 0065 { 0066 "pixmapfile" : "norway/more_og_romsdal.svgz", 0067 //: County of Norway: Møre og Romsdal 0068 "toolTipText" : qsTr("Møre og Romsdal"), 0069 "x" : "0.1762", 0070 "y" : "0.6407" 0071 }, 0072 { 0073 "pixmapfile" : "norway/agder.svgz", 0074 //: County of Norway: Agder 0075 "toolTipText" : qsTr("Agder"), 0076 "x" : "0.1591", 0077 "y" : "0.9172" 0078 }, 0079 { 0080 "pixmapfile" : "norway/innlandet.svgz", 0081 //: County of Norway: Innlandet 0082 "toolTipText" : qsTr("Innlandet"), 0083 "x" : "0.2836", 0084 "y" : "0.7538" 0085 }, 0086 { 0087 "pixmapfile" : "norway/vestland.svgz", 0088 //: County of Norway: Vestland 0089 "toolTipText" : qsTr("Vestland"), 0090 "x" : "0.1266", 0091 "y" : "0.7632" 0092 }, 0093 { 0094 "pixmapfile" : "norway/rogaland.svgz", 0095 //: County of Norway: Rogaland 0096 "toolTipText" : qsTr("Rogaland"), 0097 "x" : "0.0865", 0098 "y" : "0.8966" 0099 }, 0100 ] 0101 }