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: "alphabet-sequence/AlphabetSequence.qml"
11    difficulty: 2
12    icon: "alphabet-sequence/alphabet-sequence.svg"
13    author: "Bruno Coudoin &lt;bruno.coudoin@gcompris.net&gt;"
14    //: Activity title
15    title: qsTr("Alphabet sequence")
16    //: Help title
17    description: qsTr("Move the helicopter to catch the clouds following the order of the alphabet.")
18//    intro: "Move the helicopter to catch the clouds following the order of the alphabet."
19    //: Help goal
20    goal: qsTr("Alphabet sequence.")
21    //: Help prerequisite
22    prerequisite: qsTr("Can decode letters.")
23    //: Help manual
24    manual: qsTr("Catch the alphabet letters. With a keyboard use the arrow keys to move the helicopter. With a pointing device you just click or tap on the target location. To know which letter you have to catch you can either remember it or check the bottom right corner.") + ("<br><br>") +
25          qsTr("<b>Keyboard controls:</b>") + ("<ul><li>") +
26          qsTr("Arrows: move the helicopter") + ("</li></ul>")
27    credit: ""
28    section: "reading letters"
29    createdInVersion: 0
30}
31