1/* GCompris
2 *
3 * SPDX-FileCopyrightText: 2015 Ayush Agrawal <ayushagrawal288@gmail.com>
4 *
5 * Authors:
6 *   Bruno Coudoin <bruno.coudoin@gcompris.net> (GTK+ version)
7 *   Ayush Agrawal <ayushagrawal288@gmail.com> (Qt Quick port)
8 *
9 *   SPDX-License-Identifier: GPL-3.0-or-later
10 */
11import QtQuick 2.9
12
13QtObject {
14    property string backgroundImage: "qrc:/gcompris/src/activities/explore_monuments/resource/germany/germany.svg"
15    property var tab: [
16        {
17            "image": "qrc:/gcompris/src/activities/explore_monuments/resource/key.svg",
18            "title": qsTr("Neuschwanstein Castle"),
19            "text": qsTr("The ultimate fairytale castle, Neuschwanstein is situated on a rugged hill near Füssen in southwest Bavaria. It was the inspiration for the Sleeping Beauty castles in the Disneyland parks. The castle was commissioned by King Ludwig II of Bavaria who was declared insane when the castle was almost completed in 1886 and found dead a few days later. Neuschwanstein is the most photographed building in the country and one of the most popular tourist attractions in Germany."),
20            "image2": "qrc:/gcompris/src/activities/explore_monuments/resource/germany/neuschwansteinCastle.jpg",
21            "text2": qsTr("Neuschwanstein Castle"),
22            "x": "0.525",
23            "y": "0.938",
24            "height": "0.07",
25            "width": "0.07"
26        },
27        {
28            "image": "qrc:/gcompris/src/activities/explore_monuments/resource/key.svg",
29            "title": qsTr("Trier Imperial Baths"),
30            "text": qsTr("The Trier Imperial Baths are a large Roman bath complex in Trier, Germany. It is designated as part of the Roman Monuments, Cathedral of St. Peter and Church of Our Lady in Trier UNESCO World Heritage Site."),
31            "image2": "qrc:/gcompris/src/activities/explore_monuments/resource/germany/trierImperialBaths.jpg",
32            "text2": qsTr("Trier Imperial Baths"),
33            "x": "0.205",
34            "y": "0.721",
35            "height": "0.07",
36            "width": "0.07"
37        },
38        {
39            "image": "qrc:/gcompris/src/activities/explore_monuments/resource/key.svg",
40            "title": qsTr("Brandenburg Gate"),
41            "text": qsTr("The Brandenburg Gate is the only surviving city gate of Berlin and symbolizes the reunification of East and West Berlin. Built in the 18th century, the Brandenburg Gate is the entry to Unter den Linden, the prominent boulevard of linden trees which once led directly to the palace of the Prussian monarchs. It is regarded as one of the most famous landmarks in Europe."),
42            "image2": "qrc:/gcompris/src/activities/explore_monuments/resource/germany/brandenburgGate.jpg",
43            "text2": qsTr("Brandenburg Gate"),
44            "x": "0.753",
45            "y": "0.331",
46            "height": "0.07",
47            "width": "0.07"
48        },
49        {
50            "image": "qrc:/gcompris/src/activities/explore_monuments/resource/key.svg",
51            "title": qsTr("Berlin Cathedral"),
52            "text": qsTr("The Cathedral of Berlin is the largest church in the city, and it serves as a vital center for the Protestant church of Germany. Reaching out well beyond the borders of the parish and of Berlin, the cathedral attracts thousands of visitors, year after year, from Germany and abroad."),
53            "image2": "qrc:/gcompris/src/activities/explore_monuments/resource/germany/berlinCathedral.jpg",
54            "text2": qsTr("Berlin Cathedral"),
55            "x": "0.736",
56            "y": "0.255",
57            "height": "0.07",
58            "width": "0.07"
59        },
60        {
61            "image": "qrc:/gcompris/src/activities/explore_monuments/resource/key.svg",
62            "title": qsTr("Schwerin Palace"),
63            "text": qsTr("This romantic fairytale fortress, with all its many towers, domes and wings, is reflected in the waters of Lake Schwerin. It was completed in 1857 and symbolized the powerful dynasty of its founder, Friedrich Franz II."),
64            "image2": "qrc:/gcompris/src/activities/explore_monuments/resource/germany/schwerinPalace.jpg",
65            "text2": qsTr("Schwerin Palace"),
66            "x": "0.585",
67            "y": "0.206",
68            "height": "0.07",
69            "width": "0.07"
70        },
71        {
72            "image": "qrc:/gcompris/src/activities/explore_monuments/resource/key.svg",
73            "title": qsTr("Aula Palatina"),
74            "text": qsTr("The long, high-ceilinged brick structure was the throne hall of the Roman emperor until the destruction of the city by Germanic tribes. The invaders built a settlement inside the roofless ruin. In the 12th century, the apse was converted into a tower to accommodate the Archbishop of Trier."),
75            "image2": "qrc:/gcompris/src/activities/explore_monuments/resource/germany/aulaPalatina.jpg",
76            "text2": qsTr("Aula Palatina"),
77            "x": "0.245",
78            "y": "0.655",
79            "height": "0.07",
80            "width": "0.07"
81        },
82        {
83            "image": "qrc:/gcompris/src/activities/explore_monuments/resource/key.svg",
84            "title": qsTr("Worms Cathedral"),
85            "text": qsTr("Worms Cathedral (Wormser Dom) also known as the Cathedral of St Peter is a Romanesque cathedral in the German city of Worms. A sandstone structure with distinctive conical towers, Worms Cathedral was constructed in phases throughout the twelfth century and mostly completed by 1181."),
86            "image2": "qrc:/gcompris/src/activities/explore_monuments/resource/germany/wormsCathedral.jpg",
87            "text2": qsTr("Worms Cathedral"),
88            "x": "0.332",
89            "y": "0.697",
90            "height": "0.07",
91            "width": "0.07"
92        },
93    ]
94
95    property var instructions: [
96        {
97            "text": qsTr("Monuments of Germany")
98        },
99        {
100            "text": qsTr("Click on the location of the given monument.")
101        }
102    ]
103}
104