From 98096d206b197002136e3bfeb3986b9185a7a7ae Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 29 Oct 2019 16:34:56 +0000 Subject: [PATCH] Fix missing i18n for RoomTile ARIA labels and +a case for notif-off bold --- src/components/views/rooms/RoomTile.js | 2 ++ src/i18n/strings/en_EN.json | 3 +++ 2 files changed, 5 insertions(+) diff --git a/src/components/views/rooms/RoomTile.js b/src/components/views/rooms/RoomTile.js index 1398e03b10..dc893f0049 100644 --- a/src/components/views/rooms/RoomTile.js +++ b/src/components/views/rooms/RoomTile.js @@ -389,6 +389,8 @@ module.exports = createReactClass({ ariaLabel += " " + _t("%(count)s unread messages.", { count: notificationCount }); } else if (mentionBadges && !isInvite) { ariaLabel += " " + _t("Unread mentions."); + } else if (this.props.unread) { + ariaLabel += " " + _t("Unread messages."); } return