1/* GCompris - ActivityInfo.qml
2 *
3 * SPDX-FileCopyrightText: 2016 Bruno Coudoin < bruno.coudoin@gcompris.net>
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7import GCompris 1.0
8
9ActivityInfo {
10  name: "roman_numerals/RomanNumerals.qml"
11  difficulty: 4
12  icon: "roman_numerals/roman_numerals.svg"
13  author: "Bruno Coudoin &lt;bruno.coudoin@gcompris.net&gt;"
14  //: Activity title
15  title: qsTr("Roman numerals")
16  //: Help title
17  description: ""
18  //intro: "Learn and practice roman to arabic numerals conversion"
19  //: Help goal
20  goal: qsTr("Learn how to read roman numerals and do the conversion to and from arabic numerals.")
21  //: Help prerequisite
22  prerequisite: ""
23  //: Help manual
24  manual: qsTr("Roman numerals are a numeral system that originated in ancient Rome and remained the usual way of writing numbers throughout Europe well into the Late Middle Ages. Numbers in this system are represented by combinations of letters from the Latin alphabet.") + "<br>" +
25  qsTr("Learn the rules to read Roman numerals and practice converting numbers to and from arabic numerals. Click on the OK button to validate your answer.") + ("<br><br>") +
26          qsTr("<b>Keyboard controls:</b>") + ("<ul><li>") +
27          qsTr("Digits: type arabic numerals") + ("</li><li>") +
28          qsTr("Letters: type roman numerals (with I, V, X, L, C, D and M)") + ("</li><li>") +
29          qsTr("Enter: validate your answer") + ("</li></ul>")
30  credit: ""
31  section: "sciences history"
32  createdInVersion: 7000
33}
34