Fix "log in", "log out" to "sign in", "sign out" (#7739)

* log to sign

* logged to signed
This commit is contained in:
Minseo Lee
2025-02-18 01:52:06 +09:00
committed by GitHub
parent 326445d3af
commit d805dec08f
22 changed files with 35 additions and 33 deletions
@@ -188,7 +188,7 @@ function CreateDialogInner({passwords}: {passwords: string[]}) {
</Text>
<Text style={[a.text_md, a.leading_snug]}>
<Trans>
Use this to sign into the other app along with your handle.
Use this to sign in to the other app along with your handle.
</Trans>
</Text>
<CopyButton
@@ -51,7 +51,7 @@ function DeactivateAccountDialogInner({
case 'Bad token scope':
setError(
_(
msg`You're logged in with an App Password. Please log in with your main password to continue deactivating your account.`,
msg`You're signed in with an App Password. Please sign in with your main password to continue deactivating your account.`,
),
)
break
@@ -51,7 +51,7 @@ export function Email2FAToggle() {
<Prompt.Basic
control={enableDialogControl}
title={_(msg`Enable Email 2FA`)}
description={_(msg`Require an email code to log in to your account.`)}
description={_(msg`Require an email code to sign in to your account.`)}
onConfirm={enableEmailAuthFactor}
confirmButtonCta={_(msg`Enable`)}
/>