From 1dae4583eb8aa09c05009dead1b6ca742937b6a7 Mon Sep 17 00:00:00 2001 From: Tom Teichler <tom.teichler@teckids.org> Date: Tue, 17 Sep 2019 21:30:56 +0200 Subject: [PATCH] Remove german string. --- biscuit/apps/chronos/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biscuit/apps/chronos/util.py b/biscuit/apps/chronos/util.py index 7ce3b0da..da22485d 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 -- GitLab