Warning, /education/gcompris/src/activities/fractions_create/resource/9/Data.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2022 Johnny Jazeix <jazeix@gmail.com>
0004  * SPDX-License-Identifier: GPL-3.0-or-later
0005  */
0006 import GCompris 1.0
0007 
0008 Data {
0009     objective: qsTr("Specific questions with a pie.")
0010     difficulty: 5
0011 
0012     data: [
0013         [
0014         {
0015             "chartType": "pie",
0016             "numerator": 2,
0017             "denominator": 5,
0018             "instruction": qsTr("Select as many parts as you can without taking more than half of the pie.")
0019         },
0020         {
0021             "chartType": "pie",
0022             "numerator": 3,
0023             "denominator": 7,
0024             "instruction": qsTr("Select as many parts as you can without taking more than half of the pie.")
0025         }
0026         ]
0027     ]
0028 }