From fa966bf62f210c276222c5c0f0b19332b17ea289 Mon Sep 17 00:00:00 2001 From: ogerly Date: Thu, 9 Jun 2022 07:55:12 +0200 Subject: [PATCH] add list dummy data, fixed lint, locales, stylelint --- frontend/src/locales/de.json | 10 +++++----- frontend/src/locales/en.json | 12 ++++++------ frontend/src/pages/Community.vue | 15 +++++++-------- 3 files changed, 18 insertions(+), 19 deletions(-) diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json index da018d6dc..ead5cfff8 100644 --- a/frontend/src/locales/de.json +++ b/frontend/src/locales/de.json @@ -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.", diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json index 8049a08c1..fabd4c621 100644 --- a/frontend/src/locales/en.json +++ b/frontend/src/locales/en.json @@ -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.", diff --git a/frontend/src/pages/Community.vue b/frontend/src/pages/Community.vue index 15ac73afc..2ebc99381 100644 --- a/frontend/src/pages/Community.vue +++ b/frontend/src/pages/Community.vue @@ -18,20 +18,16 @@ {{ $t('community.openContributionLinkText', { _name_: CONFIG.COMMUNITY_NAME }) }}
{{ $t('community.moderators') }}
- support@supportemail.de + {{ supportMail }}

@@ -39,7 +35,7 @@
{{ $t('community.members') }} - 1203 + {{ membersCount }}
@@ -53,6 +49,9 @@ export default { data() { return { CONFIG, + items: [{ id: 1 }, { id: 2 }, { id: 3 }], + supportMail: 'support@supportemail.de', + membersCount: '1203', } }, }