1/* GCompris - Data.qml
2 *
3 * SPDX-FileCopyrightText: 2020 Shubham Mishra <email.shivam828787@gmail.com>
4 *
5 * Authors:
6 *   Shubham Mishra <email.shivam828787@gmail.com>
7 *   Timothée Giet <animtim@gmail.com>
8 *
9 *   SPDX-License-Identifier: GPL-3.0-or-later
10 */
11import GCompris 1.0
12
13Data {
14    objective: qsTr("Numbers up to 7.")
15    difficulty: 3
16    data: [
17      {
18         "objective" : qsTr("Type the number on the domino, from 1 to 7."),
19         "sublevels" : "18",
20         "words" : [
21            "1",
22            "2",
23            "3",
24            "4",
25            "5",
26            "6",
27            "7",
28            "7",
29            "7",
30            "7",
31            "7",
32            "7"
33         ]
34      }
35   ]
36}
37