mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
Merge remote-tracking branch 'origin/master' into 3225-release-20-decentralized-communities
This commit is contained in:
commit
65cbc857f6
@ -241,6 +241,7 @@ export const searchAdminUsers = gql`
|
||||
userList {
|
||||
firstName
|
||||
lastName
|
||||
role
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -20,6 +20,7 @@
|
||||
},
|
||||
"back": "Zurück",
|
||||
"community": {
|
||||
"admins": "Administratoren",
|
||||
"choose-another-community": "Eine andere Gemeinschaft auswählen",
|
||||
"community": "Gemeinschaft",
|
||||
"communityMember": "Du bist aktives Mitglied",
|
||||
@ -27,9 +28,6 @@
|
||||
"moderator": "Moderator",
|
||||
"moderators": "Moderatoren",
|
||||
"myContributions": "Meine Beiträge",
|
||||
"noOpenContributionLinkText": "Zur Zeit gibt es keine per Link erzeugte Schöpfungen.",
|
||||
"openContributionLinks": "Per Link erzeugte Schöpfungen",
|
||||
"openContributionLinkText": "Für Startguthaben oder ähnliche Zwecke kann die Gemeinschaft so genannte Schöpfungs-Links erstellen. Sie lösen automatische Schöpfungen aus, die dem Benutzer gut geschrieben werden.\nDie Gemeinschaft „{name}“ unterstützt aktuell {count} per Link erzeugte Schöpfungen:",
|
||||
"startNewsButton": "Gradidos versenden",
|
||||
"submitContribution": "Schreiben"
|
||||
},
|
||||
@ -77,8 +75,7 @@
|
||||
"yourActivity": "Bitte trage eine Tätigkeit ein!"
|
||||
},
|
||||
"contribution-link": {
|
||||
"thanksYouWith": "dankt dir mit",
|
||||
"unique": "(einmalig)"
|
||||
"thanksYouWith": "dankt dir mit"
|
||||
},
|
||||
"contributionText": "Beitragstext",
|
||||
"creation": "Schöpfen",
|
||||
|
||||
@ -20,6 +20,7 @@
|
||||
},
|
||||
"back": "Back",
|
||||
"community": {
|
||||
"admins": "Administrators",
|
||||
"choose-another-community": "Choose another community",
|
||||
"community": "Community",
|
||||
"communityMember": "You are an active member",
|
||||
@ -27,9 +28,6 @@
|
||||
"moderator": "Moderator",
|
||||
"moderators": "Moderators",
|
||||
"myContributions": "My contributions",
|
||||
"noOpenContributionLinkText": "Currently there are no link-generated creations.",
|
||||
"openContributionLinks": "Creations generated by link",
|
||||
"openContributionLinkText": "For starting credits or similar purposes, the community can create so-called creation links. They trigger automatic creations that are credited to the user.\nThe \"{name}\" community currently supports {count} link-generated creations:",
|
||||
"startNewsButton": "Send Gradidos",
|
||||
"submitContribution": "Contribute"
|
||||
},
|
||||
@ -77,8 +75,7 @@
|
||||
"yourActivity": "Please enter an activity!"
|
||||
},
|
||||
"contribution-link": {
|
||||
"thanksYouWith": "thanks you with",
|
||||
"unique": "(unique)"
|
||||
"thanksYouWith": "thanks you with"
|
||||
},
|
||||
"contributionText": "Contribution Text",
|
||||
"creation": "Creation",
|
||||
|
||||
@ -18,6 +18,7 @@
|
||||
},
|
||||
"back": "Volver",
|
||||
"community": {
|
||||
"admins": "Administradores",
|
||||
"choose-another-community": "Escoger otra comunidad",
|
||||
"community": "Comunidad",
|
||||
"continue-to-registration": "Continuar con el registro",
|
||||
|
||||
@ -20,6 +20,7 @@
|
||||
},
|
||||
"back": "Retour",
|
||||
"community": {
|
||||
"admins": "Administrateurs",
|
||||
"choose-another-community": "Choisissez une autre communauté",
|
||||
"community": "Communauté",
|
||||
"communityMember": "Vous etes un membre actif",
|
||||
|
||||
@ -18,6 +18,7 @@
|
||||
},
|
||||
"back": "Terug",
|
||||
"community": {
|
||||
"admins": "Beheerders",
|
||||
"choose-another-community": "Kies een andere gemeenschap",
|
||||
"community": "Gemeenschap",
|
||||
"continue-to-registration": "Verder ter registratie",
|
||||
|
||||
@ -20,6 +20,7 @@
|
||||
},
|
||||
"back": "Geri",
|
||||
"community": {
|
||||
"admins": "Yöneticiler",
|
||||
"choose-another-community": "Başka bir topluluk seçin",
|
||||
"community": "Topluluk",
|
||||
"continue-to-registration": "Kayıt işlemine devam et",
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
</b-link>
|
||||
</div>
|
||||
<hr />
|
||||
<div class="h3">{{ $t('community.openContributionLinks') }}</div>
|
||||
<!--<div class="h3">{{ $t('community.openContributionLinks') }}</div>
|
||||
<div v-if="count > 0">
|
||||
{{
|
||||
$t('community.openContributionLinkText', {
|
||||
@ -34,13 +34,15 @@
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<hr />
|
||||
<hr />-->
|
||||
|
||||
<div class="h3">{{ $t('community.admins') }}</div>
|
||||
<ul>
|
||||
<li v-for="item in admins" :key="item.id">{{ item.firstName }} {{ item.lastName }}</li>
|
||||
</ul>
|
||||
<div class="h3">{{ $t('community.moderators') }}</div>
|
||||
<ul>
|
||||
<li v-for="item in itemsAdminUser" v-bind:key="item.id">
|
||||
{{ item.firstName }} {{ item.lastName }}
|
||||
</li>
|
||||
<li v-for="item in moderators" :key="item.id">{{ item.firstName }} {{ item.lastName }}</li>
|
||||
</ul>
|
||||
|
||||
<hr />
|
||||
@ -96,6 +98,14 @@ export default {
|
||||
totalGradidoAvailable: null,
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
admins() {
|
||||
return this.itemsAdminUser.filter((item) => item.role === 'ADMIN')
|
||||
},
|
||||
moderators() {
|
||||
return this.itemsAdminUser.filter((item) => item.role === 'MODERATOR')
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
getContributionLinks() {
|
||||
this.$apollo
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user