Split up story reactions message for you/someone else
This commit is contained in:
parent
fefa5d9a25
commit
0dc2ab394f
2 changed files with 12 additions and 2 deletions
|
@ -6803,7 +6803,15 @@
|
||||||
},
|
},
|
||||||
"icu:StoryViewsNRepliesModal__reacted": {
|
"icu:StoryViewsNRepliesModal__reacted": {
|
||||||
"messageformat": "Reacted to the story",
|
"messageformat": "Reacted to the story",
|
||||||
"description": "Description of someone reacting to a story"
|
"description": "(Deleted 2024/08/23) Description of someone reacting to a story"
|
||||||
|
},
|
||||||
|
"icu:StoryViewsNRepliesModal__reacted--you": {
|
||||||
|
"messageformat": "Reacted to the story",
|
||||||
|
"description": "Description of you reacting to a story"
|
||||||
|
},
|
||||||
|
"icu:StoryViewsNRepliesModal__reacted--someone-else": {
|
||||||
|
"messageformat": "Reacted to the story",
|
||||||
|
"description": "Description of someone else reacting to a story"
|
||||||
},
|
},
|
||||||
"icu:StoryViewsNRepliesModal__not-a-member": {
|
"icu:StoryViewsNRepliesModal__not-a-member": {
|
||||||
"messageformat": "You can’t reply to this story because you’re no longer a member of this group.",
|
"messageformat": "You can’t reply to this story because you’re no longer a member of this group.",
|
||||||
|
|
|
@ -571,7 +571,9 @@ function ReplyOrReactionMessage({
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{i18n('icu:StoryViewsNRepliesModal__reacted')}
|
{reply.author.isMe
|
||||||
|
? i18n('icu:StoryViewsNRepliesModal__reacted--you')
|
||||||
|
: i18n('icu:StoryViewsNRepliesModal__reacted--someone-else')}
|
||||||
<MessageTimestamp
|
<MessageTimestamp
|
||||||
i18n={i18n}
|
i18n={i18n}
|
||||||
isRelativeTime
|
isRelativeTime
|
||||||
|
|
Loading…
Reference in a new issue