mirror of https://github.com/vector-im/riot-web
lint
parent
4a3ea30e52
commit
a9d85e1fa3
|
@ -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 (
|
||||||
|
|
Loading…
Reference in New Issue