Warning, /education/gcompris/src/activities/scalesboard/resource/2/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(3)
0014     difficulty: 1
0015     data: [
0016         {
0017             "masses": [[1, "1"], [1, "1"], [3, "3"], [1, "1"], [1, "1"], [1, "1"], [1, "1"]],
0018             "targets": [[2, "2"]],
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"], [1, "1"], [2, "2"], [1, "1"]],
0024             "targets": [[3, "3"]],
0025             "rightDrop": false,
0026             "message": qsTr("Drop weights on the left side to balance the scales.")
0027         },
0028         {
0029             "masses": [[3, "3"], [1, "1"], [1, "1"], [1, "1"], [3, "3"], [1, "1"], [1, "1"]],
0030             "targets": [[2, "2"]],
0031             "rightDrop": true,
0032             "message": qsTr("Take care, you can drop weights on both sides of the scales.")
0033         },
0034         {
0035             "masses": [[2, "2"], [1, "1"], [2, "2"], [1, "1"], [2, "2"], [1, "1"], [2, "2"]],
0036             "targets": [[3, "3"]],
0037             "rightDrop": true,
0038             "message": qsTr("Take care, you can drop weights on both sides of the scales.")
0039         },
0040         {
0041             "masses": [[3, "3"], [1, "1"], [1, "1"], [1, "1"], [3, "3"], [1, "1"], [1, "1"]],
0042             "targets": [[2, "2"]],
0043             "rightDrop": false,
0044             "message": qsTr("Now you have to guess the weight of the gift."),
0045             "question": qsTr("Enter the weight of the gift: %1")
0046         },
0047         {
0048             "masses": [[2, "2"], [1, "1"], [2, "2"], [1, "1"], [2, "2"], [1, "1"], [2, "2"]],
0049             "targets": [[3, "3"]],
0050             "rightDrop": false,
0051             "message": qsTr("Now you have to guess the weight of the gift."),
0052             "question": qsTr("Enter the weight of the gift: %1")
0053         }
0054     ]
0055 }