diff --git a/biscuit/apps/chronos/util.py b/biscuit/apps/chronos/util.py index 7ce3b0da8bd7f617819a86839d68e3e7bb7c58b6..da22485d01a112c34f3dbcdabc78b7574e28989e 100644 --- a/biscuit/apps/chronos/util.py +++ b/biscuit/apps/chronos/util.py @@ -52,7 +52,7 @@ class CalendarWeek: self.week = int(today.strftime('%V')) def __str__(self) -> str: - return '%s %d (%s %s %s)' % (_('Kalenderwoche'), self.week, self[0], _('to'), self[-1]) + return '%s %d (%s %s %s)' % (_('Calendar Week'), self.week, self[0], _('to'), self[-1]) def __len__(self) -> int: return 7