feat:#54 added htwk app information

This commit is contained in:
Elmar Kresse
2024-09-24 16:37:23 +02:00
parent c43e5d666e
commit fdf6d4572e
2 changed files with 18 additions and 1 deletions

View File

@ -229,6 +229,13 @@
"six": "Make other settings as desired.",
"seven": "Click on 'Subscribe to calendar.'",
"eight": "The Windows Phone device must be logged in with the same Outlook.com user account. From now on, calendar synchronization should occur automatically."
},
"htwk_app": {
"description": "The HTWK app offers the possibility to subscribe to the timetable directly in the app. All you have to do is insert the token in the app and you'll always have your timetable with you. ",
"one": "Create your calendar and copy the token.",
"two": "Open the HTWK app and go to the calendar.",
"three": "Paste the token there and you'll always have your timetable with you.",
"four": "If you have already subscribed to a calendar in the app, you can change the calendar using the button at the top right."
}
},
"fourthQuestion": "Subscribe to the calendar? I want to download it!",

View File

@ -16,7 +16,8 @@ You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<script lang="ts" setup></script>
<script lang="ts" setup>
</script>
<template>
<div class="flex align-items-center justify-content-center flex-column">
@ -206,6 +207,15 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
<li>{{ $t("faqView.thirdAnswer.windows_phone.eight") }}</li>
</ol>
</AccordionTab>
<AccordionTab header="HTWK App">
<p>{{ $t("faqView.thirdAnswer.htwk_app.description") }}</p>
<ol>
<li>{{ $t("faqView.thirdAnswer.htwk_app.one") }}</li>
<li>{{ $t("faqView.thirdAnswer.htwk_app.two") }}</li>
<li>{{ $t("faqView.thirdAnswer.htwk_app.three") }}</li>
<li>{{ $t("faqView.thirdAnswer.htwk_app.four") }}</li>
</ol>
</AccordionTab>
</Accordion>
</div>
</div>