1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2016 Pulkit Gupta <pulkitnsit@gmail.com>
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7import GCompris 1.0
8
9ActivityInfo {
10  name: "digital_electricity/DigitalElectricity.qml"
11  difficulty: 6
12  icon: "digital_electricity/digital_electricity.svg"
13  author: "Pulkit Gupta &lt;pulkitnsit@gmail.com&gt;"
14  //: Activity title
15  title: qsTr("Digital electricity")
16  //: Help title
17  description: qsTr("Create and simulate a digital electric schema.")
18  //intro: "Learn how digital electronics work and create your own circuit."
19  //: Help goal
20  goal: qsTr("Create a digital electric schema with a real time simulation of it.")
21  //: Help prerequisite
22  prerequisite: qsTr("Requires some basic understanding of the concept of digital electronics.")
23  //: Help manual
24  manual: qsTr("Drag electrical components from the side bar and drop them in the working area.") + ("<ul><li>") +
25          qsTr("To connect two terminals with a wire, click on a first terminal, then on a second terminal.") + ("</li><li>") +
26          qsTr("The simulation is updated in real time by any user action.") + ("</li><li>") +
27          qsTr("In the working area, you can move the components by dragging them.") + ("</li><li>") +
28          qsTr("In the side bar, you can click on the tool icon to access the tool menu.") + ("</li><li>") +
29          qsTr("To delete a component or a wire, select the delete tool (cross icon) from the tool menu, and click on the component or on the wire you want to delete.") + ("</li><li>") +
30          qsTr("To deselect a terminal or the delete tool, click on any empty area.") + ("</li><li>") +
31          qsTr("You can rotate the selected component using the rotate buttons (circle arrow icons) from the tool menu.") + ("</li><li>") +
32          qsTr("You can read information about the selected component using the info button (i icon) from the tool menu.") + ("</li><li>") +
33          qsTr("You can zoom in or out the working area using the + and - keys, using the zoom buttons from the tool menu, or using pinch gestures on a touchscreen.") + ("</li><li>") +
34          qsTr("You can pan the working area by clicking on an empty area and dragging it.") + ("</li><li>") +
35          qsTr("You can click on a switch component to open and close it.") + ("</li></ul>")
36  credit: ""
37  section: "sciences experiment"
38  createdInVersion: 9000
39}
40