Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/contacts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-11-11 17:22:34 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-11-11 17:50:36 +0300
commitea8c5889343e30c7fa8c40aae20bf2d03c2f57a2 (patch)
tree2e92a719a57ba680c5f4722809c6e815c388c3cc
parent1c1a1375db7abd755452a80aafedae06bdf4d173 (diff)
Rename 'Groups' to 'Contact groups'enhancement/rename-groups-to-contact-groups
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-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
},