Warning, /education/gcompris/src/activities/explore_world_animals/resource/board/board1.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris
0002 *
0003 * SPDX-FileCopyrightText: 2015 Johnny Jazeix <jazeix@gmail.com>
0004 *
0005 * Authors:
0006 *   Beth Hadley <bethmhadley@gmail.com> (GTK+ version)
0007 *   Johnny Jazeix <jazeix@gmail.com> (Qt Quick port)
0008 *
0009 *   SPDX-License-Identifier: GPL-3.0-or-later
0010 */
0011 import QtQuick 2.12
0012 
0013 QtObject {
0014 
0015     property string backgroundImage: "qrc:/gcompris/src/activities/explore_monuments/resource/wonders/world-map.svg"
0016     property var tab : [
0017         {
0018             "image": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/question.svg",
0019             "title": qsTr("Jaguar"),
0020             "text": qsTr("The jaguar's jaw is well developed. Because of this, it has the strongest bite of all the felines, being able to break even a tortoise shell!"),
0021             "image2": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/jaguar.webp",
0022             "text2": qsTr("Jaguar"),
0023             "x": 0.32,
0024             "y": 0.575,
0025             "width": 0.1,
0026             "height": 0.1
0027         },
0028         {
0029             "image": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/question.svg",
0030             "title": qsTr("Hedgehog"),
0031             "text": qsTr("Hedgehogs eat small animals, like frogs and insects, so many people keep them as useful pets. When in danger, they will curl up into a ball and stick up their coat of sharp spines."),
0032             "image2": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/hedgehog.webp",
0033             "text2": qsTr("Hedgehog"),
0034             "x": 0.5,
0035             "y": 0.4,
0036             "width": 0.1,
0037             "height": 0.1
0038         },
0039         {
0040             "image": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/question.svg",
0041             "title": qsTr("Giraffe"),
0042             "text": qsTr("The giraffe lives in Africa and is the tallest mammal in the world. Just their legs, which are usually 1.8 meters long, are taller than most humans!"),
0043             "image2": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/giraffe.webp",
0044             "text2": qsTr("Giraffe"),
0045             "x": 0.525,
0046             "y": 0.53,
0047             "width": 0.1,
0048             "height": 0.1
0049         },
0050         {
0051             "image": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/question.svg",
0052             "title": qsTr("Bison"),
0053             "text": qsTr("Bisons live on the plains of North America and were hunted by the Native Americans for food."),
0054             "image2": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/bison.webp",
0055             "text2": qsTr("Bison"),
0056             "x": 0.215,
0057             "y": 0.445,
0058             "width": 0.1,
0059             "height": 0.1
0060         },
0061         {
0062             "image": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/question.svg",
0063             "title": qsTr("Narwhal"),
0064             "text": qsTr("Narwhals are whales that live in the Arctic Ocean and have long tusks. These tusks remind many people of the mythical unicorn's horn."),
0065             "image2": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/narwhal.webp",
0066             "text2": qsTr("Narwhal"),
0067             "x": 0.47,
0068             "y": 0.255,
0069             "width": 0.1,
0070             "height": 0.1
0071         }
0072     ]
0073 
0074     property var instructions : [
0075         {
0076             "text": qsTr("Explore wild animals from around the world.")
0077         },
0078         {
0079             "text": qsTr("Click on the location where the given animal lives.")
0080         }
0081     ]
0082 }