summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorF. E Noel Nfebe <fenn25.fn@gmail.com>2023-11-29 17:55:32 +0100
committerGitHub <noreply@github.com>2023-11-29 17:55:32 +0100
commitebf289c4304f04868cf365a339c34836cbc83b68 (patch)
treeaf6b8b6cf64fc96ab7f7bc425752799a9ed5bdb7 /apps/files_sharing
parentdf4a7dd7713cb5a7926dfa7e43fbe2481ba9f9c5 (diff)
parent21c157e34990cd063a5e832a47fef5de96326544 (diff)
downloadnextcloud-server-ebf289c4304f04868cf365a339c34836cbc83b68.tar.gz
nextcloud-server-ebf289c4304f04868cf365a339c34836cbc83b68.zip
Merge pull request #41734 from nextcloud/Jerome-Herbinet-change-share-update-right-wording
Nextcloud 27 : Replace "Update" with "Edit" in share dialog
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/src/views/SharingDetailsTab.vue4
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 0fa015a860e..a398829dbb0 100644
--- a/apps/files_sharing/src/views/SharingDetailsTab.vue
+++ b/apps/files_sharing/src/views/SharingDetailsTab.vue
@@ -152,7 +152,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"
@@ -614,7 +614,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'),
}