From 4b5e0cb2a3e1fc17a29ac62c0a3867ae11bc9e0b Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 19 Mar 2026 14:41:28 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BF=EF=B8=8F(frontend)=20improve=20button?= =?UTF-8?q?=20descriptions=20for=20More=20tools=20actions=20#1184?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "Transcribe" and "Record" buttons had unclear and misleading descriptions, both using the verb "record," which caused confusion, especially for screen reader users. Update descriptions to clearly reflect each action: - Transcribe: generate a written transcript of the conversation - Record: save the meeting as a video This improves accessibility (RGAA 11.9) and reduces the risk of users triggering the wrong action. Closes #1173 --- CHANGELOG.md | 1 + src/frontend/src/locales/de/rooms.json | 6 +++--- src/frontend/src/locales/en/rooms.json | 4 ++-- src/frontend/src/locales/fr/rooms.json | 4 ++-- src/frontend/src/locales/nl/rooms.json | 4 ++-- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3519806..6807f740 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to - ♿️(frontend) fix sidepanel accessibility aria-label #1182 - ♿️(frontend) fix more tools heading hierarchy #1181 +- ♿️(fronted) improve button descriptions for More tools actions #1184 ## [1.11.0] - 2026-03-19 diff --git a/src/frontend/src/locales/de/rooms.json b/src/frontend/src/locales/de/rooms.json index 01a66e81..5f64ac21 100644 --- a/src/frontend/src/locales/de/rooms.json +++ b/src/frontend/src/locales/de/rooms.json @@ -354,11 +354,11 @@ "tools": { "transcript": { "title": "Transkribieren", - "body": "Das Gespräch aufzeichnen." + "body": "Wandelt Meetings in Text um." }, "screenRecording": { - "title": "Aufzeichnen", - "body": "Das Meeting aufzeichnen." + "title": "Aufnehmen", + "body": "Speichert Meetings als Video." } } }, diff --git a/src/frontend/src/locales/en/rooms.json b/src/frontend/src/locales/en/rooms.json index 504450c0..5f7c4c57 100644 --- a/src/frontend/src/locales/en/rooms.json +++ b/src/frontend/src/locales/en/rooms.json @@ -353,11 +353,11 @@ "tools": { "transcript": { "title": "Transcribe", - "body": "Record the conversation." + "body": "Turn meetings into text." }, "screenRecording": { "title": "Record", - "body": "Record the meeting." + "body": "Save meetings as video." } } }, diff --git a/src/frontend/src/locales/fr/rooms.json b/src/frontend/src/locales/fr/rooms.json index 25059d76..7227932f 100644 --- a/src/frontend/src/locales/fr/rooms.json +++ b/src/frontend/src/locales/fr/rooms.json @@ -353,11 +353,11 @@ "tools": { "transcript": { "title": "Transcrire", - "body": "Enregistrer la conversation." + "body": "Transcrire la réunion." }, "screenRecording": { "title": "Enregistrer", - "body": "Enregistrer la réunion." + "body": "Enregistrer la réunion en vidéo." } } }, diff --git a/src/frontend/src/locales/nl/rooms.json b/src/frontend/src/locales/nl/rooms.json index 4393b051..09ed6d59 100644 --- a/src/frontend/src/locales/nl/rooms.json +++ b/src/frontend/src/locales/nl/rooms.json @@ -353,11 +353,11 @@ "tools": { "transcript": { "title": "Transcriberen", - "body": "Het gesprek opnemen." + "body": "Zet vergaderingen om in tekst." }, "screenRecording": { "title": "Opnemen", - "body": "De vergadering opnemen." + "body": "Sla vergaderingen op als video." } } },