diff options
author | Andy Scherzinger <info@andy-scherzinger.de> | 2023-11-23 16:53:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-23 16:53:00 +0100 |
commit | 9f9abd1a57ae58289c82f0f4417507c61f9b8ab6 (patch) | |
tree | daea059184c70ebb60722e1382aee04fdbcd73af /apps | |
parent | 52c9427c26a298812458a1367a4af8dca82d9acc (diff) | |
parent | 819b4a441284237f0ba0538a3131ba5e36bd17e3 (diff) | |
download | nextcloud-server-9f9abd1a57ae58289c82f0f4417507c61f9b8ab6.tar.gz nextcloud-server-9f9abd1a57ae58289c82f0f4417507c61f9b8ab6.zip |
Merge pull request #41691 from nextcloud/backport/41680/stable28
[stable28] Replace "Update" with "Edit" in advanced share settings
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/src/views/SharingDetailsTab.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/src/views/SharingDetailsTab.vue b/apps/files_sharing/src/views/SharingDetailsTab.vue index 1116748b425..b59d855db92 100644 --- a/apps/files_sharing/src/views/SharingDetailsTab.vue +++ b/apps/files_sharing/src/views/SharingDetailsTab.vue @@ -167,7 +167,7 @@ {{ t('files_sharing', 'Create') }} </NcCheckboxRadioSwitch> <NcCheckboxRadioSwitch :disabled="!canSetEdit" :checked.sync="canEdit"> - {{ t('files_sharing', 'Update') }} + {{ t('files_sharing', 'Edit') }} </NcCheckboxRadioSwitch> <NcCheckboxRadioSwitch v-if="config.isResharingAllowed && share.type !== SHARE_TYPES.SHARE_TYPE_LINK" :disabled="!canSetReshare" @@ -640,7 +640,7 @@ export default { const translatedPermissions = { [ATOMIC_PERMISSIONS.READ]: this.t('files_sharing', 'Read'), [ATOMIC_PERMISSIONS.CREATE]: this.t('files_sharing', 'Create'), - [ATOMIC_PERMISSIONS.UPDATE]: this.t('files_sharing', 'Update'), + [ATOMIC_PERMISSIONS.UPDATE]: this.t('files_sharing', 'Edit'), [ATOMIC_PERMISSIONS.SHARE]: this.t('files_sharing', 'Share'), [ATOMIC_PERMISSIONS.DELETE]: this.t('files_sharing', 'Delete'), } |