diff options
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryInherited.vue | 6 | ||||
-rw-r--r-- | apps/files_sharing/src/views/SharingInherited.vue | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryInherited.vue b/apps/files_sharing/src/components/SharingEntryInherited.vue index 0d355ed6d22..b402ddd08be 100644 --- a/apps/files_sharing/src/components/SharingEntryInherited.vue +++ b/apps/files_sharing/src/components/SharingEntryInherited.vue @@ -33,17 +33,17 @@ tooltip-message="" /> </template> <ActionText icon="icon-user"> - {{ t('files_sharing', 'Invited by {initiator}', { initiator: share.ownerDisplayName }) }} + {{ t('files_sharing', 'Added by {initiator}', { initiator: share.ownerDisplayName }) }} </ActionText> <ActionLink v-if="share.fileSource" icon="icon-folder" :href="fileTargetUrl"> - {{ t('files_sharing', 'Open folder') }} + {{ t('files_sharing', 'Via folder') }} </ActionLink> <ActionButton v-if="share.canDelete" icon="icon-delete" @click.prevent="onDelete"> - {{ t('files_sharing', 'Delete share') }} + {{ t('files_sharing', 'Unshare') }} </actionbutton> </SharingEntrySimple> </template> diff --git a/apps/files_sharing/src/views/SharingInherited.vue b/apps/files_sharing/src/views/SharingInherited.vue index be3c5ef2dc3..64c69301267 100644 --- a/apps/files_sharing/src/views/SharingInherited.vue +++ b/apps/files_sharing/src/views/SharingInherited.vue @@ -86,9 +86,7 @@ export default { return 'icon-triangle-s' }, mainTitle() { - return t('files_sharing', 'Others with access {count}', { - count: this.loaded ? `: ${this.shares.length}` : '' - }) + return t('files_sharing', 'Others with access') }, toggleTooltip() { return this.fileInfo.type === 'dir' |