From d71c4dc1ca97ea31657935a193974047ff21b91d Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle <patrizio@bekerle.com> Date: Tue, 2 Jun 2020 07:21:58 +0200 Subject: [PATCH] Add contact link in footer (VPU/Apps/Signature#7) --- packages/app-shell/src/app-shell.js | 1 + packages/app-shell/src/i18n/de/translation.json | 1 + packages/app-shell/src/i18n/en/translation.json | 1 + 3 files changed, 3 insertions(+) diff --git a/packages/app-shell/src/app-shell.js b/packages/app-shell/src/app-shell.js index f0401245..f35c7c1f 100644 --- a/packages/app-shell/src/app-shell.js +++ b/packages/app-shell/src/app-shell.js @@ -737,6 +737,7 @@ export class AppShell extends ScopedElementsMixin(LitElement) { <footer> <a target="_blank" rel="noopener" class="int-link-external" href="https://datenschutz.tugraz.at/erklaerung/">${i18n.t('privacy-policy')}</a> <a target="_blank" rel="noopener" class="int-link-external" href="${imprintUrl}">${i18n.t('imprint')}</a> + <a rel="noopener" class="int-link-external" href="mailto:it-support@tugraz.at">${i18n.t('contact')}</a> <vpu-build-info class="${prodClassMap}"></vpu-build-info> </footer> </div> diff --git a/packages/app-shell/src/i18n/de/translation.json b/packages/app-shell/src/i18n/de/translation.json index 0d814f7d..6353a615 100644 --- a/packages/app-shell/src/i18n/de/translation.json +++ b/packages/app-shell/src/i18n/de/translation.json @@ -6,6 +6,7 @@ }, "privacy-policy": "Datenschutz", "imprint": "Impressum", + "contact": "Kontakt", "page-updated-needs-reload": "Die Applikation wurde aktualisiert. Bitte laden Sie die Seite neu.", "activity-example": { "hello-world": "Hallo Welt" diff --git a/packages/app-shell/src/i18n/en/translation.json b/packages/app-shell/src/i18n/en/translation.json index 8dff8872..54f4fc78 100644 --- a/packages/app-shell/src/i18n/en/translation.json +++ b/packages/app-shell/src/i18n/en/translation.json @@ -6,6 +6,7 @@ }, "privacy-policy": "Privacy Policy", "imprint": "Legal Notice", + "contact": "Contact", "page-updated-needs-reload": "The application has been updated. Please reload the page.", "activity-example": { "hello-world": "Hello World" -- GitLab