summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-07-18 00:06:56 +0200
committerDaniel Friesel <derf@finalrewind.org>2021-07-18 00:06:56 +0200
commitfe6f518edd065e7ca5c735ccb00cc46d7bcab1c0 (patch)
tree67955c392adbbabcaa579c7dd83ca0f02dc43973
parentbf02f1b05042be56ed4ba5a23f4790909ae3329b (diff)
note that EFA occupancy is estimation-based4.3.0
-rw-r--r--lib/DBInfoscreen.pm6
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] );