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",
|
"moderators": "Moderatoren",
|
||||||
"myContributions": "Meine Beiträge zum Gemeinwohl",
|
"myContributions": "Meine Beiträge zum Gemeinwohl",
|
||||||
"openContributionLinks": "öffentliche Beitragslinklist",
|
"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",
|
"other-communities": "Weitere Gemeinschaften",
|
||||||
"statistic": "Statistik",
|
"statistic": "Statistik",
|
||||||
"submitContribution": "Beitrag einreichen",
|
"submitContribution": "Beitrag einreichen",
|
||||||
|
|||||||
@ -30,7 +30,7 @@
|
|||||||
"moderators": "Moderators",
|
"moderators": "Moderators",
|
||||||
"myContributions": "My contributions to the common good",
|
"myContributions": "My contributions to the common good",
|
||||||
"openContributionLinks": "open Contribution links list",
|
"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",
|
"other-communities": "Other communities",
|
||||||
"statistic": "Statistics",
|
"statistic": "Statistics",
|
||||||
"submitContribution": "Submit contribution",
|
"submitContribution": "Submit contribution",
|
||||||
|
|||||||
@ -15,9 +15,13 @@
|
|||||||
<b-container>
|
<b-container>
|
||||||
<div class="h3">{{ $t('community.openContributionLinks') }}</div>
|
<div class="h3">{{ $t('community.openContributionLinks') }}</div>
|
||||||
<small>
|
<small>
|
||||||
{{ $t('community.openContributionLinkText', { _name_: CONFIG.COMMUNITY_NAME }) }}
|
{{
|
||||||
|
$t('community.openContributionLinkText', {
|
||||||
|
_name_: CONFIG.COMMUNITY_NAME,
|
||||||
|
_count_: count,
|
||||||
|
})
|
||||||
|
}}
|
||||||
</small>
|
</small>
|
||||||
Momentan gibt es aktuell {{ count }} Aktionen.
|
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="item in itemsContributionLinks" v-bind:key="item.id">
|
<li v-for="item in itemsContributionLinks" v-bind:key="item.id">
|
||||||
<div>{{ item.name }}</div>
|
<div>{{ item.name }}</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user