diff --git a/src/components/views/dialogs/devtools/RoomNotifications.tsx b/src/components/views/dialogs/devtools/RoomNotifications.tsx
index 5a43eeb935e..234746b74a1 100644
--- a/src/components/views/dialogs/devtools/RoomNotifications.tsx
+++ b/src/components/views/dialogs/devtools/RoomNotifications.tsx
@@ -77,26 +77,16 @@ export default function RoomNotifications({ onBack }: IDevtoolsProps): JSX.Eleme
{_t("devtools|room_status")}
-
- {count > 0
- ? _t(
- "devtools|room_unread_status_count",
- {
- status: humanReadableNotificationLevel(level),
- count,
- },
- {
- strong: (sub) => {sub},
- },
- )
- : _t(
- "devtools|room_unread_status",
- {
- status: humanReadableNotificationLevel(level),
- },
- {
- strong: (sub) => {sub},
- },
- )}
+ {_t(
+ "devtools|room_unread_status_count",
+ {
+ status: humanReadableNotificationLevel(level),
+ count,
+ },
+ {
+ strong: (sub) => {sub},
+ },
+ )}
-
{_t(
diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json
index 5521b74331d..43f6d6bbce4 100644
--- a/src/i18n/strings/en_EN.json
+++ b/src/i18n/strings/en_EN.json
@@ -765,8 +765,8 @@
"room_notifications_total": "Total: ",
"room_notifications_type": "Type: ",
"room_status": "Room status",
- "room_unread_status": "Room unread status: %(status)s",
"room_unread_status_count": {
+ "one": "Room unread status: %(status)s, count: %(count)s",
"other": "Room unread status: %(status)s, count: %(count)s"
},
"save_setting_values": "Save setting values",
diff --git a/test/components/views/dialogs/devtools/__snapshots__/RoomNotifications-test.tsx.snap b/test/components/views/dialogs/devtools/__snapshots__/RoomNotifications-test.tsx.snap
index 843ee88ca5c..a3c3559df84 100644
--- a/test/components/views/dialogs/devtools/__snapshots__/RoomNotifications-test.tsx.snap
+++ b/test/components/views/dialogs/devtools/__snapshots__/RoomNotifications-test.tsx.snap
@@ -16,6 +16,10 @@ exports[` should render 1`] = `
None
+ , count:
+
+ 0
+
-