summaryrefslogtreecommitdiffstats
path: root/apps/user_status/lib
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2021-08-08 20:11:47 +0200
committerszaimen <szaimen@e.mail.de>2021-08-08 21:04:48 +0200
commit3897b68883604250f7d4ec27c665b0be5479a77c (patch)
treed9536418e00022d0cd3020338aaa19eadd688c26 /apps/user_status/lib
parent27847a92501d9b434589030c899bcb0561414842 (diff)
downloadnextcloud-server-3897b68883604250f7d4ec27c665b0be5479a77c.tar.gz
nextcloud-server-3897b68883604250f7d4ec27c665b0be5479a77c.zip
Fix Recent statuses plural/singular
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'apps/user_status/lib')
-rw-r--r--apps/user_status/lib/Dashboard/UserStatusWidget.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_status/lib/Dashboard/UserStatusWidget.php b/apps/user_status/lib/Dashboard/UserStatusWidget.php
index 10411dc7f9d..7b59affdd44 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 statuses');
+ return $this->l10n->t('Recent status(es)');
}
/**