mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
add info text, locales in community page, if no contributions
This commit is contained in:
parent
5bd37a5a2a
commit
ff614ad27b
@ -63,6 +63,10 @@
|
||||
"lastMonth": "Für den ausgewählten Monat ist das Schöpfungslimit erreicht.",
|
||||
"thisMonth": "Für den aktuellen Monat ist das Schöpfungslimit erreicht."
|
||||
},
|
||||
"noContributions": {
|
||||
"myContributions":"Du hast noch keine Beiträge eingereicht.",
|
||||
"allContributions":"Es wurden noch keine Beiträge eingereicht."
|
||||
},
|
||||
"selectDate": "Wann war dein Beitrag?",
|
||||
"submit": "Einreichen",
|
||||
"submitted": "Der Beitrag wurde eingereicht.",
|
||||
|
||||
@ -20,7 +20,9 @@
|
||||
/>
|
||||
</b-tab>
|
||||
<b-tab no-body>
|
||||
<div v-if="items.length === 0">Du hast noch keine Beiträge eingereicht.</div>
|
||||
<div v-if="items.length === 0">
|
||||
{{ $t('contribution.noContributions.myContributions') }}
|
||||
</div>
|
||||
<div v-else>
|
||||
<contribution-list
|
||||
@closeAllOpenCollapse="closeAllOpenCollapse"
|
||||
@ -36,7 +38,9 @@
|
||||
</div>
|
||||
</b-tab>
|
||||
<b-tab no-body>
|
||||
<div v-if="items.length === 0">Du hast noch keine Beiträge eingereicht.</div>
|
||||
<div v-if="itemsAll.length === 0">
|
||||
{{ $t('contribution.noContributions.allContributions') }}
|
||||
</div>
|
||||
<div v-else>
|
||||
<contribution-list
|
||||
:items="itemsAll"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user