Warning, /education/gcompris/src/activities/ordering_alphabets/resource/2/Data.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2021 Harsh Kumar <hadron43@yahoo.com>
0004  *
0005  * Authors:
0006  *   Harsh Kumar <hadron43@yahoo.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 import GCompris 1.0
0011 
0012 Data {
0013     objective: qsTr("Descending order, 5 defined letters.")
0014     difficulty: 4
0015     data: [
0016         {
0017             mode: "descending",      // Either ascending or descending
0018             // To override the default hardcoded instruction, define instruction string
0019             // instruction: "overridden instruction"
0020             random: false,
0021             //: Add 5 letters in ascending lexicographical order, separated by | character. The objective is to give children these letters in random order and ask them to sort in descending lexicographical order.
0022             string: qsTr("v|w|x|y|z")
0023         },
0024         {
0025             mode: "descending",      // Either ascending or descending
0026             random: false,
0027             //: Add 5 letters in ascending lexicographical order, separated by | character. The objective is to give children these letters in random order and ask them to sort in descending lexicographical order.
0028             string: qsTr("a|b|d|f|g")
0029         }
0030     ]
0031 }