diff options
author | Jonas <jonas@freesources.org> | 2024-08-05 17:04:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-05 17:04:20 +0200 |
commit | a1853ecb9919e82834ff0ccde4b4a56aedcc39f5 (patch) | |
tree | a4f24f4c6b70afd901c716d9233b26b5dad829c7 | |
parent | 5edd2d82921ab99e67990d4384a3c82ab79b1ad3 (diff) | |
parent | 2d98c296f8da282f340b4afaed157ae25f6fde49 (diff) |
Merge pull request #4076 from nextcloud/fix/groups_name
fix(Members): Rename 'Contact groups' to 'groups'
-rw-r--r-- | src/models/constants.ts | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/models/constants.ts b/src/models/constants.ts index 56c07c57..27ebd5c1 100644 --- a/src/models/constants.ts +++ b/src/models/constants.ts @@ -116,45 +116,45 @@ export const PUBLIC_CIRCLE_CONFIG = { export const CIRCLES_MEMBER_GROUPING = [ { id: `picker-${Type.SHARE_TYPE_USER}`, - label: t('contacts', 'Users'), + label: t('contacts', 'users'), share: Type.SHARE_TYPE_USER, type: MEMBER_TYPE_USER, }, { id: `picker-${Type.SHARE_TYPE_GROUP}`, - label: t('contacts', 'Contact groups'), + label: t('contacts', 'groups'), share: Type.SHARE_TYPE_GROUP, type: MEMBER_TYPE_GROUP, }, // TODO: implement federated // { // id: `picker-${Type.SHARE_TYPE_REMOTE}`, - // label: t('contacts', 'Federated users'), + // label: t('contacts', 'federated users'), // share: Type.SHARE_TYPE_REMOTE, // type: MEMBER_TYPE_USER // }, // { // id: `picker-${Type.SHARE_TYPE_REMOTE_GROUP}`, - // label: t('contacts', 'Federated groups'), + // label: t('contacts', 'federated groups'), // share: Type.SHARE_TYPE_REMOTE_GROUP, // type: MEMBER_TYPE_GROUP // }, { id: `picker-${Type.SHARE_TYPE_CIRCLE}`, - label: t('contacts', 'Teams'), + label: t('contacts', 'teams'), share: Type.SHARE_TYPE_CIRCLE, type: MEMBER_TYPE_CIRCLE, }, { id: `picker-${Type.SHARE_TYPE_EMAIL}`, - label: t('contacts', 'Email addresses'), + label: t('contacts', 'email addresses'), share: Type.SHARE_TYPE_EMAIL, type: MEMBER_TYPE_MAIL, }, // TODO: implement SHARE_TYPE_CONTACT { id: 'picker-contact', - label: t('contacts', 'Teams'), + label: t('contacts', 'teams'), share: Type.SHARE_TYPE_EMAIL, type: MEMBER_TYPE_CONTACT, }, |