Warning, /education/gcompris/src/activities/morse_code/resource/3/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("Words.") 0014 difficulty: 4 0015 data: [ 0016 { 0017 values: ["_random_",["CAT", "SING", "BEE", "RED", "WHAT"]], 0018 question: qsTr("Send the message %1 in Morse code."), 0019 audioMode: false, 0020 toAlpha: false 0021 }, 0022 { 0023 values: ["_random_",["CAT", "SING", "BEE", "RED", "WHAT"]], 0024 question: qsTr("Write the Morse code you hear."), 0025 audioMode: true, 0026 toAlpha: false 0027 }, 0028 { 0029 values: ["_random_",["-.-. .- -", // CAT 0030 "... .. -. --.", // SING 0031 "-... . .", // BEE 0032 ".-. . -..", // RED 0033 ".-- .... .- -"]], // WHAT 0034 question: qsTr("Convert the message in a word."), 0035 audioMode: true, 0036 toAlpha: true 0037 } 0038 ] 0039 }