aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2019-12-19 08:45:16 +0100
committerGitHub <noreply@github.com>2019-12-19 08:45:16 +0100
commit8cd86f110bfa96fbf05a5792badc4821ec6035d9 (patch)
tree9a93853a10384fbeb8b2bb7517ff8cb49983eb0c /apps/files_sharing/src
parentb175211366f9d7a6553f10d1bbdf04ce7bb37645 (diff)
parentf4f69da4b8b83dde819e08339f4d4a45ea588efc (diff)
downloadnextcloud-server-8cd86f110bfa96fbf05a5792badc4821ec6035d9.tar.gz
nextcloud-server-8cd86f110bfa96fbf05a5792badc4821ec6035d9.zip
Wiswedel/inherited shares/design polishing (#18447)
Wiswedel/inherited shares/design polishing
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r--apps/files_sharing/src/components/SharingEntryInherited.vue6
-rw-r--r--apps/files_sharing/src/views/SharingInherited.vue4
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'