monitoring: Avoid full stops at the end of comment tooltips

refs #10113
This commit is contained in:
Eric Lippmann 2016-02-22 14:15:35 +01:00
parent ce1ed7413d
commit 38a752b0ac
1 changed files with 2 additions and 2 deletions

View File

@ -36,9 +36,9 @@
<?= $this->timeAgo($comment->timestamp) ?>
</span>
<span class="comment-icons" data-base-target="_self">
<?= $comment->persistent ? $this->icon('attach', 'This comment is persistent.') : '' ?>
<?= $comment->persistent ? $this->icon('attach', 'This comment is persistent') : '' ?>
<?= $comment->expiration ? $this->icon('clock', sprintf(
$this->translate('This comment expires on %s at %s.'),
$this->translate('This comment expires on %s at %s'),
$this->formatDate($comment->expiration),
$this->formatTime($comment->expiration)
)) : '' ?>