diff options
Diffstat (limited to 'apps/federatedfilesharing/src')
-rw-r--r-- | apps/federatedfilesharing/src/components/PersonalSettings.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/federatedfilesharing/src/components/PersonalSettings.vue b/apps/federatedfilesharing/src/components/PersonalSettings.vue index 7906d4c31d8..e58031d5653 100644 --- a/apps/federatedfilesharing/src/components/PersonalSettings.vue +++ b/apps/federatedfilesharing/src/components/PersonalSettings.vue @@ -156,14 +156,14 @@ export default { </a>` }, copyLinkTooltip() { - return this.isCopied ? t('federatedfilesharing', 'Cloud ID copied to the clipboard') : t('federatedfilesharing', 'Copy to clipboard') + return this.isCopied ? t('federatedfilesharing', 'Cloud ID copied') : t('federatedfilesharing', 'Copy') }, }, methods: { async copyCloudId(): Promise<void> { try { await navigator.clipboard.writeText(this.cloudId) - showSuccess(t('federatedfilesharing', 'Cloud ID copied to the clipboard')) + showSuccess(t('federatedfilesharing', 'Cloud ID copied')) } catch (e) { // no secure context or really old browser - need a fallback window.prompt(t('federatedfilesharing', 'Clipboard not available. Please copy the cloud ID manually.'), this.reference) |