pull/21833/head
Zoe 2020-01-30 16:27:35 +00:00
parent 4a3ea30e52
commit a9d85e1fa3
1 changed files with 6 additions and 6 deletions

View File

@ -151,29 +151,29 @@ export default class IncomingSasDialog extends React.Component {
} }
const userDetailText = [ const userDetailText = [
<p>{_t( <p key="p1">{_t(
"Verify this user to mark them as trusted. " + "Verify this user to mark them as trusted. " +
"Trusting users gives you extra peace of mind when using " + "Trusting users gives you extra peace of mind when using " +
"end-to-end encrypted messages.", "end-to-end encrypted messages.",
)}</p>, )}</p>,
<p>{_t( <p key="p2">{_t(
// NB. Below wording adjusted to singular 'session' until we have // NB. Below wording adjusted to singular 'session' until we have
// cross-signing // cross-signing
"Verifying this user will mark their session as trusted, and " + "Verifying this user will mark their session as trusted, and " +
"also mark your session as trusted to them.", "also mark your session as trusted to them.",
)}</p> )}</p>,
]; ];
const selfDetailText = [ const selfDetailText = [
<p>{_t( <p key="p1">{_t(
"Verify this device to mark it as trusted. " + "Verify this device to mark it as trusted. " +
"Trusting this device gives you and other users extra peace of mind when using " + "Trusting this device gives you and other users extra peace of mind when using " +
"end-to-end encrypted messages.", "end-to-end encrypted messages.",
)}</p>, )}</p>,
<p>{_t( <p key="p2">{_t(
"Verifying this device will mark it as trusted, and users who have verified with " + "Verifying this device will mark it as trusted, and users who have verified with " +
"you will trust this device.", "you will trust this device.",
)}</p> )}</p>,
]; ];
return ( return (