mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
chore(settings): Rename user groups
- "Active accounts" -> "All accounts" - "Recent accounts" -> "Recently active" Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
parent
51e9651436
commit
e8cacc50a2
3 changed files with 4 additions and 4 deletions
|
|
@ -166,7 +166,7 @@ class UsersController extends Controller {
|
|||
|
||||
$recentUsersGroup = [
|
||||
'id' => '__nc_internal_recent',
|
||||
'name' => $this->l10n->t('Recent accounts'),
|
||||
'name' => $this->l10n->t('Recently active'),
|
||||
'usercount' => $userCount,
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ export default defineComponent({
|
|||
computed: {
|
||||
pageHeading() {
|
||||
if (this.selectedGroupDecoded === null) {
|
||||
return t('settings', 'Active accounts')
|
||||
return t('settings', 'All accounts')
|
||||
}
|
||||
const matchHeading = {
|
||||
admin: t('settings', 'Admins'),
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
data-cy-users-settings-navigation-groups="system">
|
||||
<NcAppNavigationItem id="everyone"
|
||||
:exact="true"
|
||||
:name="t('settings', 'Active accounts')"
|
||||
:name="t('settings', 'All accounts')"
|
||||
:to="{ name: 'users' }">
|
||||
<template #icon>
|
||||
<NcIconSvgWrapper :path="mdiAccount" />
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
|
||||
<NcAppNavigationItem id="recent"
|
||||
:exact="true"
|
||||
:name="t('settings', 'Recent accounts')"
|
||||
:name="t('settings', 'Recently active')"
|
||||
:to="{ name: 'group', params: { selectedGroup: '__nc_internal_recent' } }">
|
||||
<template #icon>
|
||||
<NcIconSvgWrapper :path="mdiHistory" />
|
||||
|
|
|
|||
Loading…
Reference in a new issue