mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
add count to the locales: openContributionLinkText
This commit is contained in:
parent
4ab160ec44
commit
45f877f559
@ -30,7 +30,7 @@
|
||||
"moderators": "Moderatoren",
|
||||
"myContributions": "Meine Beiträge zum Gemeinwohl",
|
||||
"openContributionLinks": "öffentliche Beitragslinklist",
|
||||
"openContributionLinkText": "Folgende automatische Schöpfungen werden zur Zeit durch die Gemeinschaft '{_name_}' bereitgestellt.",
|
||||
"openContributionLinkText": "Folgende {_count_} automatische Schöpfungen werden zur Zeit durch die Gemeinschaft '{_name_}' bereitgestellt.",
|
||||
"other-communities": "Weitere Gemeinschaften",
|
||||
"statistic": "Statistik",
|
||||
"submitContribution": "Beitrag einreichen",
|
||||
|
||||
@ -30,7 +30,7 @@
|
||||
"moderators": "Moderators",
|
||||
"myContributions": "My contributions to the common good",
|
||||
"openContributionLinks": "open Contribution links list",
|
||||
"openContributionLinkText": "The following automatic creations are currently provided by the '{_name_}' community.",
|
||||
"openContributionLinkText": "The following {_count_} automatic creations are currently provided by the '{_name_}' community.",
|
||||
"other-communities": "Other communities",
|
||||
"statistic": "Statistics",
|
||||
"submitContribution": "Submit contribution",
|
||||
|
||||
@ -15,9 +15,13 @@
|
||||
<b-container>
|
||||
<div class="h3">{{ $t('community.openContributionLinks') }}</div>
|
||||
<small>
|
||||
{{ $t('community.openContributionLinkText', { _name_: CONFIG.COMMUNITY_NAME }) }}
|
||||
{{
|
||||
$t('community.openContributionLinkText', {
|
||||
_name_: CONFIG.COMMUNITY_NAME,
|
||||
_count_: count,
|
||||
})
|
||||
}}
|
||||
</small>
|
||||
Momentan gibt es aktuell {{ count }} Aktionen.
|
||||
<ul>
|
||||
<li v-for="item in itemsContributionLinks" v-bind:key="item.id">
|
||||
<div>{{ item.name }}</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user