- {{ firstName }} {{ lastName }}
+
+ {{ firstName }} {{ lastName }}
+
+
{{ $d(new Date(contributionDate), 'monthAndYear') }}
{{ $t('contributionText') }}
- {{ memo }}
+ {{ memo }}
{{ $t('contribution.alert.answerQuestion') }}
diff --git a/frontend/src/components/Inputs/InputTextarea.vue b/frontend/src/components/Inputs/InputTextarea.vue
index e8dcf2840..3881c4b16 100644
--- a/frontend/src/components/Inputs/InputTextarea.vue
+++ b/frontend/src/components/Inputs/InputTextarea.vue
@@ -18,6 +18,7 @@
rows="4"
max-rows="4"
:disabled="disabled"
+ no-resize
>
{{ errors[0] }}
diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json
index ce9f8b41d..406f2564a 100644
--- a/frontend/src/locales/de.json
+++ b/frontend/src/locales/de.json
@@ -37,7 +37,8 @@
"contribution": {
"activity": "Tätigkeit",
"alert": {
- "answerQuestion": "Bitte beantworte die Rückfrage!",
+ "answerQuestion": "Bitte beantworte diese Rückfrage.",
+ "answerQuestionToast": "Du hast eine Rückfrage auf einen Beitrag. Bitte antworte auf diese.",
"communityNoteList": "Hier findest du alle eingereichten und bestätigten Beiträge von allen Mitgliedern aus dieser Gemeinschaft.",
"confirm": "bestätigt",
"deleted": "gelöscht",
diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json
index 5841c759c..16d4a414b 100644
--- a/frontend/src/locales/en.json
+++ b/frontend/src/locales/en.json
@@ -37,7 +37,8 @@
"contribution": {
"activity": "Activity",
"alert": {
- "answerQuestion": "Please answer the question",
+ "answerQuestion": "Please answer the question.",
+ "answerQuestionToast": "You have a question about a post. Please reply to it.",
"communityNoteList": "Here you will find all submitted and confirmed contributions from all members of this community.",
"confirm": "confirmed",
"deleted": "deleted",
diff --git a/frontend/src/pages/Community.vue b/frontend/src/pages/Community.vue
index 13aad1a72..5e4186c21 100644
--- a/frontend/src/pages/Community.vue
+++ b/frontend/src/pages/Community.vue
@@ -282,7 +282,7 @@ export default {
if (this.$route.hash !== '#my') {
this.$router.push({ path: '/community#my' })
}
- this.toastInfo('Du hast eine Rückfrage auf eine Contribution. Bitte beantworte diese!')
+ this.toastInfo(this.$t('contribution.alert.answerQuestionToast'))
}
})
.catch((err) => {
diff --git a/package.json b/package.json
index 539a13b66..7a01da338 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "gradido",
- "version": "1.17.0",
+ "version": "1.17.1",
"description": "Gradido",
"main": "index.js",
"repository": "git@github.com:gradido/gradido.git",