1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2020 Aiswarya Kaitheri Kandoth <aiswaryakk29@gmail.com>
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7import GCompris 1.0
8
9ActivityInfo {
10  name: "analog_electricity/AnalogElectricity.qml"
11  difficulty: 6
12  icon: "analog_electricity/analog_electricity.svg"
13  author: "Aiswarya Kaitheri Kandoth &lt;aiswaryakk29@gmail.com&gt;"
14  //: Activity title
15  title: qsTr("Analog electricity")
16  //: Help title
17  description: qsTr("Create and simulate an analog electric schema.")
18  //intro: "Learn how analog electricity works and create your own circuit."
19  //: Help goal
20  goal: qsTr("Create an analog electric schema with a real time simulation.")
21  //: Help prerequisite
22  prerequisite: qsTr("Requires some basic understanding of the concept of electricity.")
23  //: Help manual
24  manual: qsTr("Drag electrical components from the selector and drop them in the working area. In the working area, you can move the components by dragging them.") + " " + qsTr("To delete a component or wire, select the deletion tool on top of the component selector, and select the component or wire.") + " " + qsTr("You can click on the component and then on the rotate buttons to rotate it or on the info button to get information about it.") + " " + qsTr("You can click on the switch to open and close it. Likewise, you can change the rheostat value by dragging its slider.") + " " + qsTr("To connect two terminals, click on the first terminal, then on the second terminal. To deselect a terminal, click on any empty area.") + " " + qsTr("For repairing a broken bulb or LED, click on it after disconnecting it from the circuit. The simulation is updated in real time by any user action.")
25  credit: qsTr("The electric simulation engine is from edX: ") +
26            "&lt;https://github.com/edx/edx-platform/blob/master/common/lib/xmodule/xmodule/js/src/capa/schematic.js&gt;."
27  section: "sciences experiment"
28  createdInVersion: 10000
29}
30