fixed locales, stylelint, lint

This commit is contained in:
ogerly 2022-06-08 06:39:20 +02:00
parent 6a5c72a48d
commit ad61069fee
4 changed files with 15 additions and 7 deletions

View File

@ -2,19 +2,19 @@
<div> <div>
<b-card <b-card
border-variant="success" border-variant="success"
header="Contribution Link" :header="$t('contributionLink.contributionLinks')"
header-bg-variant="success" header-bg-variant="success"
header-text-variant="white" header-text-variant="white"
header-class="text-center" header-class="text-center"
class="mt-5" class="mt-5"
> >
<b-button v-b-toggle.newContribution class="my-3 d-flex justify-content-left"> <b-button v-b-toggle.newContribution class="my-3 d-flex justify-content-left">
+ New Contribution Link {{ $t('math.plus') }} {{ $t('contributionLink.newContributionLink') }}
</b-button> </b-button>
<b-collapse v-model="visible" id="newContribution" class="mt-2"> <b-collapse v-model="visible" id="newContribution" class="mt-2">
<b-card> <b-card>
<p class="h2 ml-5">Contribution Links</p> <p class="h2 ml-5">{{ $t('contributionLink.contributionLinks') }}</p>
<contribution-link-form :contributionLinkData="contributionLinkData" /> <contribution-link-form :contributionLinkData="contributionLinkData" />
</b-card> </b-card>
</b-collapse> </b-collapse>
@ -25,7 +25,7 @@
:items="items" :items="items"
@editContributionLinkData="editContributionLinkData" @editContributionLinkData="editContributionLinkData"
/> />
<div v-else>Es sind keine automatischen Schöpfungen angelegt.</div> <div v-else>{{ $t('contributionLink.noContributionLinks') }}</div>
</b-card-text> </b-card-text>
</b-card> </b-card>
</div> </div>

View File

@ -21,7 +21,7 @@
<b-modal ref="my-modal" ok-only hide-header-close> <b-modal ref="my-modal" ok-only hide-header-close>
<b-card header-tag="header" footer-tag="footer"> <b-card header-tag="header" footer-tag="footer">
<template #header> <template #header>
<h6 class="mb-0">xxx</h6> <h6 class="mb-0">{{ modalData ? modalData.name : '' }}</h6>
</template> </template>
<b-card-text> <b-card-text>
{{ modalData }} {{ modalData }}

View File

@ -4,12 +4,15 @@
"contributionLink": { "contributionLink": {
"amount": "Betrag", "amount": "Betrag",
"clear": "Löschen", "clear": "Löschen",
"contributionLinks": "Contribution Links",
"create": "Anlegen", "create": "Anlegen",
"cycle": "Zyclus", "cycle": "Zyclus",
"endDate": "End-Datum", "endDate": "End-Datum",
"maximumAmount": "maximaler Betrag", "maximumAmount": "maximaler Betrag",
"memo": "Nachricht", "memo": "Nachricht",
"name": "Name", "name": "Name",
"newContributionLink": "Neuer Contribution Link",
"noContributionLinks": "Es sind keine Contribution Links angelegt.",
"noEndDate": "Kein End-Datum gewählt.", "noEndDate": "Kein End-Datum gewählt.",
"noStartDate": "Kein Start-Datum gewählt.", "noStartDate": "Kein Start-Datum gewählt.",
"options": { "options": {
@ -72,7 +75,8 @@
"lastname": "Nachname", "lastname": "Nachname",
"math": { "math": {
"exclaim": "!", "exclaim": "!",
"pipe": "|" "pipe": "|",
"plus": "+"
}, },
"moderator": "Moderator", "moderator": "Moderator",
"multiple_creation_text": "Bitte wähle ein oder mehrere Mitglieder aus für die du Schöpfen möchtest.", "multiple_creation_text": "Bitte wähle ein oder mehrere Mitglieder aus für die du Schöpfen möchtest.",

View File

@ -4,12 +4,15 @@
"contributionLink": { "contributionLink": {
"amount": "Amount", "amount": "Amount",
"clear": "Clear", "clear": "Clear",
"contributionLinks": "Contribution Links",
"create": "Create", "create": "Create",
"cycle": "Cycle", "cycle": "Cycle",
"endDate": "End-Date", "endDate": "End-Date",
"maximumAmount": "Maximum amount", "maximumAmount": "Maximum amount",
"memo": "Memo", "memo": "Memo",
"name": "Name", "name": "Name",
"newContributionLink": "New Contribution Link",
"noContributionLinks": "No contribution links have been created.",
"noEndDate": "No end Date", "noEndDate": "No end Date",
"noStartDate": "No start Date", "noStartDate": "No start Date",
"options": { "options": {
@ -72,7 +75,8 @@
"lastname": "Lastname", "lastname": "Lastname",
"math": { "math": {
"exclaim": "!", "exclaim": "!",
"pipe": "|" "pipe": "|",
"plus": "+"
}, },
"moderator": "Moderator", "moderator": "Moderator",
"multiple_creation_text": "Please select one or more members for which you would like to perform creations.", "multiple_creation_text": "Please select one or more members for which you would like to perform creations.",