bar: fix unread notifs plural

This commit is contained in:
2 * r + 2 * t 2025-01-15 13:17:24 +11:00
parent 9f843558c0
commit aa9b63694b

View file

@ -331,7 +331,7 @@ const Notifications = () => {
setup={self => setup={self =>
setupCustomTooltip( setupCustomTooltip(
self, self,
bind(unreadCount).as(n => n + " unread notifications") bind(unreadCount).as(n => `${n} unread notification${n === 1 ? "" : "s"}`)
) )
} }
> >