From 0bed4d5f316b791f204c36c9524bb0ecd65550ef Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Mon, 5 Dec 2022 15:04:45 -0500 Subject: [PATCH] Update copy --- .../components/chat-page/components/chat-page-settings.tsx | 2 +- .../features/chats/components/chat-page/components/welcome.tsx | 2 +- app/soapbox/features/settings/components/messages-settings.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/soapbox/features/chats/components/chat-page/components/chat-page-settings.tsx b/app/soapbox/features/chats/components/chat-page/components/chat-page-settings.tsx index 57e3f89e4..3e645212f 100644 --- a/app/soapbox/features/chats/components/chat-page/components/chat-page-settings.tsx +++ b/app/soapbox/features/chats/components/chat-page/components/chat-page-settings.tsx @@ -15,7 +15,7 @@ type FormData = { const messages = defineMessages({ title: { id: 'chat.page_settings.title', defaultMessage: 'Message Settings' }, privacy: { id: 'chat.page_settings.privacy', defaultMessage: 'Privacy' }, - acceptingMessageLabel: { id: 'chat.page_settings.accepting_messages.label', defaultMessage: 'Allow your followers to start a new chat with you' }, + acceptingMessageLabel: { id: 'chat.page_settings.accepting_messages.label', defaultMessage: 'Allow users you follow to start a new chat with you' }, submit: { id: 'chat.page_settings.submit', defaultMessage: 'Save' }, }); diff --git a/app/soapbox/features/chats/components/chat-page/components/welcome.tsx b/app/soapbox/features/chats/components/chat-page/components/welcome.tsx index 2046198f9..f1f33f5fa 100644 --- a/app/soapbox/features/chats/components/chat-page/components/welcome.tsx +++ b/app/soapbox/features/chats/components/chat-page/components/welcome.tsx @@ -14,7 +14,7 @@ type FormData = { const messages = defineMessages({ title: { id: 'chat.welcome.title', defaultMessage: 'Welcome to {br} Direct Messages!' }, subtitle: { id: 'chat.welcome.subtitle', defaultMessage: 'By default, all messages are automatically deleted after 14 days for your security.' }, - acceptingMessageLabel: { id: 'chat.welcome.accepting_messages.label', defaultMessage: 'Allow your followers to start a new chat with you' }, + acceptingMessageLabel: { id: 'chat.welcome.accepting_messages.label', defaultMessage: 'Allow users you follow to start a new chat with you' }, notice: { id: 'chat.welcome.notice', defaultMessage: 'You can change these settings later.' }, submit: { id: 'chat.welcome.submit', defaultMessage: 'Save & Continue' }, }); diff --git a/app/soapbox/features/settings/components/messages-settings.tsx b/app/soapbox/features/settings/components/messages-settings.tsx index bc257d026..4ff005742 100644 --- a/app/soapbox/features/settings/components/messages-settings.tsx +++ b/app/soapbox/features/settings/components/messages-settings.tsx @@ -7,7 +7,7 @@ import { useOwnAccount } from 'soapbox/hooks'; import { useUpdateCredentials } from 'soapbox/queries/accounts'; const messages = defineMessages({ - label: { id: 'settings.messages.label', defaultMessage: 'Allow your followers to start a new chat with you' }, + label: { id: 'settings.messages.label', defaultMessage: 'Allow users you follow to start a new chat with you' }, }); const MessagesSettings = () => {