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 77370f462d8..c7345f36f9c 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
@@ -9,7 +9,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 } }}
+ }