Replace icon comment w/ comment-empty
Signed-off-by: Eric Lippmann <eric.lippmann@icinga.com>
This commit is contained in:
parent
6695e437ab
commit
b722f6e178
|
@ -52,7 +52,7 @@ class CommentController extends Controller
|
|||
$this->getTabs()->add(
|
||||
'comment',
|
||||
array(
|
||||
'icon' => 'comment',
|
||||
'icon' => 'comment-empty',
|
||||
'label' => $this->translate('Comment'),
|
||||
'title' => $this->translate('Display detailed information about a comment.'),
|
||||
'url' =>'monitoring/comments/show'
|
||||
|
|
|
@ -59,7 +59,7 @@ class CommentsController extends Controller
|
|||
$this->getTabs()->add(
|
||||
'comments',
|
||||
array(
|
||||
'icon' => 'comment',
|
||||
'icon' => 'comment-empty',
|
||||
'label' => $this->translate('Comments') . sprintf(' (%d)', $query->count()),
|
||||
'title' => $this->translate(
|
||||
'Display detailed information about multiple comments.'
|
||||
|
|
|
@ -63,8 +63,8 @@
|
|||
$addCommentLink,
|
||||
null,
|
||||
array(
|
||||
'icon' => 'comment',
|
||||
'class' => 'action-link'
|
||||
'class' => 'action-link',
|
||||
'icon' => 'comment-empty'
|
||||
)
|
||||
) ?>
|
||||
</td>
|
||||
|
|
|
@ -57,7 +57,7 @@ $lastDate = null;
|
|||
$stateName = $isService ? Service::getStateText($event->state) : Host::getStateText($event->state);
|
||||
break;
|
||||
case 'comment':
|
||||
$icon = 'comment';
|
||||
$icon = 'comment-empty';
|
||||
$iconTitle = $this->translate('Comment', 'tooltip');
|
||||
$label = $this->translate('COMMENT');
|
||||
break;
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
array(
|
||||
'class' => 'action-link',
|
||||
'data-base-target' => '_self',
|
||||
'icon' => 'comment',
|
||||
'icon' => 'comment-empty',
|
||||
'title' => $this->translate('Add a new comment to this host')
|
||||
)
|
||||
);
|
||||
|
@ -66,7 +66,7 @@
|
|||
array(
|
||||
'class' => 'action-link',
|
||||
'data-base-target' => '_self',
|
||||
'icon' => 'comment',
|
||||
'icon' => 'comment-empty',
|
||||
'title' => $this->translate('Add a new comment to this service')
|
||||
)
|
||||
);
|
||||
|
|
|
@ -62,8 +62,8 @@
|
|||
$addCommentLink,
|
||||
null,
|
||||
array(
|
||||
'icon' => 'comment',
|
||||
'class' => 'action-link'
|
||||
'class' => 'action-link',
|
||||
'icon' => 'comment-empty'
|
||||
)
|
||||
) ?>
|
||||
</td>
|
||||
|
|
|
@ -10,7 +10,7 @@ if ($this->hasPermission('monitoring/command/comment/add')) {
|
|||
array(
|
||||
'class' => 'action-link',
|
||||
'data-base-target' => '_self',
|
||||
'icon' => 'comment',
|
||||
'icon' => 'comment-empty',
|
||||
'title' => $this->translate('Add a new comment to this host')
|
||||
)
|
||||
);
|
||||
|
@ -22,7 +22,7 @@ if ($this->hasPermission('monitoring/command/comment/add')) {
|
|||
array(
|
||||
'class' => 'action-link',
|
||||
'data-base-target' => '_self',
|
||||
'icon' => 'comment',
|
||||
'icon' => 'comment-empty',
|
||||
'title' => $this->translate('Add a new comment to this service')
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue