diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2025-02-18 01:52:06 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-17 10:52:06 -0600 |
commit | d805dec08fa58dd0828eabc8b56d9a5abd81f825 (patch) | |
tree | 7c78f1b8f32b859bee03a3c8f0c4e4baafeb0f4a /src/screens/Settings/components | |
parent | 326445d3af894080a5487b403e094000cda1f765 (diff) | |
download | voidsky-d805dec08fa58dd0828eabc8b56d9a5abd81f825.tar.zst |
Fix "log in", "log out" to "sign in", "sign out" (#7739)
* log to sign * logged to signed
Diffstat (limited to 'src/screens/Settings/components')
3 files changed, 3 insertions, 3 deletions
diff --git a/src/screens/Settings/components/AddAppPasswordDialog.tsx b/src/screens/Settings/components/AddAppPasswordDialog.tsx index 927875778..973d80a1b 100644 --- a/src/screens/Settings/components/AddAppPasswordDialog.tsx +++ b/src/screens/Settings/components/AddAppPasswordDialog.tsx @@ -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 diff --git a/src/screens/Settings/components/DeactivateAccountDialog.tsx b/src/screens/Settings/components/DeactivateAccountDialog.tsx index 6958b7a47..f5059861c 100644 --- a/src/screens/Settings/components/DeactivateAccountDialog.tsx +++ b/src/screens/Settings/components/DeactivateAccountDialog.tsx @@ -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 diff --git a/src/screens/Settings/components/Email2FAToggle.tsx b/src/screens/Settings/components/Email2FAToggle.tsx index a74f9fce7..0b327df79 100644 --- a/src/screens/Settings/components/Email2FAToggle.tsx +++ b/src/screens/Settings/components/Email2FAToggle.tsx @@ -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`)} /> |