Implement 'groupSince' and 'groupGoal' in group profile

This commit is contained in:
Wolfgang Huß 2022-08-29 11:50:06 +02:00
parent f678dad50a
commit d1b940b332
3 changed files with 8 additions and 2 deletions

View File

@ -521,6 +521,8 @@
"follow": "Folgen",
"followers": "Folgen",
"following": "Folge Ich",
"groupGoal": "Ziel:",
"groupSince": "Gründung",
"invites": {
"description": "Zur Einladung die E-Mail-Adresse hier eintragen.",
"emailPlaceholder": "E-Mail-Adresse für die Einladung",

View File

@ -521,6 +521,8 @@
"follow": "Follow",
"followers": "Followers",
"following": "Following",
"groupGoal": "Goal:",
"groupSince": "Foundation",
"invites": {
"description": "Enter their e-mail address for invitation.",
"emailPlaceholder": "E-mail to invite",

View File

@ -39,7 +39,7 @@
{{ user.location.name }}
</ds-text> -->
<ds-text align="center" color="soft" size="small">
{{ $t('profile.memberSince') }} {{ group.createdAt | date('MMMM yyyy') }}
{{ $t('profile.groupSince') }} {{ group.createdAt | date('MMMM yyyy') }}
</ds-text>
</ds-space>
<!-- Wolle: <ds-space v-if="user.badges && user.badges.length" margin="x-small">
@ -83,7 +83,9 @@
<template v-if="group.about">
<hr />
<ds-space margin-top="small" margin-bottom="small">
<ds-text color="soft" size="small" class="hyphenate-text">{{ group.about }}</ds-text>
<ds-text color="soft" size="small" class="hyphenate-text">
{{ $t('profile.groupGoal') }} {{ group.about }}
</ds-text>
</ds-space>
</template>
</base-card>