1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2015 JB BUTET <ashashiwa@gmail.com>
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7import GCompris 1.0
8
9ActivityInfo {
10  name: "memory-math-minus/MemoryMathMinus.qml"
11  difficulty: 4
12  icon: "memory-math-minus/memory-math-minus.svg"
13  author: "JB BUTET &lt;ashashiwa@gmail.com&gt;"
14  //: Activity title
15  title: qsTr("Subtraction memory game")
16  //: Help title
17  description: qsTr("Flip the cards to match a subtraction with its result.")
18//  intro: "Turn over two cards to match the calculation with its answer."
19  //: Help goal
20  goal: qsTr("Practice subtractions.")
21  //: Help prerequisite
22  prerequisite: qsTr("Subtractions.")
23  //: Help manual
24  manual: qsTr("Each card is hiding either a subtraction, or a result. You have to match the subtractions with their result.") + ("<br><br>") +
25          qsTr("<b>Keyboard controls:</b>") + ("<ul><li>") +
26          qsTr("Arrows: navigate") + ("</li><li>") +
27          qsTr("Space or Enter: flip the selected card") + ("</li></ul>")
28  credit: ""
29  section: "math memory arithmetic"
30  createdInVersion: 0
31  levels: "1,2,3,4,5,6,7,8,9,10"
32}
33