Warning, /education/gcompris/src/activities/alphabet-sequence/AlphabetSequence.qml is written in an unsupported language. File is not indexed.

0001 /* gcompris - AlphabetSequence.qml
0002 
0003  SPDX-FileCopyrightText: 2014 Johnny Jazeix <jazeix@gmail.com>
0004 
0005  Bruno Coudoin: initial Gtk+ version
0006 
0007  SPDX-License-Identifier: GPL-3.0-or-later
0008 */
0009 
0010 import QtQuick 2.12
0011 import "../planegame"
0012 
0013 Planegame {
0014     id: activity
0015 
0016     // Put here the alphabet in your language, letters separated by: /
0017     // Supports multigraphs, e.g. /sh/ or /sch/ gets treated as one letter
0018     property string alphabet: qsTr("a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z");
0019 
0020     dataset: [
0021         {
0022             data: activity.alphabet.split("/"),
0023             showNext: true
0024         },
0025         {
0026             data: activity.alphabet.toUpperCase().split("/"),
0027             showNext: true
0028         },
0029         {
0030             data: activity.alphabet.split("/"),
0031             showNext: false
0032         },
0033         {
0034             data: activity.alphabet.toUpperCase().split("/"),
0035             showNext: false
0036         }
0037     ]
0038 }