about summary refs log tree commit diff
path: root/src/screens/Deactivated.tsx
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2025-02-18 01:52:06 +0900
committerGitHub <noreply@github.com>2025-02-17 10:52:06 -0600
commitd805dec08fa58dd0828eabc8b56d9a5abd81f825 (patch)
tree7c78f1b8f32b859bee03a3c8f0c4e4baafeb0f4a /src/screens/Deactivated.tsx
parent326445d3af894080a5487b403e094000cda1f765 (diff)
downloadvoidsky-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/Deactivated.tsx')
-rw-r--r--src/screens/Deactivated.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/screens/Deactivated.tsx b/src/screens/Deactivated.tsx
index 4fcb42854..de03a8d68 100644
--- a/src/screens/Deactivated.tsx
+++ b/src/screens/Deactivated.tsx
@@ -86,7 +86,7 @@ export function Deactivated() {
         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
@@ -148,7 +148,7 @@ export function Deactivated() {
                 {pending && <ButtonIcon icon={Loader} position="right" />}
               </Button>
               <Button
-                label={_(msg`Cancel reactivation and log out`)}
+                label={_(msg`Cancel reactivation and sign out`)}
                 size="large"
                 variant="solid"
                 color="secondary"
@@ -183,7 +183,7 @@ export function Deactivated() {
             <>
               <Text
                 style={[t.atoms.text_contrast_medium, a.pb_md, a.leading_snug]}>
-                <Trans>Or, log into one of your other accounts.</Trans>
+                <Trans>Or, sign in to one of your other accounts.</Trans>
               </Text>
               <AccountList
                 onSelectAccount={onSelectAccount}
@@ -199,13 +199,13 @@ export function Deactivated() {
                 <Trans>Or, continue with another account.</Trans>
               </Text>
               <Button
-                label={_(msg`Log in or sign up`)}
+                label={_(msg`Sign in or sign up`)}
                 size="large"
                 variant="solid"
                 color="secondary"
                 onPress={() => setShowLoggedOut(true)}>
                 <ButtonText>
-                  <Trans>Log in or sign up</Trans>
+                  <Trans>Sign in or sign up</Trans>
                 </ButtonText>
               </Button>
             </>