Skip to content

Commit

Permalink
chore(l10n): Translate group names
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Ng <chrng8@gmail.com>
  • Loading branch information
Pytal committed Jul 9, 2024
1 parent b7a16db commit 6345722
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/settings/lib/Controller/UsersController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
];

Expand Down

0 comments on commit 6345722

Please sign in to comment.