Fix typo in activity stream dashlet names

refs #6144
This commit is contained in:
Matthias Jentsch 2015-09-04 17:17:51 +02:00
parent fcd9315263
commit f73e6d9225
1 changed files with 2 additions and 2 deletions

View File

@ -319,11 +319,11 @@ $dashboard->add(
'monitoring/list/eventhistory?timestamp>=-3%20days&type=notify&sort=timestamp&dir=desc&limit=8'
);
$dashboard->add(
$this->translate('Recent Downtimes Started'),
$this->translate('Downtimes Recently Started'),
'monitoring/list/eventhistory?timestamp>=-3%20days&type=dt_start&sort=timestamp&dir=desc&limit=8'
);
$dashboard->add(
$this->translate('Recent Downtimes Ended'),
$this->translate('Downtimes Recently Ended'),
'monitoring/list/eventhistory?timestamp>=-3%20days&type=dt_end&sort=timestamp&dir=desc&limit=8'
);