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

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2019 Sambhav Kaul <sambhav.kaul12@gmail.com>
0004  *
0005  * Authors:
0006  *   Sambhav Kaul <sambhav.kaul12@gmail.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 
0011 import GCompris 1.0
0012 
0013 Data {
0014     objective: qsTr("Guess a number between 1 and %1.").arg(100)
0015     difficulty: 2
0016     data: [
0017         {
0018             // first number is the minimum number and second is the maximum number
0019             "objective" : qsTr("Guess a number between 1 and %1.").arg(10),
0020             "maxNumber" : 10
0021         },
0022         {
0023             "objective" : qsTr("Guess a number between 1 and %1.").arg(100),
0024             "maxNumber" : 100
0025         }
0026     ]
0027 }