1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2017 UTKARSH TIWARI <iamutkarshtiwari@kde.org>
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7import GCompris 1.0
8
9ActivityInfo {
10  name: "bargame_2players/Bargame2players.qml"
11  difficulty: 2
12  icon: "bargame_2players/bargame_2players.svg"
13  author: "Utkarsh Tiwari &lt;iamutkarshtiwari@kde.org&gt;"
14  //: Activity title
15  title: qsTr("Bargame (with a friend)")
16  //: Help title
17  description: qsTr("Select the number of balls you wish to place in the holes and then click on the OK button. The winner is the one who hasn't put a ball in the red hole.")
18  // intro: "Select the number of balls you wish to place in the holes and then click on the OK button. The winner is the one who hasn't put a ball in the red hole."
19  //: Help goal
20  goal: qsTr("Don't put the ball in the last hole.")
21  //: Help prerequisite
22  prerequisite: qsTr("Ability to count.")
23  //: Help manual
24  manual: qsTr("Click on the ball icon to select a number of balls, then click on the OK button to place the balls in the holes. You win if your friend has to place the last ball.")
25  credit: ""
26  section: "strategy"
27  createdInVersion: 8000
28}
29