1/* GCompris - Data.qml
2 *
3 * SPDX-FileCopyrightText: 2021 Harsh Kumar <hadron43@yahoo.com>
4 *
5 * Authors:
6 *   Harsh Kumar <hadron43@yahoo.com>
7 *
8 *   SPDX-License-Identifier: GPL-3.0-or-later
9 */
10import GCompris 1.0
11
12Data {
13    objective: qsTr("Descending order, 8 random letters.")
14    difficulty: 4
15    data: [
16        {
17            mode: "descending",
18            random: true,          // Set this true to override values array with random values
19            numberOfElementsToOrder: 8,
20            //: 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 descending order.
21            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")
22        }
23    ]
24}
25