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." } } },