Skip to content

Commit

Permalink
runfix: update copy
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrykBuniX committed May 15, 2024
1 parent 304cd86 commit 8d27e8a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/i18n/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,7 @@
"ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.",
"ongoingVideoCall": "Ongoing video call with {{conversationName}}, your camera is {{cameraStatus}}.",
"otherUserNotSupportMLSMsg": "You can't communicate with {{participantName}} anymore, as you two now use different protocols. When {{participantName}} gets an update, you can call and send messages and files again.",
"otherUserNoAvailableKeyPackages": "This user has no available keys.",
"otherUserNoAvailableKeyPackages": "You can't communicate with {{participantName}} at the moment. When {{participantName}} logs in again, you can call and send messages and files again.",
"participantDevicesDetailHeadline": "Verify that this matches the fingerprint shown on [bold]{{user}}’s device[/bold].",
"participantDevicesDetailHowTo": "How do I do that?",
"participantDevicesDetailResetSession": "Reset session",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,14 @@ export const ReadOnlyConversationMessage: FC<ReadOnlyConversationMessageProps> =
case CONVERSATION_READONLY_STATE.READONLY_ONE_TO_ONE_NO_KEY_PACKAGES:
return (
<ReadOnlyConversationMessageBase>
<span>{t('otherUserNoAvailableKeyPackages')}</span>
<span>
{replaceReactComponents(t('otherUserNoAvailableKeyPackages'), [
{
exactMatch: '{{participantName}}',
render: () => <strong>{user.name()}</strong>,
},
])}
</span>
</ReadOnlyConversationMessageBase>
);
}
Expand Down

0 comments on commit 8d27e8a

Please sign in to comment.