Skip to content

Commit

Permalink
Merge pull request #28360 from nextcloud/revert-28351-enh/27553/user-…
Browse files Browse the repository at this point in the history
…status-plural-singular

Revert "Fix Recent statuses plural/singular"
  • Loading branch information
skjnldsv authored Aug 10, 2021
2 parents a716c35 + 224fdc1 commit 7f69a60
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 7f69a60

Please sign in to comment.