1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2015 Bruno Coudoin <bruno.coudoin@gcompris.net>
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7import GCompris 1.0
8
9ActivityInfo {
10  name: "smallnumbers2/Smallnumbers2.qml"
11  difficulty: 2
12  icon: "smallnumbers2/smallnumbers2.svg"
13  author: "Bruno Coudoin &lt;bruno.coudoin@gcompris.net&gt;"
14  //: Activity title
15  title: qsTr("Numbers with dominoes")
16  //: Help title
17  description: qsTr("Count the number on the domino before it reaches the ground.")
18//  intro: "Count the numbers on the dominoes then type the result on your keyboard."
19  //: Help goal
20  goal: qsTr("Count a number in a limited time.")
21  //: Help prerequisite
22  prerequisite: qsTr("Counting skills.")
23  //: Help manual
24  manual: qsTr("Type the number you see on each falling domino.") + ("<br><br>") +
25          qsTr("<b>Keyboard controls:</b>") + ("<ul><li>") +
26          qsTr("Digits: type your answer") + ("</li></ul>")
27  credit: ""
28  section: "math numeration"
29  createdInVersion: 0
30  levels: "1,2,3,4,5,6,7,8"
31}
32