Tweaks from PR

This commit is contained in:
J. Ryan Stinnett 2020-01-29 16:10:46 +00:00
parent 81ee27f41e
commit 067bfe2ee3
7 changed files with 15 additions and 15 deletions

View file

@ -39,7 +39,7 @@ export default class ConfirmWipeDeviceDialog extends React.Component {
return (
<BaseDialog className='mx_ConfirmWipeDeviceDialog' hasCancel={true}
onFinished={this.props.onFinished}
title={_t("Clear all data on this session?")}>
title={_t("Clear all data in this session?")}>
<div className='mx_ConfirmWipeDeviceDialog_content'>
<p>
{_t(

View file

@ -29,7 +29,7 @@ const WarmFuzzy = function(props) {
if (props.didSetEmail) {
title = _t('You have successfully set a password and an email address!');
}
const advice = _t('You can now return to your account after signing out, and sign in on other sessions.');
const advice = _t('You can now return to your account after signing out, and sign in on other devices.');
let extraAdvice = null;
if (!props.didSetEmail) {
extraAdvice = _t('Remember, you can always set an email address in user settings if you change your mind.');

View file

@ -55,7 +55,7 @@ const EncryptionInfo = ({pending, member, onStartVerification}) => {
<div className="mx_UserInfo_container">
<h3>{_t("Verify User")}</h3>
<div>
<p>{_t("For extra security, verify this user by checking a one-time code on both of your sessions.")}</p>
<p>{_t("For extra security, verify this user by checking a one-time code on both of your devices.")}</p>
<p>{_t("To be secure, do this in person or use a trusted way to communicate.")}</p>
{ content }
</div>