1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2021 Harsh Kumar <hadron43@yahoo.com>
4 *
5 * Authors:
6 *   Harsh Kumar <hadron43@yahoo.com>
7 *   Emmanuel Charruau <echarruau@gmail.com>
8 *   Timothée Giet <animtim@gmail.com>
9 *
10 *   SPDX-License-Identifier: GPL-3.0-or-later
11 */
12import GCompris 1.0
13
14ActivityInfo {
15    name: "ordering_numbers/OrderingNumbers.qml"
16    difficulty: 2
17    icon: "ordering_numbers/ordering.svg"
18    author: "Rudra Nil Basu &lt;rudra.nil.basu.1996@gmail.com&gt;, Emmanuel Charruau &lt;echarruau@gmail.com&gt;, Harsh Kumar &lt;hadron43@yahoo.com&gt;"
19    //: Activity title
20    title: qsTr("Ordering numbers")
21    //: Help title
22    description: qsTr("Arrange the given numbers in ascending or descending order as requested.")
23    //: intro: "Arrange the numbers in the correct order."
24    //: Help goal
25    goal: qsTr("Compare numbers.")
26    //: Help prerequisite
27    prerequisite: qsTr("Counting.")
28    //: Help manual
29    manual: qsTr("You are provided with some numbers. Drag and drop them to the upper area in ascending or descending order as requested.")
30    section: "math numeration"
31    createdInVersion: 20000
32    levels: "1,2,3,4,5,6,7,8"
33}
34