Use 'Remove acknowledgement' instead of 'Remove problem acknowledgement'

refs #13187
This commit is contained in:
Eric Lippmann 2016-11-24 12:25:35 +01:00
parent df4e51845d
commit 9d39391102

View File

@ -70,8 +70,8 @@ class RemoveAcknowledgementCommandForm extends ObjectsCommandForm
'ignore' => true, 'ignore' => true,
'label' => $this->getSubmitLabel(), 'label' => $this->getSubmitLabel(),
'title' => $this->translatePlural( 'title' => $this->translatePlural(
'Remove problem acknowledgement', 'Remove acknowledgement',
'Remove problem acknowledgements', 'Remove acknowledgements',
count($this->objects) count($this->objects)
), ),
'type' => 'submit' 'type' => 'submit'
@ -89,8 +89,8 @@ class RemoveAcknowledgementCommandForm extends ObjectsCommandForm
$label = $this->getView()->icon('cancel'); $label = $this->getView()->icon('cancel');
if ($this->isLabelEnabled()) { if ($this->isLabelEnabled()) {
$label .= $this->translatePlural( $label .= $this->translatePlural(
'Remove problem acknowledgement', 'Remove acknowledgement',
'Remove problem acknowledgements', 'Remove acknowledgements',
count($this->objects) count($this->objects)
); );
} }
@ -111,8 +111,8 @@ class RemoveAcknowledgementCommandForm extends ObjectsCommandForm
} }
Notification::success(mtp( Notification::success(mtp(
'monitoring', 'monitoring',
'Removing problem acknowledgement..', 'Removing acknowledgement..',
'Removing problem acknowledgements..', 'Removing acknowledgements..',
count($this->objects) count($this->objects)
)); ));