diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-07-18 00:06:56 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-07-18 00:06:56 +0200 |
commit | fe6f518edd065e7ca5c735ccb00cc46d7bcab1c0 (patch) | |
tree | 67955c392adbbabcaa579c7dd83ca0f02dc43973 | |
parent | bf02f1b05042be56ed4ba5a23f4790909ae3329b (diff) |
note that EFA occupancy is estimation-based4.3.0
-rw-r--r-- | lib/DBInfoscreen.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/DBInfoscreen.pm b/lib/DBInfoscreen.pm index ca8be38..cd97398 100644 --- a/lib/DBInfoscreen.pm +++ b/lib/DBInfoscreen.pm @@ -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] ); |