mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
fix lint
This commit is contained in:
parent
9be6927603
commit
4551e4b561
16
frontend/src/assets/News/news.json
Normal file
16
frontend/src/assets/News/news.json
Normal file
@ -0,0 +1,16 @@
|
||||
[
|
||||
{
|
||||
"id": "0",
|
||||
"date": "22. Februar 2023",
|
||||
"text": "Gradido schenkt dir Dankbarkeit im Februar",
|
||||
"url": "",
|
||||
"extra": "Gradido ebenet Wege zu sozialem Frieden"
|
||||
},
|
||||
{
|
||||
"id": "1",
|
||||
"date": "22. Dezember 2022",
|
||||
"text": "Gradido schenkt dir Dankbarkeit im Dezember",
|
||||
"url": "",
|
||||
"extra": "Gradido ebenet Wege zu sozialem Frieden"
|
||||
}
|
||||
]
|
||||
@ -5,10 +5,6 @@ body {
|
||||
transition: background-color 0.5s ease, color 0.5s ease;
|
||||
}
|
||||
|
||||
.HIDE_FOR_WORK_IN_PROCESS {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@ -9,17 +9,20 @@
|
||||
<b-col>
|
||||
<div v-if="firstName" class="mr-3">{{ firstName }} {{ lastName }}</div>
|
||||
<div class="small">
|
||||
contributionDate {{ $d(new Date(contributionDate), 'monthAndYear') }}
|
||||
{{ $d(new Date(contributionDate), 'monthAndYear') }}
|
||||
</div>
|
||||
<div class="mt-3 h5">Beitragstext</div>
|
||||
<div class="mt-3 h5">{{ $t('contributionText') }}</div>
|
||||
<div>{{ memo }}</div>
|
||||
<div v-if="state === 'IN_PROGRESS'" class="text-danger">
|
||||
{{ $t('contribution.alert.answerQuestion') }}
|
||||
</div>
|
||||
<!-- <div class="small">
|
||||
contributionDate {{ $d(new Date(contributionDate), 'monthAndYear') }}
|
||||
</div>
|
||||
<div class="small">createdAt {{ createdAt }}</div> -->
|
||||
</b-col>
|
||||
<b-col cols="3">
|
||||
<div class="small">Schöpfung</div>
|
||||
<div class="small">{{ $t('creation') }}</div>
|
||||
<div class="small">{{ amount | GDD }}</div>
|
||||
</b-col>
|
||||
<b-col cols="1" @click="visible = !visible">
|
||||
@ -34,7 +37,7 @@
|
||||
@click="deleteContribution({ id })"
|
||||
>
|
||||
<b-icon icon="trash"></b-icon>
|
||||
löschen
|
||||
{{ $t('delete') }}
|
||||
</div>
|
||||
</b-col>
|
||||
<b-col>
|
||||
@ -51,14 +54,14 @@
|
||||
"
|
||||
>
|
||||
<b-icon icon="pencil"></b-icon>
|
||||
bearbeiten
|
||||
{{ $t('edit') }}
|
||||
</div>
|
||||
</b-col>
|
||||
|
||||
<b-col>
|
||||
<div v-if="messagesCount > 0" class="pointer">
|
||||
<b-icon icon="chat-dots" @click="visible = !visible"></b-icon>
|
||||
Moderatorchat
|
||||
{{ $t('moderatorChat') }}
|
||||
</div>
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
@ -102,10 +102,10 @@
|
||||
</b-row>
|
||||
</b-col>
|
||||
<b-col>
|
||||
<div class="h3">Versandart</div>
|
||||
<div class="h3">{{ $t('sendMethod') }}</div>
|
||||
<b-form-radio-group v-model="radioSelected">
|
||||
<b-row>
|
||||
<b-col cols="9">Gdd versenden</b-col>
|
||||
<b-col cols="9">{{ $t('send_gdd') }}</b-col>
|
||||
<b-col cols="3">
|
||||
<b-form-radio
|
||||
name="shipping"
|
||||
@ -116,7 +116,7 @@
|
||||
</b-col>
|
||||
</b-row>
|
||||
<b-row>
|
||||
<b-col cols="9">Gdd versenden per Link</b-col>
|
||||
<b-col cols="9">{{ $t('send_per_link') }}</b-col>
|
||||
<b-col cols="3">
|
||||
<b-form-radio
|
||||
name="shipping"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div role="group" class="first-name">
|
||||
<label for="input-firstName">Vorname:</label>
|
||||
<label for="input-firstName">{{ $t('form.firstname') }}</label>
|
||||
<b-form-input
|
||||
id="input-firstName"
|
||||
v-model="firstName"
|
||||
@ -11,12 +11,12 @@
|
||||
></b-form-input>
|
||||
|
||||
<!-- This will only be shown if the preceding input has an invalid state -->
|
||||
<b-form-invalid-feedback id="input-live-feedback">
|
||||
<!-- <b-form-invalid-feedback id="input-live-feedback">
|
||||
Enter at least 3 letters
|
||||
</b-form-invalid-feedback>
|
||||
</b-form-invalid-feedback> -->
|
||||
|
||||
<!-- This is a form text block (formerly known as help block) -->
|
||||
<b-form-text id="input-live-help">Dein Vorname</b-form-text>
|
||||
<!-- <b-form-text id="input-live-help">Dein Vorname</b-form-text> -->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div role="group" class="input-job">
|
||||
<label for="input-lastName">Job:</label>
|
||||
<label for="input-lastName"></label>
|
||||
<b-form-input
|
||||
id="input-job"
|
||||
v-model="job"
|
||||
@ -11,12 +11,12 @@
|
||||
></b-form-input>
|
||||
|
||||
<!-- This will only be shown if the preceding input has an invalid state -->
|
||||
<b-form-invalid-feedback id="input-live-feedback">
|
||||
<!-- <b-form-invalid-feedback id="input-live-feedback">
|
||||
Enter at least 3 letters
|
||||
</b-form-invalid-feedback>
|
||||
</b-form-invalid-feedback> -->
|
||||
|
||||
<!-- This is a form text block (formerly known as help block) -->
|
||||
<b-form-text id="input-live-help">Was ist dein Beruf</b-form-text>
|
||||
<!-- <b-form-text id="input-live-help">Was ist dein Beruf</b-form-text> -->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div role="group" class="last-name">
|
||||
<label for="input-lastName">Nachname:</label>
|
||||
<label for="input-lastName">{{ $t('form.lastname') }}</label>
|
||||
<b-form-input
|
||||
id="input-lastName"
|
||||
v-model="lastName"
|
||||
@ -11,12 +11,12 @@
|
||||
></b-form-input>
|
||||
|
||||
<!-- This will only be shown if the preceding input has an invalid state -->
|
||||
<b-form-invalid-feedback id="input-live-feedback">
|
||||
<!-- <b-form-invalid-feedback id="input-live-feedback">
|
||||
Enter at least 3 letters
|
||||
</b-form-invalid-feedback>
|
||||
</b-form-invalid-feedback> -->
|
||||
|
||||
<!-- This is a form text block (formerly known as help block) -->
|
||||
<b-form-text id="input-live-help">Dein Nachname</b-form-text>
|
||||
<!-- <b-form-text id="input-live-help">Dein Nachname</b-form-text> -->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@ -8,14 +8,14 @@
|
||||
<b-icon icon="house" aria-hidden="true"></b-icon>
|
||||
<span class="d-none d-lg-inline ml-2">{{ $t('navigation.overview') }}</span>
|
||||
</b-nav-item>
|
||||
<b-nav-item to="/storys" class="mb-3 HIDE_FOR_WORK_IN_PROCESS">
|
||||
<!-- <b-nav-item to="/storys" class="mb-3">
|
||||
<b-icon icon="card-heading" aria-hidden="true"></b-icon>
|
||||
<span class="d-none d-lg-inline ml-2">{{ $t('navigation.topStories') }}</span>
|
||||
</b-nav-item>
|
||||
<b-nav-item to="/addresses" class="mb-3 HIDE_FOR_WORK_IN_PROCESS">
|
||||
</b-nav-item> -->
|
||||
<!-- <b-nav-item to="/addresses" class="mb-3">
|
||||
<b-icon icon="bookmark" aria-hidden="true"></b-icon>
|
||||
<span class="d-none d-lg-inline ml-2">{{ $t('navigation.adresses') }}</span>
|
||||
</b-nav-item>
|
||||
</b-nav-item> -->
|
||||
|
||||
<b-nav-item to="/send" class="mb-3">
|
||||
<b-icon icon="arrow-left-right" aria-hidden="true"></b-icon>
|
||||
@ -25,10 +25,10 @@
|
||||
<b-icon icon="layout-text-sidebar-reverse" aria-hidden="true"></b-icon>
|
||||
<span class="d-none d-lg-inline ml-2">{{ $t('navigation.transactions') }}</span>
|
||||
</b-nav-item>
|
||||
<b-nav-item to="/profile" class="mb-3 HIDE_FOR_WORK_IN_PROCESS">
|
||||
<!-- <b-nav-item to="/profile" class="mb-3 HIDE_FOR_WORK_IN_PROCESS">
|
||||
<b-icon icon="person" aria-hidden="true"></b-icon>
|
||||
<span class="d-none d-lg-inline ml-2">{{ $t('navigation.profile') }}</span>
|
||||
</b-nav-item>
|
||||
</b-nav-item> -->
|
||||
<b-nav-item to="/community" class="mb-3">
|
||||
<b-icon icon="people" aria-hidden="true"></b-icon>
|
||||
<span class="d-none d-lg-inline ml-2">{{ $t('navigation.members') }}</span>
|
||||
@ -36,7 +36,11 @@
|
||||
</b-nav>
|
||||
<hr />
|
||||
<b-nav vertical class="w-100">
|
||||
<b-nav-item
|
||||
<b-nav-item to="/information" class="mb-3">
|
||||
<b-icon icon="info" aria-hidden="true"></b-icon>
|
||||
<span class="d-none d-lg-inline ml-2">{{ $t('navigation.info') }}</span>
|
||||
</b-nav-item>
|
||||
<!-- <b-nav-item
|
||||
@click="
|
||||
lightmode = !lightmode
|
||||
$emit('modeToggle')
|
||||
@ -49,7 +53,7 @@
|
||||
<span v-if="lightmode">{{ $t('navigation.moon') }}</span>
|
||||
<span v-else>{{ $t('navigation.sun') }}</span>
|
||||
</label>
|
||||
</b-nav-item>
|
||||
</b-nav-item> -->
|
||||
<b-nav-item to="/settings" class="mb-3">
|
||||
<b-icon icon="gear" aria-hidden="true"></b-icon>
|
||||
<span class="d-none d-lg-inline ml-2">{{ $t('navigation.settings') }}</span>
|
||||
|
||||
@ -1,16 +1,36 @@
|
||||
<template>
|
||||
<div class="community-news">
|
||||
<b-card class="bg-white appBoxShadow gradido-border-radius">CommunityNews</b-card>
|
||||
<div class="community-news container">
|
||||
<div v-for="item in News" :key="item.id" class="mb-5">
|
||||
<b-card class="bg-white appBoxShadow gradido-border-radius">
|
||||
<div class="h2 mb-5">{{ item.text }}</div>
|
||||
<b-row class="my-5">
|
||||
<b-col>
|
||||
<div class="h4">{{ item.date }}</div>
|
||||
</b-col>
|
||||
<b-col>
|
||||
<div class="text-right">
|
||||
<b-button variant="gradido">{{ $t('auth.left.learnMore') }}</b-button>
|
||||
</div>
|
||||
</b-col>
|
||||
</b-row>
|
||||
<div class="my-5">{{ item.extra }}</div>
|
||||
</b-card>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import News from '@/assets/News/news.json'
|
||||
export default {
|
||||
name: 'CommunityNews',
|
||||
data() {
|
||||
return {
|
||||
News,
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
<style scoped>
|
||||
.card {
|
||||
min-height: 400px;
|
||||
background-attachment: absolute;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
@ -1,20 +1,22 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="text-center">
|
||||
<b-badge class="position-absolute mt--2 ml--5 px-3" variant="success">aktiv</b-badge>
|
||||
<b-badge class="position-absolute mt--2 ml--5 px-3" variant="success">
|
||||
{{ $t('active') }}
|
||||
</b-badge>
|
||||
</div>
|
||||
<div
|
||||
class="community-member bg-white appBoxShadow gradido-border-radius p-4 border border-success"
|
||||
>
|
||||
<div class="h4">Du bist aktives Mitglied</div>
|
||||
<div class="h4">{{ $t('community.communityMember') }}</div>
|
||||
<b-row>
|
||||
<b-col cols="8">
|
||||
<div class="small">Ortsname</div>
|
||||
<div class="small">{{ $t('community.city') }}</div>
|
||||
<div class="small">{{ CONFIG.COMMUNITY_NAME }}</div>
|
||||
</b-col>
|
||||
<b-col cols="4" class="border-left border-light">
|
||||
<b-icon icon="people" class="ml-3 mr-3"></b-icon>
|
||||
1240
|
||||
{{ $t('1234') }}
|
||||
</b-col>
|
||||
</b-row>
|
||||
</div>
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
class="position-absolute mt--2 ml--4 px-3 zindex1"
|
||||
:variant="showStatus ? 'success' : 'light'"
|
||||
>
|
||||
GDD
|
||||
{{ $t('GDD') }}
|
||||
</b-badge>
|
||||
</div>
|
||||
<div
|
||||
@ -13,14 +13,14 @@
|
||||
:class="showStatus ? 'gradido-global-border-color-accent' : 'border-light opacity-05'"
|
||||
>
|
||||
<b-row>
|
||||
<b-col cols="9" class="h4">GDD Konto</b-col>
|
||||
<b-col cols="9" class="h4">{{ $t('gddKonto') }}</b-col>
|
||||
<b-col cols="3" class="text-center">
|
||||
<div>
|
||||
<b-icon
|
||||
:icon="showStatus ? 'check-circle' : 'circle'"
|
||||
:class="showStatus ? 'gradido-global-border-color-accent' : ''"
|
||||
></b-icon>
|
||||
<div class="small">{{ badge ? 'aktiv' : 'inaktiv' }}</div>
|
||||
<div class="small">{{ badge ? $t('active') : $t('inactive') }}</div>
|
||||
</div>
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
class="position-absolute mt--2 ml--4 px-3 zindex1"
|
||||
:variant="badge ? 'success' : 'light'"
|
||||
>
|
||||
GDT
|
||||
{{ $t('GDT') }}
|
||||
</b-badge>
|
||||
</div>
|
||||
|
||||
@ -14,20 +14,20 @@
|
||||
:class="showStatus ? 'gradido-global-border-color-accent' : 'border-light opacity-05'"
|
||||
>
|
||||
<b-row>
|
||||
<b-col cols="9" class="h4">GDT Konto</b-col>
|
||||
<b-col cols="9" class="h4">{{ $t('gdt.gdtKonto') }}</b-col>
|
||||
<b-col cols="3" class="text-center">
|
||||
<div>
|
||||
<b-icon
|
||||
:icon="badge ? 'check-circle' : 'circle'"
|
||||
class="gradido-global-border-color-accent"
|
||||
></b-icon>
|
||||
<div class="small">{{ badge ? 'aktiv' : 'inaktiv' }}</div>
|
||||
<div class="small">{{ badge ? $t('active') : $t('inactive') }}</div>
|
||||
</div>
|
||||
</b-col>
|
||||
</b-row>
|
||||
<div>
|
||||
<b-icon icon="layers" class="mr-3" :variant="badge ? 'success' : 'light'"></b-icon>
|
||||
<span :class="badge ? 'text-success' : 'text-light'">0,00 GDT</span>
|
||||
<span :class="badge ? 'text-success' : 'text-light'">{{ $t('GDT') }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -1,9 +1,15 @@
|
||||
<template>
|
||||
<div class="nav-community">
|
||||
<div class="d-flex justify-content-center">
|
||||
<b-button variant="gradido" class="rounded-right" to="#edit">Schreiben</b-button>
|
||||
<b-button variant="gradido" class="rounded-0" to="#my">Meine Beiträge</b-button>
|
||||
<b-button variant="gradido" class="rounded-left" to="#all">Community</b-button>
|
||||
<b-button variant="gradido" class="rounded-right" to="#edit">
|
||||
{{ $t('community.submitContribution') }}
|
||||
</b-button>
|
||||
<b-button variant="gradido" class="rounded-0" to="#my">
|
||||
{{ $t('community.myContributions') }}
|
||||
</b-button>
|
||||
<b-button variant="gradido" class="rounded-left" to="#all">
|
||||
{{ $t('community.community') }}
|
||||
</b-button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -1,14 +1,11 @@
|
||||
<template>
|
||||
<div class="last-contributions">
|
||||
<b-row class="mb-5">
|
||||
<b-col class="h3">Letzte Beiträge</b-col>
|
||||
<b-col class="h3">{{ $t('contribution.lastContribution') }}</b-col>
|
||||
<b-col cols="1" class="text-right">
|
||||
<b-icon icon="three-dots-vertical"></b-icon>
|
||||
</b-col>
|
||||
</b-row>
|
||||
<b-card class="mb-4">letzter Beitrag</b-card>
|
||||
<b-card class="mb-4">vorletzter Beitrag</b-card>
|
||||
<b-card class="mb-4">vor vorletzter Beitrag</b-card>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="rightside-last-transactions">
|
||||
<b-row>
|
||||
<b-col>Letzte Transaktionen:</b-col>
|
||||
<b-col>{{ $t('transaction.lastTransactions') }}</b-col>
|
||||
<b-col cols="1" class="text-right">
|
||||
<b-icon icon="three-dots-vertical"></b-icon>
|
||||
</b-col>
|
||||
|
||||
@ -25,7 +25,7 @@
|
||||
</div>
|
||||
</b-col>
|
||||
<b-col cols="3">
|
||||
<div class="small mt-2">GDT erhalten</div>
|
||||
<div class="small mt-2">{{ $t('gdt.credit') }}</div>
|
||||
<div class="">{{ getLinesByType.credittext }}</div>
|
||||
</b-col>
|
||||
<b-col cols="1"><collapse-icon class="text-right" :visible="visible" /></b-col>
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
<div class="small">{{ balanceDate }}</div>
|
||||
</b-col>
|
||||
<b-col cols="3">
|
||||
<div class="small">Empfangen</div>
|
||||
<div class="small">{{ $t('decay.types.receive') }}</div>
|
||||
<div class="small">{{ amount | GDD }}</div>
|
||||
</b-col>
|
||||
<b-col cols="1"><collapse-icon class="text-right" :visible="visible" /></b-col>
|
||||
|
||||
@ -6,10 +6,10 @@
|
||||
</b-col>
|
||||
<b-col>
|
||||
<div>{{ $t('gdd_per_link.links_sum') }}</div>
|
||||
<div class="small">{{ transactionLinkCount }} offene Links</div>
|
||||
<div class="small">{{ transactionLinkCount }} {{ $t('gdd_per_link.links_sum') }}</div>
|
||||
</b-col>
|
||||
<b-col cols="3">
|
||||
<div class="small">Insgesamt</div>
|
||||
<div class="small">{{ $t('send_per_link') }}</div>
|
||||
<div class="small">{{ amount | GDD }}</div>
|
||||
</b-col>
|
||||
<b-col cols="1"><collapse-icon class="text-right" :visible="visible" /></b-col>
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
<div class="small">{{ balanceDate }}</div>
|
||||
</b-col>
|
||||
<b-col cols="3">
|
||||
<div class="small">Empfangen</div>
|
||||
<div class="small">{{ $t('decay.types.receive') }}</div>
|
||||
<div class="small">{{ amount | GDD }}</div>
|
||||
</b-col>
|
||||
<b-col cols="1"><collapse-icon class="text-right" :visible="visible" /></b-col>
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
<div class="small">{{ balanceDate }}</div>
|
||||
</b-col>
|
||||
<b-col cols="3">
|
||||
<div class="small">Gesendet</div>
|
||||
<div class="small">{{ $t('decay.types.send') }}</div>
|
||||
<div class="small">{{ amount | GDD }}</div>
|
||||
</b-col>
|
||||
<b-col cols="1"><collapse-icon class="text-right" :visible="visible" /></b-col>
|
||||
|
||||
@ -141,6 +141,7 @@ export default {
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.updateTransactions(0)
|
||||
setTimeout(() => {
|
||||
this.skeleton = false
|
||||
}, 1500)
|
||||
|
||||
@ -14,8 +14,8 @@
|
||||
</b-col>
|
||||
</b-row>
|
||||
</b-container>
|
||||
<b-container v-if="path === '/storys'"><h2>Deine Community im Überblick</h2></b-container>
|
||||
<b-container v-if="path === '/addresses'">Deine Favoriten im Überblick</b-container>
|
||||
<!-- <b-container v-if="path === '/storys'"></b-container>
|
||||
<b-container v-if="path === '/addresses'"></b-container> -->
|
||||
<b-container v-if="path === '/send'">
|
||||
<b-row>
|
||||
<b-col cols="6">
|
||||
@ -34,7 +34,7 @@
|
||||
<b-row>
|
||||
<b-col cols="6">
|
||||
<div>
|
||||
<router-link to="transaction">
|
||||
<router-link to="transactions">
|
||||
<gdd-amount :balance="balance" :badge="true" :showStatus="true" />
|
||||
</router-link>
|
||||
</div>
|
||||
@ -66,7 +66,7 @@
|
||||
</b-col>
|
||||
</b-row>
|
||||
</b-container>
|
||||
<b-container v-if="path === '/profile'">
|
||||
<!-- <b-container v-if="path === '/profile'">
|
||||
<b-row>
|
||||
<b-col>
|
||||
<div class="p-4 bg-white appBoxShadow gradido-border-radius">
|
||||
@ -81,9 +81,9 @@
|
||||
</div>
|
||||
</b-col>
|
||||
</b-row>
|
||||
</b-container>
|
||||
</b-container> -->
|
||||
<b-container v-if="path === '/community'"><nav-community /></b-container>
|
||||
<b-container v-if="path === '/settings'">settings content header</b-container>
|
||||
<b-container v-if="path === '/settings'"></b-container>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@ -117,7 +117,7 @@
|
||||
<contribution-info />
|
||||
<last-contributions class="mt-5" />
|
||||
</b-container>
|
||||
<b-container v-if="path === '/settings'">settings ride side</b-container>
|
||||
<b-container v-if="path === '/settings'"></b-container>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
"1000thanks": "1000 Dank, weil du bei uns bist!",
|
||||
"125": "125%",
|
||||
"85": "85%",
|
||||
"1234": "1234",
|
||||
"advanced-calculation": "Vorausberechnung",
|
||||
"auth": {
|
||||
"left": {
|
||||
@ -15,15 +16,19 @@
|
||||
"oneGratitude": "Für einander, für alle Menschen, für die Natur."
|
||||
}
|
||||
},
|
||||
"active": "aktiv",
|
||||
"inactive": "inaktiv",
|
||||
"back": "Zurück",
|
||||
"community": {
|
||||
"communityMember": "Du bist aktives Mitglied",
|
||||
"city": "Stadt",
|
||||
"choose-another-community": "Eine andere Gemeinschaft auswählen",
|
||||
"community": "Gemeinschaft",
|
||||
"continue-to-registration": "Weiter zur Registrierung",
|
||||
"current-community": "Aktuelle Gemeinschaft",
|
||||
"moderator": "Moderator",
|
||||
"moderators": "Moderatoren",
|
||||
"myContributions": "Meine Beiträge zum Gemeinwohl",
|
||||
"myContributions": "Meine Beiträge",
|
||||
"noOpenContributionLinkText": "Zur Zeit gibt es keine automatischen Schöpfungen.",
|
||||
"openContributionLinks": "Öffentliche Beitrags-Linkliste",
|
||||
"openContributionLinkText": "Folgende {count} automatische Schöpfungen werden zur Zeit durch die Gemeinschaft „{name}“ bereitgestellt.",
|
||||
@ -34,6 +39,7 @@
|
||||
"contact": "Kontakt",
|
||||
"contribution": {
|
||||
"activity": "Tätigkeit",
|
||||
"lastContribution": "Letzte Beiträge",
|
||||
"alert": {
|
||||
"answerQuestion": "Bitte beantworte die Rückfrage!",
|
||||
"communityNoteList": "Hier findest du alle eingereichten und bestätigten Beiträge von allen Mitgliedern aus dieser Gemeinschaft.",
|
||||
@ -43,7 +49,6 @@
|
||||
"pending": "Eingereicht und wartet auf Bestätigung",
|
||||
"rejected": "abgelehnt"
|
||||
},
|
||||
"date": "Beitrag für:",
|
||||
"delete": "Beitrag löschen! Bist du sicher?",
|
||||
"deleted": "Der Beitrag wurde gelöscht! Wird aber sichtbar bleiben.",
|
||||
"formText": {
|
||||
@ -58,7 +63,8 @@
|
||||
"submit": "Einreichen",
|
||||
"submitted": "Der Beitrag wurde eingereicht.",
|
||||
"updated": "Der Beitrag wurde geändert.",
|
||||
"yourActivity": "Bitte trage eine Tätigkeit ein!"
|
||||
"yourActivity": "Bitte trage eine Tätigkeit ein!",
|
||||
"exhausted": "Für diesen Monat kannst du nichts mehr schöpfen."
|
||||
},
|
||||
"contribution-link": {
|
||||
"thanksYouWith": "dankt dir mit",
|
||||
@ -94,7 +100,6 @@
|
||||
"session-expired": "Die Sitzung wurde aus Sicherheitsgründen beendet.",
|
||||
"unknown-error": "Unbekannter Fehler: "
|
||||
},
|
||||
"favourites": "Favouriten",
|
||||
"followUs": "folge uns:",
|
||||
"footer": {
|
||||
"app_version": "App version {version}",
|
||||
@ -156,6 +161,7 @@
|
||||
"your_amount": "Dein Betrag"
|
||||
},
|
||||
"GDD": "GDD",
|
||||
"gddKonto": "GDD Konto",
|
||||
"gdd_per_link": {
|
||||
"choose-amount": "Wähle einen Betrag aus, welchen du per Link versenden möchtest. Du kannst auch noch eine Nachricht eintragen. Beim Klick „Jetzt generieren“ wird ein Link erstellt, den du versenden kannst.",
|
||||
"copy-link": "Link kopieren",
|
||||
@ -189,6 +195,7 @@
|
||||
"validUntil": "Gültig bis",
|
||||
"validUntilDate": "Der Link ist bis zum {date} gültig."
|
||||
},
|
||||
"GDT": "GDT",
|
||||
"gdt": {
|
||||
"calculation": "Berechnung der Gradido Transform",
|
||||
"contribution": "Beitrag",
|
||||
@ -198,6 +205,7 @@
|
||||
"factor": "Faktor",
|
||||
"formula": "Berechnungsformel",
|
||||
"funding": "Zu den Förderbeiträgen",
|
||||
"gdtKonto": "GDT Konto",
|
||||
"gdt": "Gradido Transform",
|
||||
"gdt-received": "Gradido Transform (GDT) erhalten",
|
||||
"no-transactions": "Du hast noch keine Gradido Transform (GDT).",
|
||||
@ -229,19 +237,13 @@
|
||||
},
|
||||
"navigation": {
|
||||
"admin_area": "Adminbereich",
|
||||
"adresses": "Addressen",
|
||||
"community": "Gemeinschaft",
|
||||
"favourites": "Favoriten",
|
||||
"info": "Information",
|
||||
"lightmode": "Lightmode",
|
||||
"logout": "Abmelden",
|
||||
"members": "Mitglieder",
|
||||
"moon": "🌙",
|
||||
"overview": "Übersicht",
|
||||
"profile": "Mein Profil",
|
||||
"send": "Senden",
|
||||
"settings": "Einstellung",
|
||||
"sun": "☀️",
|
||||
"support": "Support",
|
||||
"topStories": "Top Stories",
|
||||
"transactions": "Transaktionen"
|
||||
@ -249,6 +251,11 @@
|
||||
"qrCode": "QR Code",
|
||||
"send_gdd": "GDD versenden",
|
||||
"send_per_link": "GDD versenden per Link",
|
||||
"sendMethod": "Versandart",
|
||||
"contributionText": "Beitragstext",
|
||||
"creation": "Schöpfung",
|
||||
"edit": "bearbeiten",
|
||||
"moderatorChat": "Moderator Chat",
|
||||
"session": {
|
||||
"extend": "Angemeldet bleiben",
|
||||
"lightText": "Wenn du länger als 10 Minuten keine Aktion getätigt hast, wirst du aus Sicherheitsgründen abgemeldet.",
|
||||
@ -321,12 +328,11 @@
|
||||
"years": "Jahr"
|
||||
},
|
||||
"transaction": {
|
||||
"gdd-text": "Gradido Transaktionen",
|
||||
"gdt-text": "GradidoTransform Transaktionen",
|
||||
"nullTransactions": "Du hast noch keine Transaktionen auf deinem Konto.",
|
||||
"receiverDeleted": "Das Empfängerkonto wurde gelöscht",
|
||||
"receiverNotFound": "Empfänger nicht gefunden",
|
||||
"show_all": "Alle <strong>{count}</strong> Transaktionen ansehen"
|
||||
"show_all": "Alle <strong>{count}</strong> Transaktionen ansehen",
|
||||
"lastTransactions": "Letzte Transaktionen"
|
||||
},
|
||||
"transaction-link": {
|
||||
"send_you": "sendet dir"
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
"1000thanks": "1000 thanks for being with us!",
|
||||
"125": "125%",
|
||||
"85": "85%",
|
||||
"1234": "1234",
|
||||
"advanced-calculation": "Advanced calculation",
|
||||
"auth": {
|
||||
"left": {
|
||||
@ -15,15 +16,19 @@
|
||||
"oneGratitude": "For each other, for all people, for nature."
|
||||
}
|
||||
},
|
||||
"active": "active",
|
||||
"inactive": "inactive",
|
||||
"back": "Back",
|
||||
"community": {
|
||||
"communityMember": "You are an active member",
|
||||
"city": "City",
|
||||
"choose-another-community": "Choose another community",
|
||||
"community": "Community",
|
||||
"continue-to-registration": "Continue to registration",
|
||||
"current-community": "Current community",
|
||||
"moderator": "Moderator",
|
||||
"moderators": "Moderators",
|
||||
"myContributions": "My contributions to the common good",
|
||||
"myContributions": "My contributions",
|
||||
"noOpenContributionLinkText": "Currently there are no automatic creations.",
|
||||
"openContributionLinks": "Open contribution-link list",
|
||||
"openContributionLinkText": "The following {count} automatic creations are currently provided by the \"{name}\" community.",
|
||||
@ -34,6 +39,7 @@
|
||||
"contact": "Contact",
|
||||
"contribution": {
|
||||
"activity": "Activity",
|
||||
"lastContribution": "Last Contributions",
|
||||
"alert": {
|
||||
"answerQuestion": "Please answer the question",
|
||||
"communityNoteList": "Here you will find all submitted and confirmed contributions from all members of this community.",
|
||||
@ -43,7 +49,6 @@
|
||||
"pending": "Submitted and waiting for confirmation",
|
||||
"rejected": "deleted"
|
||||
},
|
||||
"date": "Contribution for:",
|
||||
"delete": "Delete Contribution! Are you sure?",
|
||||
"deleted": "The contribution has been deleted! But it will remain visible.",
|
||||
"formText": {
|
||||
@ -58,7 +63,8 @@
|
||||
"submit": "Submit",
|
||||
"submitted": "The contribution was submitted.",
|
||||
"updated": "The contribution was changed.",
|
||||
"yourActivity": "Please enter an activity!"
|
||||
"yourActivity": "Please enter an activity!",
|
||||
"exhausted": "You cannot create anything more for this month."
|
||||
},
|
||||
"contribution-link": {
|
||||
"thanksYouWith": "thanks you with",
|
||||
@ -94,7 +100,6 @@
|
||||
"session-expired": "The session was closed for security reasons.",
|
||||
"unknown-error": "Unknown error: "
|
||||
},
|
||||
"favourites": "Favourites",
|
||||
"followUs": "follow us:",
|
||||
"footer": {
|
||||
"app_version": "App version {version}",
|
||||
@ -156,6 +161,7 @@
|
||||
"your_amount": "Your amount"
|
||||
},
|
||||
"GDD": "GDD",
|
||||
"gddKonto": "GDD Konto",
|
||||
"gdd_per_link": {
|
||||
"choose-amount": "Select an amount that you would like to send via link. You can also enter a message. Click 'Generate now' to create a link that you can share.",
|
||||
"copy-link": "Copy link",
|
||||
@ -189,6 +195,7 @@
|
||||
"validUntil": "Valid until",
|
||||
"validUntilDate": "The link is valid until {date}."
|
||||
},
|
||||
"GDT": "GDT",
|
||||
"gdt": {
|
||||
"calculation": "Calculation of Gradido Transform",
|
||||
"contribution": "Contribution",
|
||||
@ -198,6 +205,7 @@
|
||||
"factor": "Factor",
|
||||
"formula": "Calculation formula",
|
||||
"funding": "To the funding contributions",
|
||||
"gdtKonto": "GDT Konto",
|
||||
"gdt": "Gradido Transform",
|
||||
"gdt-received": "Gradido Transform (GDT) received",
|
||||
"no-transactions": "You do not have Gradido Transform (GDT) yet.",
|
||||
@ -229,19 +237,13 @@
|
||||
},
|
||||
"navigation": {
|
||||
"admin_area": "Admin Area",
|
||||
"adresses": "Addresses",
|
||||
"community": "Community",
|
||||
"favourites": "Favourites",
|
||||
"info": "Information",
|
||||
"lightmode": "Lightmode",
|
||||
"logout": "Logout",
|
||||
"members": "Members",
|
||||
"moon": "🌙",
|
||||
"overview": "Overview",
|
||||
"profile": "My profile",
|
||||
"send": "Send",
|
||||
"settings": "Settings",
|
||||
"sun": "☀️",
|
||||
"support": "Support",
|
||||
"topStories": "Top Stories",
|
||||
"transactions": "Transactions"
|
||||
@ -249,6 +251,11 @@
|
||||
"qrCode": "QR Code",
|
||||
"send_gdd": "GDD send",
|
||||
"send_per_link": "GDD send via link",
|
||||
"sendMethod": "Send Methods",
|
||||
"contributionText": "Contribution Text",
|
||||
"creation": "Creation",
|
||||
"edit": "edit",
|
||||
"moderatorChat": "Moderator Chat",
|
||||
"session": {
|
||||
"extend": "Stay logged in",
|
||||
"lightText": "If you have not performed any action for more than 10 minutes, you will be logged out for security reasons.",
|
||||
@ -321,12 +328,11 @@
|
||||
"years": "Year"
|
||||
},
|
||||
"transaction": {
|
||||
"gdd-text": "Gradido Transactions",
|
||||
"gdt-text": "GradidoTransform Transactions",
|
||||
"nullTransactions": "You don't have any transactions on your account yet.",
|
||||
"receiverDeleted": "The recipient account was deleted",
|
||||
"receiverNotFound": "Recipient not found",
|
||||
"show_all": "View all <strong>{count}</strong> transactions."
|
||||
"show_all": "View all <strong>{count}</strong> transactions.",
|
||||
"lastTransactions": "Last Transactions"
|
||||
},
|
||||
"transaction-link": {
|
||||
"send_you": "wants to send you"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
<b-card v-if="skeleton">
|
||||
<!-- <b-card v-if="skeleton">
|
||||
{{ $t('addresses') }}
|
||||
<b-skeleton animation="wave" width="85%"></b-skeleton>
|
||||
<b-skeleton animation="wave" width="55%"></b-skeleton>
|
||||
@ -8,7 +8,7 @@
|
||||
</b-card>
|
||||
<b-card v-else>
|
||||
{{ $t('addresses') }}
|
||||
</b-card>
|
||||
</b-card> -->
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="profile break">
|
||||
<b-card class="justify-content-center bg-white appBoxShadow gradido-border-radius">
|
||||
<b-form @submit.prevent="submit">
|
||||
<!-- <b-form @submit.prevent="submit">
|
||||
<b-row>
|
||||
<b-col>
|
||||
<first-name v-model="firstName" />
|
||||
@ -34,27 +34,27 @@
|
||||
<b-col><b-form-checkbox switch size="lg"></b-form-checkbox></b-col>
|
||||
</b-row>
|
||||
<b-button type="submit" class="mt-5">speichern</b-button>
|
||||
</b-form>
|
||||
</b-form> -->
|
||||
</b-card>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import FirstName from '@/components/Inputs/FirstName.vue'
|
||||
import LastName from '@/components/Inputs/LastName.vue'
|
||||
import LanguageSwitch from '@/components/LanguageSwitch.vue'
|
||||
import Job from '@/components/Inputs/Job.vue'
|
||||
import InputEmail from '@/components/Inputs/InputEmail.vue'
|
||||
import InputPassword from '@/components/Inputs/InputPassword.vue'
|
||||
// import FirstName from '@/components/Inputs/FirstName.vue'
|
||||
// import LastName from '@/components/Inputs/LastName.vue'
|
||||
// import LanguageSwitch from '@/components/LanguageSwitch.vue'
|
||||
// import Job from '@/components/Inputs/Job.vue'
|
||||
// import InputEmail from '@/components/Inputs/InputEmail.vue'
|
||||
// import InputPassword from '@/components/Inputs/InputPassword.vue'
|
||||
|
||||
export default {
|
||||
name: 'Profile',
|
||||
components: {
|
||||
FirstName,
|
||||
LastName,
|
||||
LanguageSwitch,
|
||||
Job,
|
||||
InputEmail,
|
||||
InputPassword,
|
||||
// FirstName,
|
||||
// LastName,
|
||||
// LanguageSwitch,
|
||||
// Job,
|
||||
// InputEmail,
|
||||
// InputPassword,
|
||||
},
|
||||
props: {
|
||||
balance: { type: Number, default: 0 },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user