Warning, /education/gcompris/src/activities/categorization/resource/board/category_alphabets.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/alphabets/"
0016     property var levels: [
0017         {
0018             "name": qsTr("Alphabets"),
0019             "image": imagesPrefix + "alphabets.webm",
0020             "content": [
0021                 {
0022                     "instructions": qsTr("Place the LETTERS to the right and other objects to the left"),
0023                     "image": imagesPrefix + "upperA.svg",
0024                     "maxNumberOfGood": 6,
0025                     "maxNumberOfBad": 6,
0026                     "prefix": "qrc:/gcompris/src/activities/",
0027                     "good": ["categorization/resource/images/alphabets/upperA.svg","categorization/resource/images/alphabets/lowerP.svg","categorization/resource/images/alphabets/upperR.svg", "categorization/resource/images/alphabets/lowerT.svg","categorization/resource/images/alphabets/lowerD.svg", "categorization/resource/images/alphabets/lowerE.svg"],
0028                     "bad": ["categorization/resource/images/numbers/01.svg","categorization/resource/images/numbers/06.svg","categorization/resource/images/numbers/12.svg","lang/resource/words_sample/coconut.webp", "lang/resource/words_sample/dolphin.webp","lang/resource/words_sample/kiwi.webp"]
0029                 },
0030                 {
0031                     "instructions": qsTr("Place the LETTERS to the right and other objects to the left"),
0032                     "image": imagesPrefix + "upperA.svg",
0033                     "maxNumberOfGood": 6,
0034                     "maxNumberOfBad": 6,
0035                     "prefix": "qrc:/gcompris/src/activities/",
0036                     "good": ["categorization/resource/images/alphabets/lowerB.svg","categorization/resource/images/alphabets/upperV.svg","categorization/resource/images/alphabets/lowerE.svg","categorization/resource/images/alphabets/lowerN.svg","categorization/resource/images/alphabets/upperM.svg", "categorization/resource/images/alphabets/upperO.svg"],
0037                     "bad": ["categorization/resource/images/numbers/06.svg","categorization/resource/images/numbers/16.svg","lang/resource/words_sample/mouse.webp","lang/resource/words_sample/orange.webp","lang/resource/words_sample/raspberry.webp","lang/resource/words_sample/tongue.webp"]
0038                 },
0039                 {
0040                     "instructions": qsTr("Place the LETTERS to the right and other objects to the left"),
0041                     "image": imagesPrefix + "upperA.svg",
0042                     "maxNumberOfGood": 5,
0043                     "maxNumberOfBad": 4,
0044                     "prefix": "qrc:/gcompris/src/activities/",
0045                     "good": [ "categorization/resource/images/alphabets/upperF.svg","categorization/resource/images/alphabets/lowerK.svg","categorization/resource/images/alphabets/lowerR.svg","categorization/resource/images/alphabets/upperQ.svg","categorization/resource/images/alphabets/lowerB.svg"],
0046                     bad: ["categorization/resource/images/numbers/07.svg","categorization/resource/images/numbers/00.svg","lang/resource/words_sample/turtle.webp","lang/resource/words_sample/melon.webp"]
0047                 },
0048                 {
0049                     "instructions": qsTr("Place the LETTERS to the right and other objects to the left"),
0050                     "image": imagesPrefix + "upperA.svg",
0051                     "maxNumberOfGood": 4,
0052                     "maxNumberOfBad": 5,
0053                     "prefix": "qrc:/gcompris/src/activities/",
0054                     "good": ["categorization/resource/images/alphabets/lowerH.svg","categorization/resource/images/alphabets/upperL.svg","categorization/resource/images/alphabets/upperN.svg","categorization/resource/images/alphabets/upperS.svg"],
0055                     "bad": ["lang/resource/words_sample/pear.webp","lang/resource/words_sample/butterfly.webp","categorization/resource/images/numbers/08.svg", "categorization/resource/images/numbers/11.svg","categorization/resource/images/numbers/01.svg"]
0056                 },
0057                 {
0058                     "instructions": qsTr("Place the LETTERS to the right and other objects to the left"),
0059                     "image": imagesPrefix + "upperA.svg",
0060                     "maxNumberOfGood": 3,
0061                     "maxNumberOfBad": 3,
0062                     "prefix": "qrc:/gcompris/src/activities/",
0063                     "good": ["categorization/resource/images/alphabets/lowerG.svg","categorization/resource/images/alphabets/lowerT.svg","categorization/resource/images/alphabets/lowerK.svg"],
0064                     "bad": ["categorization/resource/images/numbers/08.svg","categorization/resource/images/numbers/10.svg", "lang/resource/words_sample/dog.webp"]
0065                 },
0066                 {
0067                     "instructions": qsTr("Place the LETTERS to the right and other objects to the left"),
0068                     "image": imagesPrefix + "upperA.svg",
0069                     "maxNumberOfGood": 2,
0070                     "maxNumberOfBad": 4,
0071                     "prefix": "qrc:/gcompris/src/activities/",
0072                     "good": ["categorization/resource/images/alphabets/upperD.svg","categorization/resource/images/alphabets/upperJ.svg"],
0073                     "bad": ["lang/resource/words_sample/green.webp","lang/resource/words_sample/plum.webp","categorization/resource/images/numbers/09.svg","lang/resource/words_sample/cat.webp"]
0074                 }
0075             ]
0076         }
0077     ]
0078 }