Warning, /education/gcompris/src/activities/baby_wordprocessor/ActivityInfo.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris - ActivityInfo.qml
0002 *
0003 * SPDX-FileCopyrightText: 2015 Bruno Coudoin <bruno.coudoin@gcompris.net>
0004 *
0005 * SPDX-License-Identifier: GPL-3.0-or-later
0006 */
0007 import GCompris 1.0
0008
0009 ActivityInfo {
0010 name: "baby_wordprocessor/BabyWordprocessor.qml"
0011 difficulty: 1
0012 icon: "baby_wordprocessor/baby_wordprocessor.svg"
0013 author: "Bruno Coudoin <bruno.coudoin@gcompris.net>"
0014 //: Activity title
0015 title: qsTr("A baby word processor")
0016 //: Help title
0017 description: qsTr("A simplistic word processor to let the children play around with a keyboard and see letters.")
0018 //intro: "A simplistic word processor to play around with the keyboard"
0019 //: Help goal
0020 goal: qsTr("Discover the keyboard and the letters.")
0021 prerequisite: ""
0022 //: Help manual
0023 manual: qsTr("Just type on the real or virtual keyboard like in a word processor.
0024 Clicking on the 'Title' button will make the text bigger. Similarly, the 'subtitle' button will make the text slightly less bigger. Clicking on 'paragraph' will remove the formatting.")+ ("<br><br>") +
0025 qsTr("<b>Keyboard controls:</b>") + ("<ul><li>") +
0026 qsTr("Arrows: navigate inside the text") + ("</li><li>") +
0027 qsTr("Shift + Arrows: select a part of the text") + ("</li><li>") +
0028 qsTr("Ctrl + A: select all the text") + ("</li><li>") +
0029 qsTr("Ctrl + C: copy selected text") + ("</li><li>") +
0030 qsTr("Ctrl + X: cut selected text") + ("</li><li>") +
0031 qsTr("Ctrl + V: paste copied or cut text") + ("</li><li>") +
0032 qsTr("Ctrl + D: delete selected text") + ("</li><li>") +
0033 qsTr("Ctrl + Z: undo") + ("</li><li>") +
0034 qsTr("Ctrl + Shift + Z: redo") + ("</li></ul>")
0035 credit: ""
0036 section: "computer keyboard reading letters"
0037 createdInVersion: 6000
0038 }