diff --git a/src/components/CallView/EmptyCallView.vue b/src/components/CallView/EmptyCallView.vue index 6d87d8c67..717ba42ca 100644 --- a/src/components/CallView/EmptyCallView.vue +++ b/src/components/CallView/EmptyCallView.vue @@ -139,9 +139,9 @@ export default { async copyLinkToConversation() { try { await this.$copyText(this.linkToConversation) - OCP.Toast.success(t('spreed', 'Link to conversation copied to clipboard')) + OCP.Toast.success(t('spreed', 'Conversation link copied to clipboard.')) } catch (error) { - OCP.Toast.error(t('spreed', 'Link to conversation was not copied to clipboard.')) + OCP.Toast.error(t('spreed', 'The link could not be copied.')) } }, }, diff --git a/src/components/LeftSidebar/ConversationsList/Conversation.vue b/src/components/LeftSidebar/ConversationsList/Conversation.vue index 1fc8b6fee..49081ce26 100644 --- a/src/components/LeftSidebar/ConversationsList/Conversation.vue +++ b/src/components/LeftSidebar/ConversationsList/Conversation.vue @@ -251,9 +251,9 @@ export default { async copyLinkToConversation() { try { await this.$copyText(this.linkToConversation) - OCP.Toast.success(t('spreed', 'Link to conversation copied to clipboard')) + OCP.Toast.success(t('spreed', 'Conversation link copied to clipboard.')) } catch (error) { - OCP.Toast.error(t('spreed', 'Link to conversation was not copied to clipboard.')) + OCP.Toast.error(t('spreed', 'The link could not be copied.')) } }, async joinConversation() { diff --git a/src/components/RightSidebar/RightSidebar.vue b/src/components/RightSidebar/RightSidebar.vue index 374508abf..35dbfffc8 100644 --- a/src/components/RightSidebar/RightSidebar.vue +++ b/src/components/RightSidebar/RightSidebar.vue @@ -428,7 +428,6 @@ export default { await this.$copyText(this.linkToConversation) OCP.Toast.success(t('spreed', 'Conversation link copied to clipboard.')) } catch (error) { - console.debug(error) OCP.Toast.error(t('spreed', 'The link could not be copied.')) } },