Merge pull request #2931 from jryans/connect-key-backup-more
Also say "Connect ..." on remaining key backup buttons
This commit is contained in:
commit
a803af3a88
3 changed files with 2 additions and 3 deletions
|
@ -130,7 +130,7 @@ export default class LogoutDialog extends React.Component {
|
||||||
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
||||||
let setupButtonCaption;
|
let setupButtonCaption;
|
||||||
if (this.state.backupInfo) {
|
if (this.state.backupInfo) {
|
||||||
setupButtonCaption = _t("Use Key Backup");
|
setupButtonCaption = _t("Connect this device to Key Backup");
|
||||||
} else {
|
} else {
|
||||||
// if there's an error fetching the backup info, we'll just assume there's
|
// if there's an error fetching the backup info, we'll just assume there's
|
||||||
// no backup for the purpose of the button caption
|
// no backup for the purpose of the button caption
|
||||||
|
|
|
@ -119,7 +119,7 @@ export default class RoomRecoveryReminder extends React.PureComponent {
|
||||||
|
|
||||||
let setupCaption;
|
let setupCaption;
|
||||||
if (this.state.backupInfo) {
|
if (this.state.backupInfo) {
|
||||||
setupCaption = _t("Use Key Backup");
|
setupCaption = _t("Connect this device to Key Backup");
|
||||||
} else {
|
} else {
|
||||||
setupCaption = _t("Start using Key Backup");
|
setupCaption = _t("Start using Key Backup");
|
||||||
}
|
}
|
||||||
|
|
|
@ -822,7 +822,6 @@
|
||||||
"%(roomName)s is not accessible at this time.": "%(roomName)s is not accessible at this time.",
|
"%(roomName)s is not accessible at this time.": "%(roomName)s is not accessible at this time.",
|
||||||
"Try again later, or ask a room admin to check if you have access.": "Try again later, or ask a room admin to check if you have access.",
|
"Try again later, or ask a room admin to check if you have access.": "Try again later, or ask a room admin to check if you have access.",
|
||||||
"%(errcode)s was returned while trying to access the room. If you think you're seeing this message in error, please <issueLink>submit a bug report</issueLink>.": "%(errcode)s was returned while trying to access the room. If you think you're seeing this message in error, please <issueLink>submit a bug report</issueLink>.",
|
"%(errcode)s was returned while trying to access the room. If you think you're seeing this message in error, please <issueLink>submit a bug report</issueLink>.": "%(errcode)s was returned while trying to access the room. If you think you're seeing this message in error, please <issueLink>submit a bug report</issueLink>.",
|
||||||
"Use Key Backup": "Use Key Backup",
|
|
||||||
"Never lose encrypted messages": "Never lose encrypted messages",
|
"Never lose encrypted messages": "Never lose encrypted messages",
|
||||||
"Messages in this room are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.": "Messages in this room are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.",
|
"Messages in this room are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.": "Messages in this room are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.",
|
||||||
"Securely back up your keys to avoid losing them. <a>Learn more.</a>": "Securely back up your keys to avoid losing them. <a>Learn more.</a>",
|
"Securely back up your keys to avoid losing them. <a>Learn more.</a>": "Securely back up your keys to avoid losing them. <a>Learn more.</a>",
|
||||||
|
|
Loading…
Reference in a new issue