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: "target/Target.qml"
11  difficulty: 2
12  icon: "target/target.svg"
13  author: "Bruno Coudoin &lt;bruno.coudoin@gcompris.net&gt;"
14  //: Activity title
15  title: qsTr("Practice addition with a target game")
16  //: Help title
17  description: qsTr("Hit the target and count your points.")
18  // intro: "Click on the target to launch darts, then count your final score!"
19  //: Help goal
20  goal: qsTr("Throw darts at a target and count your score.")
21  //: Help prerequisite
22  prerequisite: qsTr("Can move the mouse, can read numbers and count up to 15 for the first level.")
23  //: Help manual
24  manual: qsTr("Check the speed and direction of the target, and then click on it to launch a dart. When all your darts are thrown, you are asked to count your score. Enter the score with the keyboard.")
25  credit: ""
26  section: "math addition arithmetic"
27  createdInVersion: 0
28  levels: "1,2,3,4,5"
29}
30