Skip to content

Commit 8212149

Browse files
committed
change string identifiers
1 parent 1d34e2a commit 8212149

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/components/structures/auth/SetupEncryptionBody.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
172172
if (store.hasDevicesToVerifyAgainst) {
173173
verifyButton = (
174174
<Button kind="primary" onClick={this.onVerifyClick}>
175-
<DevicesIcon /> {_t("encryption|verification|verify_using_device")}
175+
<DevicesIcon /> {_t("encryption|verification|use_another_device")}
176176
</Button>
177177
);
178178
}
@@ -181,7 +181,7 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
181181
if (store.keyInfo) {
182182
useRecoveryKeyButton = (
183183
<Button kind="primary" onClick={this.onUsePassphraseClick}>
184-
{_t("encryption|verification|verify_using_key")}
184+
{_t("encryption|verification|use_recovery_key")}
185185
</Button>
186186
);
187187
}
@@ -202,7 +202,7 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
202202
className="mx_EncryptionCard_noBorder mx_SetupEncryptionBody"
203203
>
204204
<EncryptionCardEmphasisedContent>
205-
<span>{_t("encryption|verification|verification_description")}</span>
205+
<span>{_t("encryption|verification|confirm_identity_description")}</span>
206206
<span>
207207
<ExternalLink href="https://element.io/help#encryption-device-verification">
208208
{_t("action|learn_more")}

src/i18n/strings/en_EN.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,6 +1000,7 @@
10001000
"complete_action": "Got It",
10011001
"complete_description": "You've successfully verified this user.",
10021002
"complete_title": "Verified!",
1003+
"confirm_identity_description": "Verify this device to set up secure messaging",
10031004
"confirm_identity_title": "Confirm your identity",
10041005
"error_starting_description": "We were unable to start a chat with the other user.",
10051006
"error_starting_title": "Error starting verification",
@@ -1063,7 +1064,8 @@
10631064
"unverified_sessions_toast_description": "Review to ensure your account is safe",
10641065
"unverified_sessions_toast_reject": "Later",
10651066
"unverified_sessions_toast_title": "You have unverified sessions",
1066-
"verification_description": "Verify this device to set up secure messaging",
1067+
"use_another_device": "Use another device",
1068+
"use_recovery_key": "Use recovery key",
10671069
"verification_dialog_title_device": "Verify other device",
10681070
"verification_dialog_title_user": "Verification Request",
10691071
"verification_skip_warning": "Without verifying, you won't have access to all your messages and may appear as untrusted to others.",
@@ -1073,8 +1075,6 @@
10731075
"verify_emoji_prompt": "Verify by comparing unique emoji.",
10741076
"verify_emoji_prompt_qr": "If you can't scan the code above, verify by comparing unique emoji.",
10751077
"verify_later": "I'll verify later",
1076-
"verify_using_device": "Use another device",
1077-
"verify_using_key": "Use recovery key",
10781078
"waiting_for_user_accept": "Waiting for %(displayName)s to accept…",
10791079
"waiting_other_device": "Waiting for you to verify on your other device…",
10801080
"waiting_other_device_details": "Waiting for you to verify on your other device, %(deviceName)s (%(deviceId)s)…",

0 commit comments

Comments
 (0)