Warning, /education/gcompris/src/activities/explore_world_animals/resource/board/board3.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris 0002 * 0003 * SPDX-FileCopyrightText: 2017 Ilya Bizyaev <bizyaev@zoho.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("Crocodile"), 0020 "text": qsTr("The crocodile is a large amphibious reptile. It lives mostly in large tropical rivers, where it is an ambush predator."), 0021 "image2": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/crocodile.webp", 0022 "text2": qsTr("Crocodile"), 0023 "x": 0.525, 0024 "y": 0.55, 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("Komodo dragon"), 0031 "text": qsTr("The Komodo dragon is the largest living lizard (up to 3 meters). It lives in the Indonesian islands."), 0032 "image2": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/dragon.webp", 0033 "text2": qsTr("Komodo dragon"), 0034 "x": 0.8, 0035 "y": 0.58, 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("Koala"), 0042 "text": qsTr("Koalas are herbivore marsupials that live in the eucalyptus forests of eastern Australia."), 0043 "image2": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/koala.webp", 0044 "text2": qsTr("Koala"), 0045 "x": 0.885, 0046 "y": 0.64, 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("Ring-tailed lemur"), 0053 "text": qsTr("The ring-tailed lemur is a primate that lives in the dry regions of southwest Madagascar. Its striped tail makes it easy to recognize."), 0054 "image2": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/lemur.webp", 0055 "text2": qsTr("Ring-tailed lemur"), 0056 "x": 0.595, 0057 "y": 0.63, 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("Panda"), 0064 "text": qsTr("The panda is a bear with black and white fur that lives in a few mountain ranges in central China. Pandas mostly eat bamboo."), 0065 "image2": "qrc:/gcompris/src/activities/explore_world_animals/resource/animals/panda.webp", 0066 "text2": qsTr("Panda"), 0067 "x": 0.765, 0068 "y": 0.45, 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 }