- {{ 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.spec.js b/frontend/src/pages/Community.spec.js
index 379994b73..2beec7571 100644
--- a/frontend/src/pages/Community.spec.js
+++ b/frontend/src/pages/Community.spec.js
@@ -250,7 +250,7 @@ describe('Community', () => {
it('toasts an info', () => {
expect(toastInfoSpy).toBeCalledWith(
- 'Du hast eine Rückfrage auf eine Contribution. Bitte beantworte diese!',
+ 'contribution.alert.answerQuestionToast',
)
})
})
diff --git a/frontend/src/pages/Community.vue b/frontend/src/pages/Community.vue
index 5bfa4f99a..a17466840 100644
--- a/frontend/src/pages/Community.vue
+++ b/frontend/src/pages/Community.vue
@@ -48,258 +48,258 @@