diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2021-08-10 07:10:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 07:10:56 +0200 |
commit | 7f69a60ab10da4ea521a5ef1802229a4d4fa2d2a (patch) | |
tree | 07bdd0606718de53fd5a9ab1d43ed3f27e4538fd | |
parent | a716c35888f2ff084b54e92350fe32ac7e02a539 (diff) | |
parent | 224fdc10f40fbd2a5a456159bf84ebbd354af227 (diff) | |
download | nextcloud-server-7f69a60ab10da4ea521a5ef1802229a4d4fa2d2a.tar.gz nextcloud-server-7f69a60ab10da4ea521a5ef1802229a4d4fa2d2a.zip |
Merge pull request #28360 from nextcloud/revert-28351-enh/27553/user-status-plural-singular
Revert "Fix Recent statuses plural/singular"
-rw-r--r-- | apps/user_status/lib/Dashboard/UserStatusWidget.php | 2 | ||||
-rw-r--r-- | apps/user_status/tests/Unit/Dashboard/UserStatusWidgetTest.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_status/lib/Dashboard/UserStatusWidget.php b/apps/user_status/lib/Dashboard/UserStatusWidget.php index 7b59affdd44..10411dc7f9d 100644 --- a/apps/user_status/lib/Dashboard/UserStatusWidget.php +++ b/apps/user_status/lib/Dashboard/UserStatusWidget.php @@ -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'); } /** diff --git a/apps/user_status/tests/Unit/Dashboard/UserStatusWidgetTest.php b/apps/user_status/tests/Unit/Dashboard/UserStatusWidgetTest.php index 70f85b84b04..d23b2bc02ff 100644 --- a/apps/user_status/tests/Unit/Dashboard/UserStatusWidgetTest.php +++ b/apps/user_status/tests/Unit/Dashboard/UserStatusWidgetTest.php @@ -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 { |