Warning, /education/gcompris/src/activities/comparator/resource/2/Data.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris - Data.qml 0002 * 0003 * SPDX-FileCopyrightText: 2022 Aastha Chauhan <aastha.chauhan01@gmail.com> 0004 * 0005 * Authors: 0006 * Aastha Chauhan <aastha.chauhan01@gmail.com> 0007 * 0008 * SPDX-License-Identifier: GPL-3.0-or-later 0009 */ 0010 0011 import GCompris 1.0 0012 0013 Data { 0014 objective: qsTr("Numbers from 1 to 19.") 0015 difficulty: 2 0016 0017 data: [ 0018 { 0019 random: true, 0020 numberOfSublevels: 5, 0021 minValue: 1, 0022 maxValue: 19, 0023 numberOfEquations: 5 0024 }, 0025 { 0026 random: true, 0027 numberOfSublevels: 5, 0028 minValue: 1, 0029 maxValue: 19, 0030 numberOfEquations: 5 0031 }, 0032 { 0033 random: true, 0034 numberOfSublevels: 5, 0035 minValue: 1, 0036 maxValue: 19, 0037 numberOfEquations: 5 0038 } 0039 ] 0040 }