add list dummy data, fixed lint, locales, stylelint

This commit is contained in:
ogerly 2022-06-09 07:55:12 +02:00
parent 55d44fa022
commit fa966bf62f
3 changed files with 18 additions and 19 deletions

View File

@ -23,13 +23,13 @@
"community": "Gemeinschaft",
"continue-to-registration": "Weiter zur Registrierung",
"current-community": "Aktuelle Gemeinschaft",
"other-communities": "Weitere Gemeinschaften",
"switch-to-this-community": "zu dieser Gemeinschaft wechseln",
"members": "Mitglieder",
"moderators": "Moderatoren",
"openContributionLinks": "öffentliche Beitragslinklist",
"openContributionLinkText":"Folgende automatische Schöpfungen werden zur Zeit durch die Gemeinschaft '{_name_}' bereitgestellt.",
"moderators":"Moderatoren",
"openContributionLinkText": "Folgende automatische Schöpfungen werden zur Zeit durch die Gemeinschaft '{_name_}' bereitgestellt.",
"other-communities": "Weitere Gemeinschaften",
"statistic": "Statistik",
"members":"Mitglieder"
"switch-to-this-community": "zu dieser Gemeinschaft wechseln"
},
"decay": {
"before_startblock_transaction": "Diese Transaktion beinhaltet keine Vergänglichkeit.",

View File

@ -23,13 +23,13 @@
"community": "Community",
"continue-to-registration": "Continue to registration",
"current-community": "Current community",
"other-communities": "Other communities",
"switch-to-this-community": "Switch to this community",
"members": "Members",
"moderators": "Moderators",
"openContributionLinks": "open Contribution links list",
"openContributionLinkText":"The following automatic creations are currently provided by the '{_name_}' community.",
"moderators":"Moderators",
"Statistic": "Statistics",
"members":"Members"
"openContributionLinkText": "The following automatic creations are currently provided by the '{_name_}' community.",
"other-communities": "Other communities",
"statistic": "Statistics",
"switch-to-this-community": "Switch to this community"
},
"decay": {
"before_startblock_transaction": "This transaction does not include decay.",

View File

@ -18,20 +18,16 @@
{{ $t('community.openContributionLinkText', { _name_: CONFIG.COMMUNITY_NAME }) }}
</small>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li v-for="item in items" v-bind:key="item">{{ item.id }}</li>
</ul>
</b-container>
<hr />
<b-container>
<div class="h3">{{ $t('community.moderators') }}</div>
<ul>
<li>Bernd</li>
<li>Elfi</li>
<li>Manuela</li>
<li v-for="item in items" v-bind:key="item">{{ item.id }}</li>
</ul>
<mail>support@supportemail.de</mail>
<mail>{{ supportMail }}</mail>
</b-container>
<hr />
<b-container>
@ -39,7 +35,7 @@
<div>
<div>
{{ $t('community.members') }}
<span class="h4">1203</span>
<span class="h4">{{ membersCount }}</span>
</div>
</div>
</b-container>
@ -53,6 +49,9 @@ export default {
data() {
return {
CONFIG,
items: [{ id: 1 }, { id: 2 }, { id: 3 }],
supportMail: 'support@supportemail.de',
membersCount: '1203',
}
},
}