diff --git a/src/app/item-page/simple/qa-event-notification/qa-event-notification.component.html b/src/app/item-page/simple/qa-event-notification/qa-event-notification.component.html
index afdb53b81d9..5c3131f4222 100644
--- a/src/app/item-page/simple/qa-event-notification/qa-event-notification.component.html
+++ b/src/app/item-page/simple/qa-event-notification/qa-event-notification.component.html
@@ -10,7 +10,11 @@
- {{'item.qa-event-notification.check.notification-info' | translate : {num: source.totalEvents } }}
+ @if (source.totalEvents === 1) {
+ {{'item.qa-event-notification.check.notification-info.singular' | translate : {num: source.totalEvents } }}
+ } @else {
+ {{'item.qa-event-notification.check.notification-info.plural' | translate : {num: source.totalEvents } }}
+ }