Warning, /education/gcompris/src/activities/ordering_alphabets/resource/5/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("Ascending order, 8 random letters.")
0014     difficulty: 4
0015     data: [
0016         {
0017             mode: "ascending",
0018             random: true,          // Set this true to override values array with random values
0019             numberOfElementsToOrder: 8,
0020             //: Translate the below string to the set of alphabets in ascending order in your language. The objective is to give children some random letters from this string, and ask them to order them in ascending order.
0021             string: 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")
0022         }
0023     ]
0024 }