TypeFilterSet: fix flipped flapping states

This commit is contained in:
Thomas Gelf 2016-03-18 19:54:08 +01:00
parent 313a81e6ab
commit 4e70a4a003
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ class TypeFilterSet extends ExtensibleSet
'DowntimeRemoved' => $this->translate('Downtime removed'), 'DowntimeRemoved' => $this->translate('Downtime removed'),
), ),
$this->translate('Flapping') => array( $this->translate('Flapping') => array(
'FlappingStart' => $this->translate('Flapping ends'), 'FlappingStart' => $this->translate('Flapping starts'),
'FlappingEnd' => $this->translate('Flapping starts') 'FlappingEnd' => $this->translate('Flapping ends')
) )
); );
} }