Warning, /education/gcompris/src/activities/categorization/resource/board/category_numbers.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris
0002 *
0003 * SPDX-FileCopyrightText: 2016 Divyam Madaan <divyam3897@gmail.com>
0004 *
0005 * Authors:
0006 * Divyam Madaan <divyam3897@gmail.com>
0007 *
0008 * SPDX-License-Identifier: GPL-3.0-or-later
0009 */
0010 import QtQuick 2.12
0011
0012 QtObject {
0013 property bool isEmbedded: true
0014 property bool allowExpertMode: true
0015 property string imagesPrefix: "qrc:/gcompris/src/activities/categorization/resource/images/numbers/"
0016 property var levels: [
0017 {
0018 "type": "lesson",
0019 "name": qsTr("Numbers"),
0020 "image": "qrc:/gcompris/src/activities/categorization/resource/images/numbers/numbers.webp",
0021 "content": [
0022 {
0023 "instructions": qsTr("Place the NUMBERS to the right and other objects to the left"),
0024 "image": imagesPrefix + "00.svg",
0025 "maxNumberOfGood": 6,
0026 "maxNumberOfBad": 6,
0027 "prefix": "qrc:/gcompris/src/activities/",
0028 "good": ["categorization/resource/images/numbers/12.svg","categorization/resource/images/numbers/02.svg","categorization/resource/images/numbers/00.svg","categorization/resource/images/numbers/08.svg","categorization/resource/images/numbers/10.svg","categorization/resource/images/numbers/04.svg"],
0029 "bad": ["categorization/resource/images/alphabets/upperA.svg","categorization/resource/images/alphabets/upperM.svg","categorization/resource/images/alphabets/lowerB.svg","categorization/resource/images/alphabets/upperS.svg","lang/resource/words_sample/fish.webp","lang/resource/words_sample/color.webp"]
0030 },
0031 {
0032 "instructions": qsTr("Place the NUMBERS to the right and other objects to the left"),
0033 "image": imagesPrefix + "00.svg",
0034 "maxNumberOfGood": 5,
0035 "maxNumberOfBad": 4,
0036 "prefix": "qrc:/gcompris/src/activities/",
0037 "good": ["categorization/resource/images/numbers/05.svg","categorization/resource/images/numbers/11.svg","categorization/resource/images/numbers/09.svg","categorization/resource/images/numbers/03.svg","categorization/resource/images/numbers/07.svg"],
0038 "bad": ["categorization/resource/images/alphabets/upperZ.svg","categorization/resource/images/alphabets/lowerH.svg","lang/resource/words_sample/mosquito.webp","lang/resource/words_sample/fruit.webp"]
0039 },
0040 {
0041 "instructions": qsTr("Place the NUMBERS to the right and other objects to the left"),
0042 "image": imagesPrefix + "00.svg",
0043 "maxNumberOfGood": 3,
0044 "maxNumberOfBad": 3,
0045 "prefix": "qrc:/gcompris/src/activities/",
0046 "good": ["categorization/resource/images/numbers/01.svg","categorization/resource/images/numbers/06.svg","categorization/resource/images/numbers/16.svg"],
0047 "bad": ["categorization/resource/images/alphabets/upperR.svg","categorization/resource/images/alphabets/lowerQ.svg", "lang/resource/words_sample/strawberry.webp"]
0048 }
0049 ]
0050 }
0051 ]
0052 }