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/SignupQueued.tsx | |
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/SignupQueued.tsx')
-rw-r--r-- | src/screens/SignupQueued.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/SignupQueued.tsx b/src/screens/SignupQueued.tsx index 61c387875..823ed0784 100644 --- a/src/screens/SignupQueued.tsx +++ b/src/screens/SignupQueued.tsx @@ -90,10 +90,10 @@ export function SignupQueued() { variant="ghost" size="large" color="primary" - label={_(msg`Log out`)} + label={_(msg`Sign out`)} onPress={() => logoutCurrentAccount('SignupQueued')}> <ButtonText> - <Trans>Log out</Trans> + <Trans>Sign out</Trans> </ButtonText> </Button> ) |