Warning, /education/gcompris/src/activities/calcudoku/resource/4/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 (-), \u00D7 for multiplication (*) 0014 objective: qsTr("Medium grids with \u002B, \u2212 and \u00D7 operators.") 0015 difficulty: 5 0016 0017 property var symbols: [ 0018 {"imgName": "1.svg", "text": '1'}, 0019 {"imgName": "2.svg", "text": '2'}, 0020 {"imgName": "3.svg", "text": '3'}, 0021 {"imgName": "4.svg", "text": '4'} 0022 ] 0023 0024 data: [ 0025 { 0026 "random": true, 0027 "length": 20, 0028 "symbols": symbols, 0029 "size": 4, 0030 "operators": ["+", "-", "*"] 0031 } 0032 ] 0033 }