Warning, /education/gcompris/src/activities/calcudoku/resource/2/Data.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris - Data.qml
0002 *
0003 * SPDX-FileCopyrightText: 2023 Johnny Jazeix <jazeix@gmail.com>
0004 *
0005 * Authors:
0006 * Johnny Jazeix <jazeix@gmail.com>
0007 *
0008 * SPDX-License-Identifier: GPL-3.0-or-later
0009 */
0010 import GCompris 1.0
0011
0012 Data {
0013 //: \u002B is the unicode character for addition mathematical operator (+), \u2212 for subtraction (-)
0014 objective: qsTr("Small grids with \u002B and \u2212 operators.")
0015 difficulty: 4
0016
0017 property var symbols: [
0018 {"imgName": "1.svg", "text": '1'},
0019 {"imgName": "2.svg", "text": '2'},
0020 {"imgName": "3.svg", "text": '3'}
0021 ]
0022
0023 data: [
0024 {
0025 "random": true,
0026 "length": 20,
0027 "symbols": symbols,
0028 "size": 3,
0029 "operators": ["+", "-"]
0030 }
0031 ]
0032 }