Skip to content

Commit

Permalink
Revert "Fix Recent statuses plural/singular"
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
  • Loading branch information
kesselb committed Aug 9, 2021
1 parent 5bd91ea commit 224fdc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/user_status/lib/Dashboard/UserStatusWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function getId(): string {
* @inheritDoc
*/
public function getTitle(): string {
return $this->l10n->t('Recent status(es)');
return $this->l10n->t('Recent statuses');
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function testGetTitle(): void {
->method('t')
->willReturnArgument(0);

$this->assertEquals('Recent status(es)', $this->widget->getTitle());
$this->assertEquals('Recent statuses', $this->widget->getTitle());
}

public function testGetOrder(): void {
Expand Down

0 comments on commit 224fdc1

Please sign in to comment.