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-tux/MemoryTux.qml"
11  difficulty: 1
12  icon: "memory-tux/memory-tux.svg"
13  author: "JB BUTET &lt;ashashiwa@gmail.com&gt;"
14  //: Activity title
15  title: qsTr("Memory game with images against Tux")
16  //: Help title
17  description: qsTr("Flip the cards to find the matching pairs, playing against Tux.")
18//  intro: "Click on a card and find its double."
19  //: Help goal
20  goal: qsTr("Train your memory and remove all the cards.")
21  //: Help prerequisite
22  prerequisite: qsTr("Mouse-manipulation.")
23  //: Help manual
24  manual: qsTr("Each card has a picture on the hidden side, and each card has a twin with exactly the same picture. Click on a card to see its hidden picture, and try to match the twins. You can only flip two cards at once, so you need to remember where a picture is, while you look for its twin. When you flip the twins, they both disappear.") + ("<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: "fun memory"
30  createdInVersion: 0
31}
32