From 34ef18397e1ed88fe15690a720b40a242cd1f704 Mon Sep 17 00:00:00 2001 From: Armin Kirchner Date: Wed, 6 Aug 2025 11:53:13 +0200 Subject: [PATCH 1/3] fix: Avoid reports of legitimate content Social media platforms use `Melden` to report inappropriate content. In the teaching context, it is common in German to report yourself if you have a question (sich melden). It appears that students report content to get attention from the teacher because no reported content includes inappropriate content. It is the hope that `Inhalt melden` makes it clearer that this is a content moderation function. The popup message also asks the student if he wants to report the content. This should make it clearer that it is not "sich melden". Due to the Turbo.js migration, this message is not always displayed, or the students ignore the message. #3021 might also cause\contribute to the issue. --- config/locales/de/request_for_comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/locales/de/request_for_comment.yml b/config/locales/de/request_for_comment.yml index 5e961aaf2..113e78d2c 100644 --- a/config/locales/de/request_for_comment.yml +++ b/config/locales/de/request_for_comment.yml @@ -44,7 +44,7 @@ de: passed: Erfolgreich report: confirm: Möchten Sie diesen Inhalt melden? - report: Melden + report: Inhalt melden reported: Vielen Dank, dass Sie uns auf dieses Problem aufmerksam gemacht haben. Wir werden uns in Kürze darum kümmern. runtime_output: Programmausgabe send_thank_you_note: Senden From 647416806ad65c5de374c48b39b7f44d9f7358d7 Mon Sep 17 00:00:00 2001 From: Armin Kirchner Date: Thu, 7 Aug 2025 10:38:46 +0200 Subject: [PATCH 2/3] Improve confirmation message. --- config/locales/de/request_for_comment.yml | 2 +- config/locales/en/request_for_comment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/locales/de/request_for_comment.yml b/config/locales/de/request_for_comment.yml index 113e78d2c..4628f4996 100644 --- a/config/locales/de/request_for_comment.yml +++ b/config/locales/de/request_for_comment.yml @@ -43,7 +43,7 @@ de: no_question: Der/die Autor:in hat keine Frage zu dieser Anfrage gestellt. passed: Erfolgreich report: - confirm: Möchten Sie diesen Inhalt melden? + confirm: Sind Sie sicher, dass Sie diesen Inhalt **als unangemessen** melden möchten? report: Inhalt melden reported: Vielen Dank, dass Sie uns auf dieses Problem aufmerksam gemacht haben. Wir werden uns in Kürze darum kümmern. runtime_output: Programmausgabe diff --git a/config/locales/en/request_for_comment.yml b/config/locales/en/request_for_comment.yml index 85201cbb6..f00704ac7 100644 --- a/config/locales/en/request_for_comment.yml +++ b/config/locales/en/request_for_comment.yml @@ -43,7 +43,7 @@ en: no_question: The author did not enter a question for this request. passed: Passed report: - confirm: Do you want to report this content? + confirm: Are you sure you want to report this content **as inappropriate**? report: Report reported: Thank you for letting us know about this issue. We will look into the matter shortly. runtime_output: Runtime Output From 50b2c44d055df1f5a27900cc5178356d5f9a22f8 Mon Sep 17 00:00:00 2001 From: Armin Kirchner Date: Fri, 15 Aug 2025 17:31:07 +0200 Subject: [PATCH 3/3] remove ** --- config/locales/de/request_for_comment.yml | 2 +- config/locales/en/request_for_comment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/locales/de/request_for_comment.yml b/config/locales/de/request_for_comment.yml index 4628f4996..647e9ec00 100644 --- a/config/locales/de/request_for_comment.yml +++ b/config/locales/de/request_for_comment.yml @@ -43,7 +43,7 @@ de: no_question: Der/die Autor:in hat keine Frage zu dieser Anfrage gestellt. passed: Erfolgreich report: - confirm: Sind Sie sicher, dass Sie diesen Inhalt **als unangemessen** melden möchten? + confirm: Sind Sie sicher, dass Sie diesen Inhalt als unangemessen melden möchten? report: Inhalt melden reported: Vielen Dank, dass Sie uns auf dieses Problem aufmerksam gemacht haben. Wir werden uns in Kürze darum kümmern. runtime_output: Programmausgabe diff --git a/config/locales/en/request_for_comment.yml b/config/locales/en/request_for_comment.yml index f00704ac7..df8e178ae 100644 --- a/config/locales/en/request_for_comment.yml +++ b/config/locales/en/request_for_comment.yml @@ -43,7 +43,7 @@ en: no_question: The author did not enter a question for this request. passed: Passed report: - confirm: Are you sure you want to report this content **as inappropriate**? + confirm: Are you sure you want to report this content as inappropriate? report: Report reported: Thank you for letting us know about this issue. We will look into the matter shortly. runtime_output: Runtime Output