1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2015 Manuel Tondeur <manueltondeur@gmail.com>
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7import GCompris 1.0
8
9ActivityInfo {
10  name: "gnumch-primes/GnumchPrimes.qml"
11  difficulty: 6
12  icon: "gnumch-primes/gnumch-primes.svg"
13  author: "Manuel Tondeur &lt;manueltondeur@gmail.com&gt;"
14  //: Activity title
15  title: qsTr("Gnumch primes")
16  //: Help title
17  description: qsTr("Guide the Number Muncher to all the prime numbers.")
18//  intro: "Guide the number eater with the arrow keys to the prime numbers and press space to swallow them."
19  //: Help goal
20  goal: qsTr("Learn about prime numbers.")
21  //: Help prerequisite
22  prerequisite: ""
23  //: Help manual
24  manual: qsTr("Prime numbers are numbers that are only divisible by themselves and 1. For example, 3 is a prime number, but 4 isn't (because 4 is divisible by 2). You can think of prime numbers as very small families: they only ever have two people in them! Only themselves and 1. You can't fit any other numbers into them with nothing left over. 5 is one of these lonely numbers (only 5 × 1 = 5), but you can see that 6 has 2 and 3 in its family as well (6 × 1 = 6, 2 × 3 = 6). So 6 is not a prime number.") +
25          "<br><br>" +
26          qsTr("If you have a keyboard you can use the arrow keys to move and press space to swallow the numbers. With a mouse you can click on the block next to your position to move and click again to swallow the numbers. With a touch screen you can do like with a mouse or swipe anywhere in the direction you want to move and tap to swallow the numbers.") +
27          "<br><br>" +
28          qsTr("Take care to avoid the Troggles.") + ("<br><br>") +
29          qsTr("<b>Keyboard controls:</b>") + ("<ul><li>") +
30          qsTr("Arrows: navigate") + ("</li><li>") +
31          qsTr("Space: swallow the numbers") + ("</li></ul>")
32  credit: ""
33  section: "math arithmetic"
34  createdInVersion: 0
35}
36