Prefix tooltips in the host groups overview with "List ..."

refs #8110
This commit is contained in:
Eric Lippmann 2015-02-02 17:06:32 +01:00
parent 4fc8850e25
commit 2722463372
1 changed files with 17 additions and 17 deletions

View File

@ -96,10 +96,10 @@
'hostgroup' => $h->hostgroup, 'hostgroup' => $h->hostgroup,
'sort' => 'service_severity' 'sort' => 'service_severity'
) )
); ?>" title="<?php printf( ); ?>" title="<?= printf(
$this->translatePlural( $this->translatePlural(
'%s Service OK in hostgroup `%s\'', 'List %u service with status ok in host group %s',
'%s Services OK in hostgroup `%s\'', 'List %u services with status ok in host group %s',
$h->services_ok $h->services_ok
), ),
$h->services_ok, $h->services_ok,
@ -123,8 +123,8 @@
) )
); ?>" title="<?php printf( ); ?>" title="<?php printf(
$this->translatePlural( $this->translatePlural(
'%s Service CRITICAL Unhandled in hostgroup `%s\'', 'List %u service with status critical unhandled in host group %s',
'%s Services CRITICAL Unhandled in hostgroup `%s\'', 'List %u services with status critical unhandled in host group %s',
$h->services_critical_unhandled $h->services_critical_unhandled
), ),
$h->services_critical_unhandled, $h->services_critical_unhandled,
@ -145,8 +145,8 @@
) )
); ?>" title="<?php printf( ); ?>" title="<?php printf(
$this->translatePlural( $this->translatePlural(
'%s Service CRITICAL Handled in hostgroup `%s\'', 'List %u service with status critical handled in host group %s',
'%s Services CRITICAL Handled in hostgroup `%s\'', 'List %u services with status critical handled in host group %s',
$h->services_critical_handled $h->services_critical_handled
), ),
$h->services_critical_handled, $h->services_critical_handled,
@ -173,8 +173,8 @@
) )
); ?>" title="<?php printf( ); ?>" title="<?php printf(
$this->translatePlural( $this->translatePlural(
'%s Service UNKNOWN Unhandled in hostgroup `%s\'', 'List %u service with status unknown unhandled in host group %s',
'%s Services UNKNOWN Unhandled in hostgroup `%s\'', 'List %u services with status unknown unhandled in host group %s',
$h->services_unknown_unhandled $h->services_unknown_unhandled
), ),
$h->services_unknown_unhandled, $h->services_unknown_unhandled,
@ -195,8 +195,8 @@
) )
); ?>" title="<?php printf( ); ?>" title="<?php printf(
$this->translatePlural( $this->translatePlural(
'%s Service UNKNOWN Handled in hostgroup `%s\'', 'List %u service with status unknown handled in host group %s',
'%s Services UNKNOWN Handled in hostgroup `%s\'', 'List %u services with status unknown handled in host group %s',
$h->services_unknown_handled $h->services_unknown_handled
), ),
$h->services_unknown_handled, $h->services_unknown_handled,
@ -223,8 +223,8 @@
) )
); ?>" title="<?php printf( ); ?>" title="<?php printf(
$this->translatePlural( $this->translatePlural(
'%s Service WARNING Unhandled in hostgroup `%s\'', 'List %u service with status warning unhandled in host group %s',
'%s Services WARNING Unhandled in hostgroup `%s\'', 'List %u services with status warning unhandled in host group %s',
$h->services_warning_unhandled $h->services_warning_unhandled
), ),
$h->services_warning_unhandled, $h->services_warning_unhandled,
@ -245,8 +245,8 @@
) )
); ?>" title="<?php printf( ); ?>" title="<?php printf(
$this->translatePlural( $this->translatePlural(
'%s Service WARNING Handled in hostgroup `%s\'', 'List %u service with status warning handled in host group %s',
'%s Services WARNING Handled in hostgroup `%s\'', 'List %u services with status warning handled in host group %s',
$h->services_warning_handled $h->services_warning_handled
), ),
$h->services_warning_handled, $h->services_warning_handled,
@ -270,8 +270,8 @@
) )
); ?>" title="<?php printf( ); ?>" title="<?php printf(
$this->translatePlural( $this->translatePlural(
'%s Service PENDING in hostgroup `%s\'', 'List %u service with status pending in host group %s',
'%s Services PENDING in hostgroup `%s\'', 'List %u services with status pending in host group %s',
$h->services_pending $h->services_pending
), ),
$h->services_pending, $h->services_pending,