From 49232ba4bff11822ffb9c4ae469bcdaf6b7974ae Mon Sep 17 00:00:00 2001
From: Phong Le <anphong221@gmail.com>
Date: Wed, 4 Dec 2024 15:02:01 +0100
Subject: [PATCH] Update: Added Mission Statement to Footer

---
 src/components/elements/Footer.vue | 5 +++++
 src/i18n/de.ts                     | 2 ++
 src/i18n/en.ts                     | 2 ++
 3 files changed, 9 insertions(+)

diff --git a/src/components/elements/Footer.vue b/src/components/elements/Footer.vue
index 8ee8c0c9..e48e92b3 100644
--- a/src/components/elements/Footer.vue
+++ b/src/components/elements/Footer.vue
@@ -27,6 +27,11 @@
           <u>{{ $t("nav.extrasImprint") }}</u>
         </b-nav-item>
         <div class="vl" />
+        <!-- Mission Statement -->
+        <b-nav-item :href="$t('nav.url.mission').toString()" target="_blank">
+          <u>{{ $t("nav.mission") }}</u>
+        </b-nav-item>
+        <div class="vl" />
         <!-- Accessibility -->
         <b-nav-item
           :href="$t('nav.url.extrasAccessibility').toString()"
diff --git a/src/i18n/de.ts b/src/i18n/de.ts
index ea32a065..33708e4b 100644
--- a/src/i18n/de.ts
+++ b/src/i18n/de.ts
@@ -19,6 +19,7 @@ export default {
     userLogOut: "Ausloggen",
     coscine: "Coscine",
     privacyPolicy: "Datenschutzerklärung",
+    mission: "Mission Statement",
 
     theme: {
       toggle: "Farbschema wählen",
@@ -33,6 +34,7 @@ export default {
       extrasImprint: "https://www.coscine.de/imprint/",
       extrasAccessibility: "https://about.coscine.de/accessibility/",
       coscine: "https://www.coscine.de/",
+      mission: "https://about.coscine.de/about/mission-statement/",
     },
   },
 
diff --git a/src/i18n/en.ts b/src/i18n/en.ts
index 7afb3514..947219e8 100644
--- a/src/i18n/en.ts
+++ b/src/i18n/en.ts
@@ -19,6 +19,7 @@ export default {
     userLogOut: "Log out",
     coscine: "Coscine",
     privacyPolicy: "Privacy Policy",
+    mission: "Mission Statement",
 
     theme: {
       toggle: "Toggle theme",
@@ -33,6 +34,7 @@ export default {
       extrasImprint: "https://www.coscine.de/en/imprint/",
       extrasAccessibility: "https://about.coscine.de/en/accessibility/",
       coscine: "https://www.coscine.de/en/",
+      mission: "https://about.coscine.de/en/about/mission-statement/",
     },
   },
 
-- 
GitLab