summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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] );