From 4e379f4114d827a99377a6d20b2730d1890fc87d Mon Sep 17 00:00:00 2001 From: Drikus Roor Date: Tue, 7 Jan 2025 16:24:02 +0100 Subject: [PATCH] fix: update response options for BooleanQuestion to improve clarity and show alternative options --- backend/experiment/actions/form.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/experiment/actions/form.py b/backend/experiment/actions/form.py index 5d07dd4b3..3c905c497 100644 --- a/backend/experiment/actions/form.py +++ b/backend/experiment/actions/form.py @@ -119,8 +119,8 @@ class BooleanQuestion(Question): key="is_student", question="Are you a student?", choices={ - "no": "No", # or _("No") for translation - "yes": "Yes" + "no": "Nope", # Use _("No") for translation (default) + "yes": "Yep" }, ) ```