mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Revert "Fix Recent statuses plural/singular"
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
5bd91eac31
commit
224fdc10f4
2 changed files with 2 additions and 2 deletions
|
|
@ -89,7 +89,7 @@ class UserStatusWidget implements IWidget {
|
|||
* @inheritDoc
|
||||
*/
|
||||
public function getTitle(): string {
|
||||
return $this->l10n->t('Recent status(es)');
|
||||
return $this->l10n->t('Recent statuses');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ class UserStatusWidgetTest extends TestCase {
|
|||
->method('t')
|
||||
->willReturnArgument(0);
|
||||
|
||||
$this->assertEquals('Recent status(es)', $this->widget->getTitle());
|
||||
$this->assertEquals('Recent statuses', $this->widget->getTitle());
|
||||
}
|
||||
|
||||
public function testGetOrder(): void {
|
||||
|
|
|
|||
Loading…
Reference in a new issue