From 9d39391102432c91e5f2c31c0f3e3250d0e85242 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Thu, 24 Nov 2016 12:25:35 +0100 Subject: [PATCH] Use 'Remove acknowledgement' instead of 'Remove problem acknowledgement' refs #13187 --- .../Object/RemoveAcknowledgementCommandForm.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/monitoring/application/forms/Command/Object/RemoveAcknowledgementCommandForm.php b/modules/monitoring/application/forms/Command/Object/RemoveAcknowledgementCommandForm.php index 416e02e59..7d6672225 100644 --- a/modules/monitoring/application/forms/Command/Object/RemoveAcknowledgementCommandForm.php +++ b/modules/monitoring/application/forms/Command/Object/RemoveAcknowledgementCommandForm.php @@ -70,8 +70,8 @@ class RemoveAcknowledgementCommandForm extends ObjectsCommandForm 'ignore' => true, 'label' => $this->getSubmitLabel(), 'title' => $this->translatePlural( - 'Remove problem acknowledgement', - 'Remove problem acknowledgements', + 'Remove acknowledgement', + 'Remove acknowledgements', count($this->objects) ), 'type' => 'submit' @@ -89,8 +89,8 @@ class RemoveAcknowledgementCommandForm extends ObjectsCommandForm $label = $this->getView()->icon('cancel'); if ($this->isLabelEnabled()) { $label .= $this->translatePlural( - 'Remove problem acknowledgement', - 'Remove problem acknowledgements', + 'Remove acknowledgement', + 'Remove acknowledgements', count($this->objects) ); } @@ -111,8 +111,8 @@ class RemoveAcknowledgementCommandForm extends ObjectsCommandForm } Notification::success(mtp( 'monitoring', - 'Removing problem acknowledgement..', - 'Removing problem acknowledgements..', + 'Removing acknowledgement..', + 'Removing acknowledgements..', count($this->objects) ));