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: "algebra_minus/AlgebraMinus.qml"
11  difficulty: 4
12  icon: "algebra_minus/algebra_minus.svg"
13  author: "Bruno Coudoin &lt;bruno.coudoin@gcompris.net&gt;"
14  //: Activity title
15  title: qsTr("Subtraction of numbers")
16  //: Help title
17  description: qsTr("Practice the subtraction operation.")
18//  intro: "Subtract the two numbers and type in your answer before the balloon lands in the water"
19  //: Help goal
20  goal: qsTr("Learn to find the difference between two numbers within a limited period of time.")
21  //: Help prerequisite
22  prerequisite: qsTr("Subtraction of small numbers.")
23  //: Help manual
24  manual: qsTr("A subtraction is displayed on the screen. Quickly find the result and use your computer's keyboard or the on-screen keypad to type it. You have to be fast and submit the answer before the penguins in their balloon land!") + ("<br><br>") +
25          qsTr("<b>Keyboard controls:</b>") + ("<ul><li>") +
26          qsTr("Digits: type your answer") + ("</li><li>") +
27          qsTr("Backspace: delete the last digit in your answer") + ("</li><li>") +
28          qsTr("Enter: validate your answer") + ("</li></ul>")
29  credit: ""
30  section: "math subtraction arithmetic"
31  createdInVersion: 0
32  levels: "1,2,3,4,5,6,7,8,9,10"
33}
34