summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnna <anna@nextcloud.com>2022-11-14 10:53:43 +0100
committerGitHub <noreply@github.com>2022-11-14 10:53:43 +0100
commit0d14fe17ebefda0b5209ca36d398cd4b6afd4038 (patch)
tree3c26f08edc628509a9c33c8498804ee0371c00ba
parenta7f286ae1605f61f72590661c8209da21ad636df (diff)
parentea8c5889343e30c7fa8c40aae20bf2d03c2f57a2 (diff)
Merge pull request #3097 from nextcloud/enhancement/rename-groups-to-contact-groups
Rename 'Groups' to 'Contact groups'
-rw-r--r--src/components/AppNavigation/RootNavigation.vue6
-rw-r--r--src/components/ContactDetails.vue2
-rw-r--r--src/components/Properties/PropertyGroups.vue2
-rw-r--r--src/models/constants.ts2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/components/AppNavigation/RootNavigation.vue b/src/components/AppNavigation/RootNavigation.vue
index bc26c08d..0f23e1d6 100644
--- a/src/components/AppNavigation/RootNavigation.vue
+++ b/src/components/AppNavigation/RootNavigation.vue
@@ -98,7 +98,7 @@
<AppNavigationCaption id="newgroup"
:force-menu="true"
:menu-open.sync="isNewGroupMenuOpen"
- :title="t('contacts', 'Groups')"
+ :title="t('contacts', 'Contact groups')"
@click.prevent.stop="toggleNewGroupMenu">
<template #actionsTriggerIcon>
<IconAdd :size="20" />
@@ -109,10 +109,10 @@
<IconError v-if="createGroupError" :size="20" />
<IconContact v-else-if="!createGroupError" :size="20" />
</template>
- {{ createGroupError ? createGroupError : t('contacts', 'Create a new group') }}
+ {{ createGroupError ? createGroupError : t('contacts', 'Create a new contact group') }}
</ActionText>
<ActionInput icon=""
- :placeholder="t('contacts','Group name')"
+ :placeholder="t('contacts','Contact group name')"
@submit.prevent.stop="createNewGroup" />
</template>
</AppNavigationCaption>
diff --git a/src/components/ContactDetails.vue b/src/components/ContactDetails.vue
index 9fe9f173..8ad93521 100644
--- a/src/components/ContactDetails.vue
+++ b/src/components/ContactDetails.vue
@@ -466,7 +466,7 @@ export default {
*/
groupsModel() {
return {
- readableName: t('contacts', 'Groups'),
+ readableName: t('contacts', 'Contact groups'),
icon: 'icon-contacts-dark',
}
},
diff --git a/src/components/Properties/PropertyGroups.vue b/src/components/Properties/PropertyGroups.vue
index fcae659d..82c68ae1 100644
--- a/src/components/Properties/PropertyGroups.vue
+++ b/src/components/Properties/PropertyGroups.vue
@@ -23,7 +23,7 @@
<template>
<div v-if="propModel" class="property property--without-actions">
<PropertyTitle icon="icon-contacts-dark"
- :readable-name="t('contacts', 'Groups')" />
+ :readable-name="t('contacts', 'Contact groups')" />
<div class="property__row">
<div class="property__label">
diff --git a/src/models/constants.ts b/src/models/constants.ts
index 5624a353..9b3afaa1 100644
--- a/src/models/constants.ts
+++ b/src/models/constants.ts
@@ -137,7 +137,7 @@ export const CIRCLES_MEMBER_GROUPING = [
},
{
id: `picker-${Type.SHARE_TYPE_GROUP}`,
- label: t('contacts', 'Groups'),
+ label: t('contacts', 'Contact groups'),
share: Type.SHARE_TYPE_GROUP,
type: MEMBER_TYPE_GROUP
},