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-add-tux/MemoryMathAddTux.qml"
11  difficulty: 3
12  icon: "memory-math-add-tux/memory-math-add-tux.svg"
13  author: "JB BUTET &lt;ashashiwa@gmail.com&gt;"
14  //: Activity title
15  title: qsTr("Addition memory game against Tux")
16  //: Help title
17  description: qsTr("Flip the cards to match an addition with its result, playing against Tux.")
18//  intro: "Turn over two cards to match the calculation with its answer."
19  //: Help goal
20  goal: qsTr("Practice additions.")
21  //: Help prerequisite
22  prerequisite: qsTr("Additions.")
23  //: Help manual
24  manual: qsTr("Each card is hiding either an addition, or a result. You have to match the additions 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