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

0001 /* GCompris - ActivityInfo.qml
0002  *
0003  * SPDX-FileCopyrightText: 2015 Akshat Tandon <akshat.tandon@research.iiit.ac.in>
0004  *
0005  * SPDX-License-Identifier: GPL-3.0-or-later
0006  */
0007 import GCompris 1.0
0008 
0009 ActivityInfo {
0010   name: "graph-coloring/GraphColoring.qml"
0011   difficulty: 1
0012   icon: "graph-coloring/graph-coloring.svg"
0013   author: "Akshat Tandon &lt;akshat.tandon@research.iiit.ac.in&gt;"
0014   //: Activity title
0015   title: qsTr("Graph coloring")
0016   //: Help title
0017   description: qsTr("Color the graph so that no two adjacent nodes have the same color.")
0018   //intro: "Color the graph so that no two adjacent nodes have the same color."
0019   //: Help goal
0020   goal: qsTr("Learn to distinguish between different colors/shapes and learn about relative positions.")
0021   //: Help prerequisite
0022   prerequisite: qsTr("Ability to distinguish different colors/shapes, sense of positions.")
0023   //: Help manual
0024   manual: qsTr("Place colors/shapes on the graph so that no two adjacent nodes have the same color. Select a node, then select an item in the list to place it on the node.") + ("<br><br>") +
0025           qsTr("<b>Keyboard controls:</b>") + ("<ul><li>") +
0026           qsTr("Right and Left arrows: navigate") + ("</li><li>") +
0027           qsTr("Space: select an item") + ("</li></ul>")
0028   credit: ""
0029   section: "discovery logic"
0030   createdInVersion: 6000
0031 }