1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2015 Manuel Tondeur <manueltondeur@gmail.com>
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7import GCompris 1.0
8
9ActivityInfo {
10  name: "gnumch-equality/GnumchEquality.qml"
11  difficulty: 3
12  icon: "gnumch-equality/gnumch-equality.svg"
13  author: "Manuel Tondeur &lt;manueltondeur@gmail.com&gt;"
14  //: Activity title
15  title: qsTr("Gnumch equality")
16  //: Help title
17  description: qsTr("Guide the Number Muncher to the expressions that equal the number at the bottom of the screen.")
18//  intro: "Guide the number eater with the arrow keys to the required numbers and press the space bar to swallow them."
19  //: Help goal
20  goal: qsTr("Practice addition, multiplication, division and subtraction.")
21  //: Help prerequisite
22  prerequisite: ""
23  //: Help manual
24  manual: qsTr("Guide the Number Muncher to the expressions that equal the number at the bottom of the screen.") +
25          "<br><br>" +
26          qsTr("If you have a keyboard you can use the arrow keys to move and press space to swallow the numbers. With a mouse you can click on the block next to your position to move and click again to swallow the numbers. With a touch screen you can do like with a mouse or swipe anywhere in the direction you want to move and tap to swallow the numbers.") +
27          "<br><br>" +
28          qsTr("Take care to avoid the Troggles.") + ("<br><br>") +
29          qsTr("<b>Keyboard controls:</b>") + ("<ul><li>") +
30          qsTr("Arrows: navigate") + ("</li><li>") +
31          qsTr("Space: swallow the numbers") + ("</li></ul>")
32  credit: ""
33  section: "math arithmetic"
34  createdInVersion: 0
35  levels: "1,2,3,4"
36}
37