···118118 useEffect(() => {
119119 return listenSessionDropped(() => {
120120 Toast.show(
121121- _(msg`Sorry! Your session expired. Please log in again.`),
121121+ _(msg`Sorry! Your session expired. Please sign in again.`),
122122 'info',
123123 )
124124 })
+1-1
src/App.web.tsx
···9494 useEffect(() => {
9595 return listenSessionDropped(() => {
9696 Toast.show(
9797- _(msg`Sorry! Your session expired. Please log in again.`),
9797+ _(msg`Sorry! Your session expired. Please sign in again.`),
9898 'info',
9999 )
100100 })
+1-1
src/components/AccountList.tsx
···6262 testID="chooseAddAccountBtn"
6363 style={[a.flex_1]}
6464 onPress={pendingDid ? undefined : onPressAddAccount}
6565- label={_(msg`Login to account that is not listed`)}>
6565+ label={_(msg`Sign in to account that is not listed`)}>
6666 {({hovered, pressed}) => (
6767 <View
6868 style={[
+1-1
src/components/dialogs/Signin.tsx
···43434444 return (
4545 <Dialog.ScrollableInner
4646- label={_(msg`Sign into Bluesky or create a new account`)}
4646+ label={_(msg`Sign in to Bluesky or create a new account`)}
4747 style={[gtMobile ? {width: 'auto', maxWidth: 420} : a.w_full]}>
4848 <View style={[!isNative && a.p_2xl]}>
4949 <View
+5-5
src/screens/Deactivated.tsx
···8686 case 'Bad token scope':
8787 setError(
8888 _(
8989- msg`You're logged in with an App Password. Please log in with your main password to continue deactivating your account.`,
8989+ msg`You're signed in with an App Password. Please sign in with your main password to continue deactivating your account.`,
9090 ),
9191 )
9292 break
···148148 {pending && <ButtonIcon icon={Loader} position="right" />}
149149 </Button>
150150 <Button
151151- label={_(msg`Cancel reactivation and log out`)}
151151+ label={_(msg`Cancel reactivation and sign out`)}
152152 size="large"
153153 variant="solid"
154154 color="secondary"
···183183 <>
184184 <Text
185185 style={[t.atoms.text_contrast_medium, a.pb_md, a.leading_snug]}>
186186- <Trans>Or, log into one of your other accounts.</Trans>
186186+ <Trans>Or, sign in to one of your other accounts.</Trans>
187187 </Text>
188188 <AccountList
189189 onSelectAccount={onSelectAccount}
···199199 <Trans>Or, continue with another account.</Trans>
200200 </Text>
201201 <Button
202202- label={_(msg`Log in or sign up`)}
202202+ label={_(msg`Sign in or sign up`)}
203203 size="large"
204204 variant="solid"
205205 color="secondary"
206206 onPress={() => setShowLoggedOut(true)}>
207207 <ButtonText>
208208- <Trans>Log in or sign up</Trans>
208208+ <Trans>Sign in or sign up</Trans>
209209 </ButtonText>
210210 </Button>
211211 </>
+4-2
src/screens/Login/LoginForm.tsx
···298298 />
299299 </TextField.Root>
300300 <Text style={[a.text_sm, t.atoms.text_contrast_medium, a.mt_sm]}>
301301- <Trans>Check your email for a login code and enter it here.</Trans>
301301+ <Trans>
302302+ Check your email for a sign in code and enter it here.
303303+ </Trans>
302304 </Text>
303305 </View>
304306 )}
···319321 <Button
320322 testID="loginRetryButton"
321323 label={_(msg`Retry`)}
322322- accessibilityHint={_(msg`Retries login`)}
324324+ accessibilityHint={_(msg`Retries sign in`)}
323325 variant="solid"
324326 color="secondary"
325327 size="large"
···188188 </Text>
189189 <Text style={[a.text_md, a.leading_snug]}>
190190 <Trans>
191191- Use this to sign into the other app along with your handle.
191191+ Use this to sign in to the other app along with your handle.
192192 </Trans>
193193 </Text>
194194 <CopyButton
···5151 case 'Bad token scope':
5252 setError(
5353 _(
5454- msg`You're logged in with an App Password. Please log in with your main password to continue deactivating your account.`,
5454+ msg`You're signed in with an App Password. Please sign in with your main password to continue deactivating your account.`,
5555 ),
5656 )
5757 break
···5151 <Prompt.Basic
5252 control={enableDialogControl}
5353 title={_(msg`Enable Email 2FA`)}
5454- description={_(msg`Require an email code to log in to your account.`)}
5454+ description={_(msg`Require an email code to sign in to your account.`)}
5555 onConfirm={enableEmailAuthFactor}
5656 confirmButtonCta={_(msg`Enable`)}
5757 />
···101101 >({
102102 mutationFn: async ({listUri, actorDid}) => {
103103 if (!currentAccount) {
104104- throw new Error('Not logged in')
104104+ throw new Error('Not signed in')
105105 }
106106 const res = await agent.app.bsky.graph.listitem.create(
107107 {repo: currentAccount.did},
···160160 >({
161161 mutationFn: async ({membershipUri}) => {
162162 if (!currentAccount) {
163163- throw new Error('Not logged in')
163163+ throw new Error('Not signed in')
164164 }
165165 const membershipUrip = new AtUri(membershipUri)
166166 await agent.app.bsky.graph.listitem.delete({
+2-2
src/state/queries/list.ts
···6060 avatar,
6161 }) {
6262 if (!currentAccount) {
6363- throw new Error('Not logged in')
6363+ throw new Error('Not signed in')
6464 }
6565 if (
6666 purpose !== 'app.bsky.graph.defs#curatelist' &&
···126126 async mutationFn({uri, name, description, descriptionFacets, avatar}) {
127127 const {hostname, rkey} = new AtUri(uri)
128128 if (!currentAccount) {
129129- throw new Error('Not logged in')
129129+ throw new Error('Not signed in')
130130 }
131131 if (currentAccount.did !== hostname) {
132132 throw new Error('You do not own this list')
+2-2
src/state/queries/messages/actor-declaration.ts
···18181919 return useMutation({
2020 mutationFn: async (allowIncoming: 'all' | 'none' | 'following') => {
2121- if (!currentAccount) throw new Error('Not logged in')
2121+ if (!currentAccount) throw new Error('Not signed in')
2222 const result = await agent.api.com.atproto.repo.putRecord({
2323 repo: currentAccount.did,
2424 collection: 'chat.bsky.actor.declaration',
···68686969 return useMutation({
7070 mutationFn: async () => {
7171- if (!currentAccount) throw new Error('Not logged in')
7171+ if (!currentAccount) throw new Error('Not signed in')
7272 // TODO(sam): remove validate: false once PDSes have the new lexicon
7373 const result = await agent.api.com.atproto.repo.deleteRecord({
7474 repo: currentAccount.did,
+1-1
src/state/queries/pinned-post.ts
···3232 updatePostShadow(queryClient, postUri, {pinned: pinCurrentPost})
33333434 // get the currently pinned post so we can optimistically remove the pin from it
3535- if (!currentAccount) throw new Error('Not logged in')
3535+ if (!currentAccount) throw new Error('Not signed in')
3636 const {data: profile} = await agent.getProfile({
3737 actor: currentAccount.did,
3838 })
+1-1
src/state/queries/starter-packs.ts
···294294 return useMutation({
295295 mutationFn: async ({listUri, rkey}: {listUri?: string; rkey: string}) => {
296296 if (!agent.session) {
297297- throw new Error(`Requires logged in user`)
297297+ throw new Error(`Requires signed in user`)
298298 }
299299300300 if (listUri) {
+1-1
src/view/com/auth/SplashScreen.tsx
···6060 onPress={onPressSignin}
6161 label={_(msg`Sign in`)}
6262 accessibilityHint={_(
6363- msg`Opens flow to sign into your existing Bluesky account`,
6363+ msg`Opens flow to sign in to your existing Bluesky account`,
6464 )}
6565 size="large"
6666 variant="solid"
+1-1
src/view/com/auth/SplashScreen.web.tsx
···122122 onPress={onPressSignin}
123123 label={_(msg`Sign in`)}
124124 accessibilityHint={_(
125125- msg`Opens flow to sign into your existing Bluesky account`,
125125+ msg`Opens flow to sign in to your existing Bluesky account`,
126126 )}
127127 size="large"
128128 variant="solid"
+1-1
src/view/com/profile/ProfileMenu.tsx
···399399 control={loggedOutWarningPromptControl}
400400 title={_(msg`Note about sharing`)}
401401 description={_(
402402- msg`This profile is only visible to logged-in users. It won't be visible to people who aren't logged in.`,
402402+ msg`This profile is only visible to logged-in users. It won't be visible to people who aren't signed in.`,
403403 )}
404404 onConfirm={onPressShare}
405405 confirmButtonCta={_(msg`Share anyway`)}
···717717 control={loggedOutWarningPromptControl}
718718 title={_(msg`Note about sharing`)}
719719 description={_(
720720- msg`This post is only visible to logged-in users. It won't be visible to people who aren't logged in.`,
720720+ msg`This post is only visible to logged-in users. It won't be visible to people who aren't signed in.`,
721721 )}
722722 onConfirm={onSharePost}
723723 confirmButtonCta={_(msg`Share anyway`)}
+1-1
src/view/com/util/post-ctrls/PostCtrls.tsx
···366366 control={loggedOutWarningPromptControl}
367367 title={_(msg`Note about sharing`)}
368368 description={_(
369369- msg`This post is only visible to logged-in users. It won't be visible to people who aren't logged in.`,
369369+ msg`This post is only visible to logged-in users. It won't be visible to people who aren't signed in.`,
370370 )}
371371 onConfirm={onShare}
372372 confirmButtonCta={_(msg`Share anyway`)}