Warning, /education/gcompris/src/activities/geo-country/resource/board/board1_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("Regions of France")
0016    property var levels: [
0017       {
0018          "pixmapfile" : "france/france.svgz",
0019          "type" : "SHAPE_BACKGROUND_IMAGE"
0020       },
0021       {
0022          "pixmapfile" : "france/corsica.svgz",
0023          "sound" : "voices-$CA/$LOCALE/france/corse.$CA",
0024          "x" : "0.9454",
0025          "y" : "0.8898",
0026          //: Region of France: Corsica
0027          "toolTipText" : qsTr("Corsica")
0028       },
0029       {
0030          "pixmapfile" : "france/nouvelle-aquitaine.svgz",
0031          "sound" : "voices-$CA/$LOCALE/france/nouvelle-aquitaine.$CA",
0032          "x" : "0.3499",
0033          "y" : "0.6263",
0034          //: Region of France: Nouvelle-Aquitaine
0035          "toolTipText" : qsTr("Nouvelle-Aquitaine")
0036       },
0037       {
0038          "pixmapfile" : "france/occitanie.svgz",
0039          "sound" : "voices-$CA/$LOCALE/france/occitanie.$CA",
0040          "x" : "0.4734",
0041          "y" : "0.7584",
0042          //: Region of France: Occitanie
0043          "toolTipText" : qsTr("Occitanie")
0044       },
0045       {
0046          "pixmapfile" : "france/paca.svgz",
0047          "sound" : "voices-$CA/$LOCALE/france/paca.$CA",
0048          "x" : "0.7256",
0049          "y" : "0.7177",
0050          //: Region of France: Provence-Alpes-Côte d'Azur
0051          "toolTipText" : qsTr("Provence-Alpes-Côte d'Azur")
0052       },
0053       {
0054          "pixmapfile" : "france/auvergne-rhone-alpes.svgz",
0055          "sound" : "voices-$CA/$LOCALE/france/auvergne-rhone-alpes.$CA",
0056          "x" : "0.632",
0057          "y" : "0.5817",
0058          //: Region of France: Auvergne-Rhône-Alpes
0059          "toolTipText" : qsTr("Auvergne-Rhône-Alpes")
0060       },
0061       {
0062          "pixmapfile" : "france/centre-val_de_loire.svgz",
0063          "sound" : "voices-$CA/$LOCALE/france/centre-val-de-loire.$CA",
0064          "x" : "0.4359",
0065          "y" : "0.3658",
0066          //: Region of France: Centre-Val de Loire
0067          "toolTipText" : qsTr("Centre-Val de Loire")
0068       },
0069       {
0070          "pixmapfile" : "france/pays_de_la_loire.svgz",
0071          "sound" : "voices-$CA/$LOCALE/france/pays-de-la-loire.$CA",
0072          "x" : "0.2845",
0073          "y" : "0.3827",
0074          //: Region of France: Pays de la Loire
0075          "toolTipText" : qsTr("Pays de la Loire")
0076       },
0077       {
0078          "pixmapfile" : "france/ile-de-france.svgz",
0079          "sound" : "voices-$CA/$LOCALE/france/ile-de-france.$CA",
0080          "x" : "0.4945",
0081          "y" : "0.263",
0082          //: Region of France: Île-de-France
0083          "toolTipText" : qsTr("Île-de-France")
0084       },
0085       {
0086          "pixmapfile" : "france/brittany.svgz",
0087          "sound" : "voices-$CA/$LOCALE/france/bretagne.$CA",
0088          "x" : "0.1475",
0089          "y" : "0.3082",
0090          //: Region of France: Brittany
0091          "toolTipText" : qsTr("Brittany")
0092       },
0093       {
0094          "pixmapfile" : "france/normandy.svgz",
0095          "sound" : "voices-$CA/$LOCALE/france/normandie.$CA",
0096          "x" : "0.339",
0097          "y" : "0.2175",
0098          //: Region of France: Normandy
0099          "toolTipText" : qsTr("Normandy")
0100       },
0101       {
0102          "pixmapfile" : "france/hauts_de_france.svgz",
0103          "sound" : "voices-$CA/$LOCALE/france/haut-de-france.$CA",
0104          "x" : "0.5149",
0105          "y" : "0.1357",
0106          //: Region of France: Hauts de France
0107          "toolTipText" : qsTr("Hauts de France")
0108       },
0109       {
0110          "pixmapfile" : "france/grand_est.svgz",
0111          "sound" : "voices-$CA/$LOCALE/france/grand-est.$CA",
0112          "x" : "0.698",
0113          "y" : "0.2476",
0114          //: Region of France: Grand est
0115          "toolTipText" : qsTr("Grand est")
0116       },
0117       {
0118          "pixmapfile" : "france/bourgogne-franche-comte.svgz",
0119          "sound" : "voices-$CA/$LOCALE/france/bourgogne-franche-comte.$CA",
0120          "x" : "0.6514",
0121          "y" : "0.4027",
0122          //: Region of France: Bourgogne-Franche-Comté
0123          "toolTipText" : qsTr("Bourgogne-Franche-Comté")
0124       }
0125    ]
0126 }