From 39bf7c9ad4f1d0868e249defc9f0d744d059aba8 Mon Sep 17 00:00:00 2001 From: Norbert Rittel Date: Wed, 20 Nov 2024 09:52:30 +0100 Subject: [PATCH] Use ICU string for proper singular vs. plural of "listener(s)" (#22885) Fix for the permanent plural in ({count} listeners) --- src/translations/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/translations/en.json b/src/translations/en.json index 10189e1102..4450238fb1 100644 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -7106,7 +7106,7 @@ "fire_event": "Fire event", "event_fired": "Event {name} fired", "active_listeners": "Active listeners", - "count_listeners": " ({count} listeners)", + "count_listeners": "({count} {count, plural,\n one {listener}\n other {listeners}\n})", "listen_to_events": "Listen to events", "listening_to": "Listening to", "subscribe_to": "Event to subscribe to",