From 63457220fc8c43e941839313b0b6c55e27f78139 Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Tue, 9 Jul 2024 15:44:35 -0700 Subject: [PATCH] chore(l10n): Translate group names Signed-off-by: Christopher Ng --- apps/settings/lib/Controller/UsersController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/settings/lib/Controller/UsersController.php b/apps/settings/lib/Controller/UsersController.php index e5699f0bf0333..a34a2b4b8e993 100644 --- a/apps/settings/lib/Controller/UsersController.php +++ b/apps/settings/lib/Controller/UsersController.php @@ -166,13 +166,13 @@ public function usersList(): TemplateResponse { $recentUsersGroup = [ 'id' => 'recent', - 'name' => 'Recent accounts', + 'name' => $this->l10n->t('Recent accounts'), 'usercount' => $userCount, ]; $disabledUsersGroup = [ 'id' => 'disabled', - 'name' => 'Disabled accounts', + 'name' => $this->l10n->t('Disabled accounts'), 'usercount' => $disabledUsers ];