1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2016 Stefan Toncu <stefan.toncu29@gmail.com>
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7import GCompris 1.0
8
9ActivityInfo {
10  name: "share/Share.qml"
11  difficulty: 2
12  icon: "share/share.svg"
13  author: "Stefan Toncu &lt;stefan.toncu29@gmail.com&gt;"
14  //: Activity title
15  title: qsTr("Share pieces of candy")
16  //: Help title
17  description: qsTr("Try to split the pieces of candy between a given number of children.")
18  //intro: "Share the candies equally among the specified number of children and notice that there may be a rest left"
19  //: Help goal
20  goal: qsTr("Learn division of numbers.")
21  //: Help prerequisite
22  prerequisite: qsTr("Know how to count.")
23  //: Help manual
24  manual: qsTr("Follow the instructions shown on the screen: first, drag the given number of boys/girls to the center, then drag pieces of candy to each child's rectangle.") + ("<br>") +
25    qsTr("If there is a rest, it needs to be placed inside the candy jar.")
26  credit: ""
27  section: "math arithmetic"
28  createdInVersion: 7000
29  levels :"1,2,3"
30}
31