Revert "Fix Recent statuses plural/singular"

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
pull/28360/head
kesselb 3 years ago committed by Daniel Kesselberg
parent 5bd91eac31
commit 224fdc10f4
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614

@ -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…
Cancel
Save