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: "mining/Mining.qml"
11  difficulty: 1
12  icon: "mining/mining.svg"
13  author: "Bruno Coudoin &lt;bruno.coudoin@gcompris.net&gt;"
14  //: Activity title
15  title: qsTr("Mining for gold")
16  //: Help title
17  description: qsTr("Use the mousewheel to approach the rockwall and look for gold nuggets.")
18  //intro: "Looking at the rockwall, you can see a sparkle somewhere. Move the mouse cursor next to this sparkle and use the mousewheel or the zoom gesture to zoom in."
19  //: Help goal
20  goal: qsTr("Learn to use the mousewheel or the zoom / pinch gesture to zoom in and out.")
21  //: Help prerequisite
22  prerequisite: qsTr("You should be familiar with moving the mouse and clicking.")
23  //: Help manual
24  manual: qsTr("Looking at the rockwall, you can see a sparkle somewhere. Move next to this sparkle and use the mousewheel or the zoom gesture to zoom in. When you reach the maximum zoom level, a gold nugget will appear at the position of the sparkle. Click on the gold nugget to collect it.") + ("<br><br>") +
25          qsTr("After collecting the nugget, use the mousewheel or the pinch gesture to zoom out again. When you reach the minimum zoom level, another sparkle will appear, showing the next gold nugget to collect. Collect enough nuggets to complete the level.") + ("<br><br>") +
26          qsTr("The wagon in the lower right corner of the screen will tell you the number of already collected nuggets and the total number of nuggets to collect in this level.")
27  credit: qsTr("Thanks to the Tuxpaint team for providing the following sounds under GPL:") + ("<ul><li>") +
28          qsTr("realrainbow.ogg - used when a new gold nugget appears") + ("</li><li>") +
29          qsTr("metalpaint.wav - remixed and used when a gold nugget is collected") + ("</li></ul>")
30  section: "computer mouse"
31  createdInVersion: 0
32}
33