Rename today and tomorrow widgets

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr
2023-01-06 17:47:34 +01:00
committed by Julius Härtl
parent a37e7192aa
commit 6aaa9bea9c
2 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ use OCP\IL10N;
class DeckWidgetToday implements IWidget { class DeckWidgetToday implements IWidget {
/** /**
* *
* @var IL10N * @var IL10N
*/ */
private $l10n; private $l10n;
@@ -52,7 +52,7 @@ class DeckWidgetToday implements IWidget {
* @inheritDoc * @inheritDoc
*/ */
public function getTitle(): string { public function getTitle(): string {
return $this->l10n->t('Upcoming cards today'); return $this->l10n->t('Cards due today');
} }
/** /**

View File

@@ -32,7 +32,7 @@ use OCP\IL10N;
class DeckWidgetTomorrow implements IWidget { class DeckWidgetTomorrow implements IWidget {
/** /**
* *
* @var IL10N * @var IL10N
*/ */
private $l10n; private $l10n;
@@ -52,7 +52,7 @@ class DeckWidgetTomorrow implements IWidget {
* @inheritDoc * @inheritDoc
*/ */
public function getTitle(): string { public function getTitle(): string {
return $this->l10n->t('Upcoming cards tomorrow'); return $this->l10n->t('Cards due tomorrow');
} }
/** /**