Warning, /education/gcompris/src/activities/morse_code/resource/2/Data.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris - Data.qml
0002 *
0003 * SPDX-FileCopyrightText: 2022 Johnny Jazeix <jazeix@gmail.com>
0004 *
0005 * Authors:
0006 * Johnny Jazeix <jazeix@gmail.com>
0007 *
0008 * SPDX-License-Identifier: GPL-3.0-or-later
0009 */
0010 import GCompris 1.0
0011
0012 Data {
0013 objective: qsTr("Digits.")
0014 difficulty: 3
0015 data: [
0016 {
0017 values: ["_random_",["1", "2", "3", "4", "5"]],
0018 question: qsTr("Send the message %1 in Morse code."),
0019 toAlpha: false
0020 },
0021 {
0022 values: ["_random_",[".----","..---","...--","....-","....."]],
0023 question: qsTr("Convert the message %1 to digits."),
0024 toAlpha: true
0025 },
0026 {
0027 values: ["_random_",[".----","..---","...--","....-","....."]],
0028 question: qsTr("Find the corresponding digit."),
0029 audioMode: true,
0030 toAlpha: true
0031 },
0032 {
0033 values: ["_random_",["6", "7", "8", "9", "0"]],
0034 question: qsTr("Send the message %1 in Morse code."),
0035 toAlpha: false
0036 },
0037 {
0038 values: ["_random_",["-....","--...","---..","----.","-----"]],
0039 question: qsTr("Convert the message %1 to digits."),
0040 toAlpha: true
0041 },
0042 {
0043 values: ["_random_",["-....","--...","---..","----.","-----"]],
0044 question: qsTr("Find the corresponding digit."),
0045 audioMode: true,
0046 toAlpha: true
0047 }
0048 ]
0049 }