Skip to content

Commit c26fde9

Browse files
committed
Update sample app
1 parent 3a8b6ce commit c26fde9

11 files changed

Lines changed: 660 additions & 610 deletions

File tree

.github/workflows/devnet-bundle-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
nexus_url: ${{secrets.NEXUS_URL}}
2323
nexus_url_release: ${{secrets.NEXUS_URL_RELEASE}}
2424
nexus_url_snapshots: ${{secrets.NEXUS_URL_SNAPSHOTS}}
25-
release_token: ${{secrets.RELEASE_TOKEN}}
26-
git_mail: ${{secrets.GIT_MAIL}}
27-
git_user: ${{secrets.GIT_USER}}
25+
release_token: ${{secrets.TECHNICAL_USER_RELEASE_TOKEN}}
26+
git_mail: ${{secrets.TECHNICAL_USER_MAIL}}
27+
git_user: ${{secrets.TECHNICAL_USER_NAME}}
2828
release_version: ${{ github.event.inputs.releaseVersion }}
2929
next_dev_version: ${{ github.event.inputs.nextDevVersion }}
3030
ms_teams_webhook_uri: ${{secrets.MS_TEAMS_WEBHOOK_URI}}

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,18 @@
5959
<type>pom</type>
6060
<scope>test</scope>
6161
</dependency>
62+
<dependency>
63+
<groupId>de.conterra.devnet</groupId>
64+
<artifactId>mapapps-imprint-privacy</artifactId>
65+
<version>1.0.3</version>
66+
<scope>test</scope>
67+
</dependency>
68+
<dependency>
69+
<groupId>de.conterra.devnet</groupId>
70+
<artifactId>mapapps-query-builder</artifactId>
71+
<version>5.4.1</version>
72+
<scope>test</scope>
73+
</dependency>
6274
</dependencies>
6375
<build>
6476
<pluginManagement>

src/main/js/apps/sample/app.json

Lines changed: 453 additions & 605 deletions
Large diffs are not rendered by default.
93.9 KB
Loading
315 KB
Loading
Lines changed: 31 additions & 0 deletions
Loading
164 KB
Loading
289 KB
Loading
-12.4 KB
Binary file not shown.

src/main/js/apps/sample/nls/bundle.js

Lines changed: 80 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,86 @@
1515
*/
1616
module.exports = {
1717
root: {
18-
apptitle: "Statistiken der Wahlkreise - 2016"
18+
apptitle: "Charting Sample",
19+
map: {
20+
koeln1: {
21+
title: "Basic Data",
22+
districts: {
23+
title: "City Districts",
24+
text: "Cologne's city district <b>{STV_NAME}</b>."
25+
},
26+
boroughs: {
27+
title: "Boroughs",
28+
text: "Boroughs <b>{NAME}</b> is located in Cologne's precints {STADTBEZIR}."
29+
},
30+
precints: {
31+
title: "Precints",
32+
text: "Cologne's precint {NAME}."
33+
}
34+
},
35+
koeln2: {
36+
title: "Education and Culture",
37+
description: "List of all libraries, museums and schools in Cologne.",
38+
libraries: {
39+
title: "Libraries"
40+
},
41+
museums: {
42+
title: "Museums",
43+
text: "Museum <b>{NAME}</b> is located in Cologne's boroughs {STADTTEIL}."
44+
},
45+
schools: {
46+
title: "Schools"
47+
}
48+
},
49+
koeln3: {
50+
title: "Recreation",
51+
sights: {
52+
title: "Tourist Attractions",
53+
titleSingle: "Tourist Attraction",
54+
text: "Tourist attraction <b>{NAME}</b> is located in Cologne's borough {STADTTEIL}."
55+
},
56+
playgrounds: {
57+
title: "Playgrounds- and Sports Areas",
58+
text: "<b>{Spielplatzname}</b> is located in Cologne's borough {Stadtteil}.",
59+
baskets: "Basketball Baskets",
60+
goals: "Soccer Goals",
61+
tables: "Ping-Pong Tables",
62+
walls: "Goal Wall",
63+
skate: "Skating",
64+
misc: "Miscellaneous"
65+
},
66+
places: {
67+
title: "Places of Event",
68+
titleSingle: "Place of Event",
69+
text: "<b>{NAME}</b> is a {expression/carrier} place of event."
70+
}
71+
},
72+
basemaps: {
73+
gray: "Street Map (gray)",
74+
streets: "Street Map",
75+
topo: "Topographical Map",
76+
hybrid: "Aerial (hybrid)"
77+
}
78+
},
79+
tools: {
80+
drawerLeft: "Tools",
81+
measuring: "Measuring Tools"
82+
},
83+
common: {
84+
number: "Number",
85+
area: "Area [ha]",
86+
totalArea: "Percentage of the total area [%]",
87+
name: "Name",
88+
provider: "Provider",
89+
address: "Address",
90+
furtherinfo: "Further Information",
91+
precint: "Precint",
92+
district: "District",
93+
private: "privater",
94+
municipal: "municipal",
95+
zip: "Zip code",
96+
type: "Type"
97+
}
1998
},
2099
"de": true
21100
};

0 commit comments

Comments
 (0)