1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2020 Timothée Giet <animtim@gmail.com>
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7import GCompris 1.0
8
9ActivityInfo {
10  name: "learn_additions/Learn_additions.qml"
11  difficulty: 2
12  icon: "learn_additions/learn_additions.svg"
13  author: "Timothée Giet &lt;animtim@gmail.com&gt;"
14  //: Activity title
15  title: qsTr("Learn additions")
16  //: Help title
17  description: qsTr("Learn additions with small numbers.")
18  //intro: "Click on the circles to give the operation's result."
19  //: Help goal
20  goal: qsTr("Learn additions by counting their result.")
21  //: Help prerequisite
22  prerequisite: ""
23  //: Help manual
24  manual: qsTr("An addition is displayed on the screen. Calculate the result, fill the corresponding number of circles and validate your answer.") + ("<br><br>") +
25          qsTr("<b>Keyboard controls:</b>") + ("<ul><li>") +
26          qsTr("Arrows: navigate") + ("</li><li>") +
27          qsTr("Space: select or deselect a circle") + ("</li><li>") +
28          qsTr("Enter: validate your answer") + ("</li></ul>")
29  credit: ""
30  section: "math arithmetic"
31  createdInVersion: 10000
32  levels: "1,2,3"
33}
34