aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src
diff options
context:
space:
mode:
authorJérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>2023-11-23 11:05:25 +0100
committerGitHub <noreply@github.com>2023-11-23 11:05:25 +0100
commit931120b85dbaa2316852f1b0acbd3fd7de531df4 (patch)
tree47703b8cc46c39196ea7e073ae3a188d2f716a81 /apps/files_sharing/src
parent09879700aa5a1ff354ce1366638da56720b4aa08 (diff)
downloadnextcloud-server-931120b85dbaa2316852f1b0acbd3fd7de531df4.tar.gz
nextcloud-server-931120b85dbaa2316852f1b0acbd3fd7de531df4.zip
Replace "Update" with "Edit"
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Diffstat (limited to 'apps/files_sharing/src')
-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 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'),
}