Commit fe6f518e authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

note that EFA occupancy is estimation-based

parent bf02f1b0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -286,13 +286,13 @@ sub startup {
			my $text = 'Auslastung unbekannt';

			if ( $occupancy > 2 ) {
				$text = 'Sehr hohe Auslastung';
				$text = 'Sehr hohe Auslastung erwartet';
			}
			elsif ( $occupancy > 1 ) {
				$text = 'Hohe Auslastung';
				$text = 'Hohe Auslastung erwartet';
			}
			elsif ( $occupancy > 0 ) {
				$text = 'Geringe Auslastung';
				$text = 'Geringe Auslastung erwartet';
			}

			return ( $text, $symbols[$occupancy] );