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: "menu/Menu.qml"
11  difficulty: 0
12  //: Activity title
13  title: qsTr("GCompris Main Menu")
14  //: Help title
15  description: qsTr("Select an activity to run it.")
16  //: Help goal
17  goal: qsTr("GCompris is a high quality educational software suite, including a large number of activities for children aged 2 to 10.")
18  //: Help prerequisite
19  prerequisite: qsTr("Some of the activities are game orientated, but still educational.")
20  //: Help manual
21  manual: qsTr("Select an icon to enter an activity or to display a list of activities in a category.
22At the bottom of the screen is the GCompris control bar. Notice that you can hide or show the bar by touching its anchor.") + ("<br><br>") +
23          qsTr("The following icons are displayed:
24(note that each icon is displayed only if available in the current activity)") + ("<ul><li>") +
25    qsTr("Home - Exit an activity, go back to menu (Ctrl+W or Escape key)") + ("</li><li>") +
26    qsTr("Arrows - Display the current level. Click to select another level") + ("</li><li>") +
27    qsTr("Lips - Repeat the question") + ("</li><li>") +
28    qsTr("Question Mark - Help") + ("</li><li>") +
29    qsTr("Reload - Start the activity from the beginning again") + ("</li><li>") +
30    qsTr("Tool - The configuration menu") + ("</li><li>") +
31    qsTr("Three lines - The activity settings menu") + ("</li><li>") +
32    qsTr("G - About GCompris") + ("</li><li>") +
33    qsTr("Quit - Quit GCompris (Ctrl+Q)") + ("</li></ul>") +
34    qsTr("The stars show suitable age groups for each activity:") + ("<ul><li>") +
35    qsTr("1, 2 or 3 yellow stars - from 2 to 6 years old")+ ("</li><li>") +
36    qsTr("1, 2 or 3 red stars - 7 years and up")+ ("</li></ul>") +
37    qsTr("If there are two different star icons on an activity, the first one shows the minimum difficulty, and the second one the maximum difficulty.") + ("<br><br>") +
38    qsTr("<b>Keyboard shortcuts:</b>") + ("<ul><li>") +
39    qsTr("Ctrl+B: Show or Hide the control bar") + ("</li><li>") +
40    qsTr("Ctrl+F: Toggle full screen") + ("</li><li>") +
41    qsTr("Ctrl+S: Toggle the activity section bar") + ("</li></ul>")
42  credit: ""
43  section: "/"
44  createdInVersion: 0
45}
46