1/* GCompris - Data.qml
2 *
3 * SPDX-FileCopyrightText: 2019 Akshay Kumar <email.akshay98@gmail.com>
4 *
5 * Authors:
6 *   Akshay Kumar <email.akshay98@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 5.")
15    difficulty: 2
16    data: [
17      {
18         "objective" : qsTr("Type the number on the domino, from 1 to 5."),
19         "sublevels" : "14",
20         "words" : [
21            "1",
22            "2",
23            "3",
24            "4",
25            "5",
26            "5",
27            "5",
28            "5"
29         ]
30      }
31   ]
32}
33