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: "memory-enumerate/MemoryEnumerate.qml"
11  difficulty: 2
12  icon: "memory-enumerate/memory-enumerate.svg"
13  author: "Bruno Coudoin &lt;bruno.coudoin@gcompris.net&gt;"
14  //: Activity title
15  title: qsTr("Enumeration memory game")
16  //: Help title
17  description: qsTr("Flip the cards to match a number with a picture.")
18//  intro: "Match a number card with a card displaying the same number of butterflies."
19  //: Help goal
20  goal: qsTr("Numeration training, memory.")
21  //: Help prerequisite
22  prerequisite: ""
23  //: Help manual
24  manual: qsTr("Each card is hiding either a picture with a number of items, or a number. You have to match the numbers with the corresponding pictures.") + ("<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 numeration"
30  createdInVersion: 0
31  levels: "1,2,3,4,5,6,7,8"
32}
33