diff --git a/src/components/sharing/linkSharing.vue b/src/components/sharing/linkSharing.vue index 8094649a1..e20bcf178 100644 --- a/src/components/sharing/linkSharing.vue +++ b/src/components/sharing/linkSharing.vue @@ -1,72 +1,76 @@ @@ -159,12 +163,9 @@ @submit="remove()" v-if="showDeleteModal" > - Remove a link share + {{ $t('list.share.links.remove') }}

- Are you sure you want to remove this link share?
- It will no longer be possible to access this list with this link - share.
- This CANNOT BE UNDONE! + {{ $t('list.share.links.removeText') }}

@@ -249,7 +250,7 @@ export default { this.password = '' this.showNewForm = false this.success( - {message: 'The link share was successfully created'}, + {message: this.$t('list.share.links.createSuccess')}, this ) this.load() @@ -267,7 +268,7 @@ export default { .delete(linkshare) .then(() => { this.success( - {message: 'The link share was successfully deleted'}, + {message: this.$t('list.share.links.deleteSuccess')}, this ) this.load() diff --git a/src/components/sharing/userTeam.vue b/src/components/sharing/userTeam.vue index cad550ce4..67b5b6b1b 100644 --- a/src/components/sharing/userTeam.vue +++ b/src/components/sharing/userTeam.vue @@ -1,6 +1,8 @@ @@ -50,19 +52,19 @@ - Admin + {{ $t('list.share.right.admin') }} @@ -76,19 +78,19 @@ :selected="s.right === rights.READ" :value="rights.READ" > - Read only + {{ $t('list.share.right.read') }} @@ -108,7 +110,7 @@ - Not shared with any {{ shareType }} yet. + {{ $t('list.share.userTeam.notShared', {type: shareTypeNames}) }} @@ -117,13 +119,11 @@ @submit="deleteSharable()" v-if="showDeleteModal" > - Remove a {{ shareType }} from the {{ typeString }} + + {{ $t('list.share.userTeam.removeHeader', {type: shareTypeName, sharable: sharableName}) }} +

- Are you sure you want to remove this {{ shareType }} from the - {{ typeString }}?
- This CANNOT BE UNDONE! + {{ $t('list.share.userTeam.removeText', {type: shareTypeName, sharable: sharableName}) }}

@@ -131,8 +131,6 @@