From fd9e50cd05e9f2b96c823f5ccf9759337286e64f Mon Sep 17 00:00:00 2001 From: ogerly Date: Wed, 8 Feb 2023 12:11:53 +0100 Subject: [PATCH] add legend on map --- webapp/locales/de.json | 5 +++++ webapp/locales/en.json | 5 +++++ webapp/pages/map.vue | 14 +++++++++++++- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/webapp/locales/de.json b/webapp/locales/de.json index f302a2cf8..a8277f677 100644 --- a/webapp/locales/de.json +++ b/webapp/locales/de.json @@ -8,6 +8,11 @@ "loadMore": "mehr laden", "save": "Speichern" }, + "position": { + "my":"Meine Position", + "members":"Mitglied", + "organizations":"Organisation" + }, "admin": { "categories": { "categoryName": "Name", diff --git a/webapp/locales/en.json b/webapp/locales/en.json index 792622465..87173cb76 100644 --- a/webapp/locales/en.json +++ b/webapp/locales/en.json @@ -8,6 +8,11 @@ "loadMore": "load more", "save": "Save" }, + "position": { + "my":"My position", + "members":"Members", + "organizations":"Organizations" + }, "admin": { "categories": { "categoryName": "Name", diff --git a/webapp/pages/map.vue b/webapp/pages/map.vue index f5082904a..f1ac6462a 100644 --- a/webapp/pages/map.vue +++ b/webapp/pages/map.vue @@ -3,8 +3,20 @@
{{ $t('map.pageTitle') }} + +
+ + my position + {{ $t('position.my') }} + members + {{ $t('position.members') }} + organisations + {{ $t('position.organizations') }} +
+
- + +