Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reader: Update Reader Conversations copy #97353

Merged
merged 2 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/blocks/conversations/empty.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ConversationsEmptyContent extends Component {
title={ this.props.translate( 'Welcome to Conversations' ) }
line={ this.props.translate(
"When WordPress posts spark lively conversations, they'll appear here. " +
'To get started, like or comment on some posts.'
'To get started, follow or comment on some posts.'
) }
action={ action }
secondaryAction={ secondaryAction }
Expand Down
1 change: 1 addition & 0 deletions client/reader/conversations/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export function conversationsA8c( context, next ) {
key="conversations"
title="Conversations @ Automattic"
streamKey={ streamKey }
store={ { id: streamKey } }
DustyReagan marked this conversation as resolved.
Show resolved Hide resolved
trackScrollPage={ scrollTracker }
/>
);
Expand Down
16 changes: 7 additions & 9 deletions client/reader/conversations/intro.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,10 @@ class ConversationsIntro extends Component {
<span>
{ isInternal
? translate(
'{{strong}}Welcome to A8C Conversations{{/strong}}, where you can read ' +
'and reply to all your P2 conversations in one place. ' +
"Automattic P2 posts you've liked or commented on " +
'will appear when they have new comments. ' +
'{{a}}More info. {{/a}}',
`{{strong}}Welcome to A8C Conversations.{{/strong}} ` +
`Automattic P2 posts you've written, followed, or commented on will appear here when they have new comments. ` +
`Posts with the most recent comments appear on top. ` +
`{{a}}More info.{{/a}}`,
{
components: {
strong: <strong />,
Expand All @@ -74,10 +73,9 @@ class ConversationsIntro extends Component {
}
)
: translate(
'{{strong}}Welcome to Conversations.{{/strong}} You can read ' +
'and reply to all your conversations in one place. ' +
"WordPress posts you've liked or commented on " +
'will appear when they have new comments.',
`{{strong}}Welcome to Conversations{{/strong}} ` +
`WordPress posts you've written, followed, or commented on will appear here when they have new comments. ` +
`Posts with the most recent comments appear on top.`,
{
components: {
strong: <strong />,
Expand Down
Loading