From 708d49db865c8d8ba750e9b6604ddc76d85ecbcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Fri, 17 Sep 2021 20:48:39 +0200 Subject: [PATCH] Use a more precise required/optional fields legend Usability tests showed some users were struggling when seeing the word "Required" as a legend (it's actually styled as a title), since this isn't a common pattern when filling in forms. They were expecting something like "Fields with * are required", and so the "Required" text alone made them feel the sentence wasn't complete. We could also add an "*" to required fields in addition to the "Required" text. In this case, however, some users wondered what the asterisk was about: "It can't mean 'required' because they've already said these fields are required". We'll probably have to revisit required and optional fields again. For now, we're just doing a small improvement. --- config/locales/en/general.yml | 4 ++-- config/locales/es/general.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/locales/en/general.yml b/config/locales/en/general.yml index a1de08041..3857076a8 100644 --- a/config/locales/en/general.yml +++ b/config/locales/en/general.yml @@ -769,8 +769,8 @@ en: zero: "0 languages in use" one: "1 language in use" other: "%{count} languages in use" - optional: "Optional" - required: "Required" + optional: "Optional fields" + required: "Required fields" social: facebook: "%{org} Facebook" twitter: "%{org} Twitter" diff --git a/config/locales/es/general.yml b/config/locales/es/general.yml index 6286269d9..16cd81b01 100644 --- a/config/locales/es/general.yml +++ b/config/locales/es/general.yml @@ -769,8 +769,8 @@ es: zero: "0 idiomas en uso" one: "1 idioma en uso" other: "%{count} idiomas en uso" - optional: "Opcional" - required: "Obligatorio" + optional: "Campos opcionales" + required: "Campos obligatorios" social: facebook: "Facebook de %{org}" twitter: "Twitter de %{org}"