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

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2021 Harsh Kumar <hadron43@yahoo.com>
0004  *
0005  * Authors:
0006  *   Harsh Kumar <hadron43@yahoo.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 import GCompris 1.0
0011 
0012 Data {
0013     objective: qsTr("Balance up to %1.").arg(4)
0014     difficulty: 2
0015     data: [
0016         {
0017             "masses": [[1, "1"], [1, "1"], [2, "2"], [1, "1"], [2, "2"], [1, "1"], [2, "2"]],
0018             "targets": [[3, "3"], [4, "4"]],
0019             "rightDrop": false,
0020             "message": qsTr("Drop weights on the left side to balance the scales.")
0021         },
0022         {
0023             "masses": [[1, "1"], [1, "1"], [2, "2"], [1, "1"], [2, "2"], [1, "1"], [2, "2"]],
0024             "targets": [[3, "3"], [4, "4"]],
0025             "rightDrop": true,
0026             "message": qsTr("Take care, you can drop weights on both sides of the scales.")
0027         },
0028         {
0029             "masses": [[1, "1"], [1, "1"], [2, "2"], [1, "1"], [2, "2"], [1, "1"], [2, "2"]],
0030             "targets": [[3, "3"], [4, "4"]],
0031             "rightDrop": false,
0032             "message": qsTr("Now you have to guess the weight of the gift."),
0033             "question": qsTr("Enter the weight of the gift: %1")
0034         }
0035     ]
0036 }