diff --git a/sites/billableaua.de/index.html b/sites/billableaua.de/index.html
index f5a75c8..97a25b2 100644
--- a/sites/billableaua.de/index.html
+++ b/sites/billableaua.de/index.html
@@ -421,14 +421,14 @@
'' + perDayStr + ' Stunden billable pro Tag.' +
verdict +
'' +
- 'Ein Tag krank? Dann sind es ' +
- (workingDays > 1 ? (hours / (workingDays - 1)).toFixed(1).replace('.', ',') : '∞') +
- ' Stunden auf ' + (workingDays - 1) + ' Tage.' +
+ 'Ein Tag krank? ' +
+ (workingDays > 1 ? Math.round(hours / (workingDays - 1) * 60) : '∞') +
+ ' Minuten pro Tag.' +
' Noch ein Tag? ' +
- (workingDays > 2 ? (hours / (workingDays - 2)).toFixed(1).replace('.', ',') : '∞') +
+ (workingDays > 2 ? Math.round(hours / (workingDays - 2) * 60) : '∞') +
'.' +
' Eine Woche? ' +
- (workingDays > 5 ? (hours / (workingDays - 5)).toFixed(1).replace('.', ',') : '∞') +
+ (workingDays > 5 ? Math.round(hours / (workingDays - 5) * 60) : '∞') +
'.' +
'
Jeder verpasste Tag erhöht den Druck auf alle anderen.';
}