Bluesky app fork with some witchin' additions 💫

'Log in' to 'Sign in' (#9875)

authored by

surfdude29 and committed by
GitHub
06fcea98 b166d395

+5 -5
+2 -2
src/components/dialogs/BirthDateSettings.tsx
··· 72 72 ) : isUsingAppPassword ? ( 73 73 <Admonition type="info"> 74 74 <Trans> 75 - Hmm, it looks like you're logged in with an{' '} 75 + Hmm, it looks like you're signed in with an{' '} 76 76 <Span style={[a.italic]}>App Password</Span>. To set your 77 - birthdate, you'll need to log in with your main account 77 + birthdate, you'll need to sign in with your main account 78 78 password, or ask whomever controls this account to do so. 79 79 </Trans> 80 80 </Admonition>
+3 -3
src/screens/Login/LoginForm.tsx
··· 175 175 } 176 176 177 177 return ( 178 - <FormContainer testID="loginForm" titleText={<Trans>Log in</Trans>}> 178 + <FormContainer testID="loginForm" titleText={<Trans>Sign in</Trans>}> 179 179 <View> 180 180 <TextField.LabelText> 181 181 <Trans>Hosting provider</Trans> ··· 346 346 ) : ( 347 347 <Button 348 348 testID="loginNextButton" 349 - label={_(msg`Log in`)} 349 + label={_(msg`Sign in`)} 350 350 accessibilityHint={_(msg`Navigates to the next screen`)} 351 351 color="primary" 352 352 size="large" 353 353 onPress={onPressNext}> 354 354 <ButtonText> 355 - <Trans>Log in</Trans> 355 + <Trans>Sign in</Trans> 356 356 </ButtonText> 357 357 {isProcessing && <ButtonIcon icon={Loader} />} 358 358 </Button>