Warning, /education/gcompris/src/activities/submarine/ActivityInfo.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - ActivityInfo.qml
0002  *
0003  * SPDX-FileCopyrightText: 2017 Rudra Nil Basu <rudra.nil.basu.1996@gmail.com>
0004  *
0005  * SPDX-License-Identifier: GPL-3.0-or-later
0006  */
0007 import GCompris 1.0
0008 
0009 ActivityInfo {
0010   name: "submarine/Submarine.qml"
0011   difficulty: 5
0012   icon: "submarine/submarine.svg"
0013   author: "Rudra Nil Basu &lt;rudra.nil.basu.1996@gmail.com&gt;"
0014   //: Activity title
0015   title: qsTr("Pilot a submarine")
0016   //: Help title
0017   description: qsTr("Drive the submarine to the end point.")
0018   //intro: "Drive the submarine to the right end of the screen without colliding with any objects"
0019   //: Help goal
0020   goal: qsTr("Learn how to control a submarine.")
0021   //: Help prerequisite
0022   prerequisite: qsTr("Move and click using the mouse, physics basics.")
0023   //: Help manual
0024   manual: qsTr("Control the various parts of the submarine (the engine, ballast tanks and diving planes) to reach the end point.") + ("<br><br>") +
0025           qsTr("<b>Keyboard controls:</b>") + ("<br>") +
0026           qsTr("<b>Engine</b>") + ("<ul><li>") +
0027           qsTr("D or Right arrow: increase the velocity") + ("</li><li>") +
0028           qsTr("A or Left arrow: decrease the velocity") + ("</li></ul>") +
0029           qsTr("<b>Ballast tanks</b>") + ("<ul><li>") +
0030           qsTr("W or Up arrow: switch filling of the central ballast tank") + ("</li><li>") +
0031           qsTr("S or Down arrow: switch flushing of the central ballast tank") + ("</li><li>") +
0032           qsTr("R: switch filling of the left ballast tank") + ("</li><li>") +
0033           qsTr("F: switch flushing of the left ballast tank") + ("</li><li>") +
0034           qsTr("T: switch filling of the right ballast tank") + ("</li><li>") +
0035           qsTr("G: switch flushing of the right ballast tank") + ("</li></ul>") +
0036           qsTr("<b>Diving planes</b>") + ("<ul><li>") +
0037           qsTr("+: increase diving planes angle") + ("</li><li>") +
0038           qsTr("-: decrease diving planes angle") + ("</li></ul>")
0039   credit: ""
0040   section: "sciences experiment"
0041   enabled: ApplicationInfo.isBox2DInstalled
0042   createdInVersion: 9000
0043 }