@@ -60,7 +60,7 @@ export default {
},
data() {
return {
- logo: '/img/brand/green.png',
+ logo: '/img/brand/gradido-logo.png',
sheet: '/img/template/Blaetter.png',
}
},
diff --git a/frontend/src/components/SessionLogoutTimeout.vue b/frontend/src/components/SessionLogoutTimeout.vue
index 1ebff752a..7a11d1d83 100644
--- a/frontend/src/components/SessionLogoutTimeout.vue
+++ b/frontend/src/components/SessionLogoutTimeout.vue
@@ -67,6 +67,7 @@ export default {
}
if (this.tokenExpiresInSeconds === 0) {
this.$timer.stop('tokenExpires')
+ this.toastInfoNoHide(this.$t('session.automaticallyLoggedOut'))
this.$emit('logout')
}
},
@@ -84,6 +85,7 @@ export default {
})
.catch(() => {
this.$timer.stop('tokenExpires')
+ this.toastInfoNoHide(this.$t('session.automaticallyLoggedOut'))
this.$emit('logout')
})
},
diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json
index eff4237ca..c826b9e30 100644
--- a/frontend/src/locales/de.json
+++ b/frontend/src/locales/de.json
@@ -173,7 +173,7 @@
"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.",
+ "choose-amount": "Wähle einen Betrag aus, welchen du per Link versenden möchtest, und trage eine Nachricht ein. Die Nachricht ist ein Pflichtfeld.",
"copy-link": "Link kopieren",
"copy-link-with-text": "Link und Text kopieren",
"created": "Der Link wurde erstellt!",
@@ -272,6 +272,7 @@
"send_gdd": "GDD versenden",
"send_per_link": "GDD versenden per Link",
"session": {
+ "automaticallyLoggedOut": "Du wurdest automatisch abgemeldet",
"extend": "Angemeldet bleiben",
"lightText": "Wenn du länger als 10 Minuten keine Aktion getätigt hast, wirst du aus Sicherheitsgründen abgemeldet.",
"logoutIn": "Abmelden in ",
diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json
index 068282891..193aff666 100644
--- a/frontend/src/locales/en.json
+++ b/frontend/src/locales/en.json
@@ -173,7 +173,7 @@
"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.",
+ "choose-amount": "Select an amount you want to send via link and enter a message. The message is mandatory.",
"copy-link": "Copy link",
"copy-link-with-text": "Copy link and text",
"created": "Link was created!",
@@ -272,6 +272,7 @@
"send_gdd": "Send GDD",
"send_per_link": "Send GDD via Link",
"session": {
+ "automaticallyLoggedOut": "You have been automatically logged out.",
"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.",
"logoutIn": "Log out in ",
diff --git a/frontend/src/mixins/toaster.js b/frontend/src/mixins/toaster.js
index 175ffeec0..6ed73b697 100644
--- a/frontend/src/mixins/toaster.js
+++ b/frontend/src/mixins/toaster.js
@@ -18,11 +18,18 @@ export const toasters = {
variant: 'warning',
})
},
+ toastInfoNoHide(message) {
+ this.toast(message, {
+ title: this.$t('navigation.info'),
+ variant: 'warning',
+ noAutoHide: true,
+ })
+ },
toast(message, options) {
if (message.replace) message = message.replace(/^GraphQL error: /, '')
this.$root.$bvToast.toast(message, {
- autoHideDelay: 5000,
appendToast: true,
+ autoHideDelay: 5000,
solid: true,
toaster: 'b-toaster-top-right',
headerClass: 'gdd-toaster-title',
diff --git a/frontend/src/pages/Community.spec.js b/frontend/src/pages/Community.spec.js
index ecfc01716..b4d1677df 100644
--- a/frontend/src/pages/Community.spec.js
+++ b/frontend/src/pages/Community.spec.js
@@ -70,6 +70,8 @@ describe('Community', () => {
lastName: 'Bloxberg',
state: 'IN_PROGRESS',
messagesCount: 0,
+ deniedAt: null,
+ deniedBy: null,
},
{
id: 1550,
@@ -84,6 +86,8 @@ describe('Community', () => {
lastName: 'Bloxberg',
state: 'CONFIRMED',
messagesCount: 0,
+ deniedAt: null,
+ deniedBy: null,
},
],
contributionCount: 1,
@@ -112,6 +116,10 @@ describe('Community', () => {
confirmedAt: null,
firstName: 'Bibi',
lastName: 'Bloxberg',
+ deniedAt: null,
+ deniedBy: null,
+ messagesCount: 0,
+ state: 'IN_PROGRESS',
},
{
id: 1550,
@@ -124,7 +132,10 @@ describe('Community', () => {
firstName: 'Bibi',
contributionDate: '2022-06-15T08:47:06.000Z',
lastName: 'Bloxberg',
+ deniedAt: null,
+ deniedBy: null,
messagesCount: 0,
+ state: 'IN_PROGRESS',
},
{
id: 1556,
@@ -137,6 +148,10 @@ describe('Community', () => {
confirmedAt: null,
firstName: 'Bob',
lastName: 'der Baumeister',
+ deniedAt: null,
+ deniedBy: null,
+ messagesCount: 0,
+ state: 'IN_PROGRESS',
},
],
contributionCount: 3,
diff --git a/frontend/src/pages/ForgotPassword.vue b/frontend/src/pages/ForgotPassword.vue
index 77c2ac926..773b78278 100644
--- a/frontend/src/pages/ForgotPassword.vue
+++ b/frontend/src/pages/ForgotPassword.vue
@@ -1,3 +1,4 @@
+
@@ -26,6 +27,7 @@
diff --git a/frontend/src/pages/InfoStatistic.vue b/frontend/src/pages/InfoStatistic.vue
index b27166dc1..1bfb53d4a 100644
--- a/frontend/src/pages/InfoStatistic.vue
+++ b/frontend/src/pages/InfoStatistic.vue
@@ -6,9 +6,9 @@
{{ CONFIG.COMMUNITY_DESCRIPTION }}
-
+
{{ CONFIG.COMMUNITY_URL }}
-
+
{{ $t('community.openContributionLinks') }}
diff --git a/frontend/src/pages/Login.vue b/frontend/src/pages/Login.vue
old mode 100755
new mode 100644
index bd07af3ef..2a3c05dc7
--- a/frontend/src/pages/Login.vue
+++ b/frontend/src/pages/Login.vue
@@ -23,15 +23,17 @@
-
-
+
+
{{ $t('settings.password.forgot_pwd') }}
-
- {{ $t('login') }}
-
+
+
+ {{ $t('login') }}
+
+
diff --git a/frontend/src/pages/Register.vue b/frontend/src/pages/Register.vue
index eb68ee7c5..eaebb9ed1 100755
--- a/frontend/src/pages/Register.vue
+++ b/frontend/src/pages/Register.vue
@@ -68,25 +68,30 @@
>
-
-
-
-
-
-
-
-
- {{ $t('signup') }}
-
-
+
+
+
+
+
+
+
+
+
+
+
+ {{ $t('signup') }}
+
+
+
diff --git a/frontend/src/pages/ResetPassword.vue b/frontend/src/pages/ResetPassword.vue
index ec7ae6811..5c791ac61 100644
--- a/frontend/src/pages/ResetPassword.vue
+++ b/frontend/src/pages/ResetPassword.vue
@@ -5,7 +5,12 @@
-
+
{{ $t(displaySetup.button) }}
diff --git a/frontend/src/pages/TransactionLink.vue b/frontend/src/pages/TransactionLink.vue
index c3875d20e..0aa4cfa7d 100644
--- a/frontend/src/pages/TransactionLink.vue
+++ b/frontend/src/pages/TransactionLink.vue
@@ -1,6 +1,6 @@