aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src/files_actions/sharingStatusAction.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/src/files_actions/sharingStatusAction.ts')
-rw-r--r--apps/files_sharing/src/files_actions/sharingStatusAction.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/files_actions/sharingStatusAction.ts b/apps/files_sharing/src/files_actions/sharingStatusAction.ts
index 2dfd8467c5b..18fa46d2781 100644
--- a/apps/files_sharing/src/files_actions/sharingStatusAction.ts
+++ b/apps/files_sharing/src/files_actions/sharingStatusAction.ts
@@ -53,7 +53,7 @@ export const action = new FileAction({
const sharees = node.attributes.sharees?.sharee as { id: string, 'display-name': string, type: ShareType }[] | undefined
if (!sharees) {
// No sharees so just show the default message to create a new share
- return t('files_sharing', 'Show sharing options')
+ return t('files_sharing', 'Sharing options')
}
const sharee = [sharees].flat()[0] // the property is sometimes weirdly normalized, so we need to compensate