Bluesky app fork with some witchin' additions ๐Ÿ’ซ witchsky.app
bluesky fork client

feat: now optionally call posts skeets #49

the strings that change post to skeet have been moved to a new locale "en-skeet" that is accessible by setting the language to English and ticking the "Call posts skeets" checkbox. instead of directly changing strings, they are now changed in .po files. i may have missed a few strings that were there previously, i'm not sure.

This does change the default behavior to call them posts instead. I just felt like changing the default en-us locale would be problematic

Labels

None yet.

assignee

None yet.

Participants 4
AT URI
at://did:plc:wl4wyug27klcee5peb3xkeut/sh.tangled.repo.pull/3md4hxxsty422
+14602 -1980
Diff #0
+1
lingui.config.js
··· 10 10 'de', 11 11 'el', 12 12 'en-GB', 13 + 'en-skeet', 13 14 'eo', 14 15 'es', 15 16 'eu',
+10 -10
src/Navigation.tsx
··· 218 218 name="ModerationInteractionSettings" 219 219 getComponent={() => ModerationInteractionSettings} 220 220 options={{ 221 - title: title(msg`Skeet Interaction Settings`), 221 + title: title(msg`Post Interaction Settings`), 222 222 requireAuth: true, 223 223 }} 224 224 /> ··· 277 277 name="ProfileSearch" 278 278 getComponent={() => ProfileSearchScreen} 279 279 options={({route}) => ({ 280 - title: title(msg`Search @${route.params.name}'s skeets`), 280 + title: title(msg`Search @${route.params.name}'s posts`), 281 281 })} 282 282 /> 283 283 <Stack.Screen 284 284 name="PostThread" 285 285 getComponent={() => PostThreadScreen} 286 286 options={({route}) => ({ 287 - title: title(msg`Skeet by @${route.params.name}`), 287 + title: title(msg`Post by @${route.params.name}`), 288 288 })} 289 289 /> 290 290 <Stack.Screen 291 291 name="PostLikedBy" 292 292 getComponent={() => PostLikedByScreen} 293 293 options={({route}) => ({ 294 - title: title(msg`Skeet by @${route.params.name}`), 294 + title: title(msg`Post by @${route.params.name}`), 295 295 })} 296 296 /> 297 297 <Stack.Screen 298 298 name="PostRepostedBy" 299 299 getComponent={() => PostRepostedByScreen} 300 300 options={({route}) => ({ 301 - title: title(msg`Skeet by @${route.params.name}`), 301 + title: title(msg`Post by @${route.params.name}`), 302 302 })} 303 303 /> 304 304 <Stack.Screen 305 305 name="PostQuotes" 306 306 getComponent={() => PostQuotesScreen} 307 307 options={({route}) => ({ 308 - title: title(msg`Skeet by @${route.params.name}`), 308 + title: title(msg`Post by @${route.params.name}`), 309 309 })} 310 310 /> 311 311 <Stack.Screen ··· 496 496 name="RepostNotificationSettings" 497 497 getComponent={() => RepostNotificationSettingsScreen} 498 498 options={{ 499 - title: title(msg`Reskeet notifications`), 499 + title: title(msg`Repost notifications`), 500 500 requireAuth: true, 501 501 }} 502 502 /> ··· 512 512 name="LikesOnRepostsNotificationSettings" 513 513 getComponent={() => LikesOnRepostsNotificationSettingsScreen} 514 514 options={{ 515 - title: title(msg`Likes of your reskeets notifications`), 515 + title: title(msg`Likes of your reposts notifications`), 516 516 requireAuth: true, 517 517 }} 518 518 /> ··· 520 520 name="RepostsOnRepostsNotificationSettings" 521 521 getComponent={() => RepostsOnRepostsNotificationSettingsScreen} 522 522 options={{ 523 - title: title(msg`Reskeets of your reskeets notifications`), 523 + title: title(msg`Reposts of your reposts notifications`), 524 524 requireAuth: true, 525 525 }} 526 526 /> ··· 644 644 name="Bookmarks" 645 645 getComponent={() => BookmarksScreen} 646 646 options={{ 647 - title: title(msg`Saved Skeets`), 647 + title: title(msg`Saved Posts`), 648 648 requireAuth: true, 649 649 }} 650 650 />
+2 -2
src/components/Post/PostRepliedTo.tsx
··· 25 25 26 26 let label 27 27 if (isParentBlocked) { 28 - label = <Trans context="description">Replied to a blocked skeet</Trans> 28 + label = <Trans context="description">Replied to a blocked post</Trans> 29 29 } else if (isParentNotFound) { 30 - label = <Trans context="description">Replied to a skeet</Trans> 30 + label = <Trans context="description">Replied to a post</Trans> 31 31 } else if (parentAuthor) { 32 32 const did = 33 33 typeof parentAuthor === 'string' ? parentAuthor : parentAuthor.did
+4 -4
src/components/PostControls/BookmarkButton.tsx
··· 63 63 <toast.Outer> 64 64 <toast.Icon /> 65 65 <toast.Text> 66 - <Trans>Skeet saved</Trans> 66 + <Trans>Post saved</Trans> 67 67 </toast.Text> 68 68 {!disableUndo && ( 69 69 <toast.Action ··· 103 103 <toast.Outer> 104 104 <toast.Icon icon={TrashIcon} /> 105 105 <toast.Text> 106 - <Trans>Removed from saved skeets</Trans> 106 + <Trans>Removed from saved posts</Trans> 107 107 </toast.Text> 108 108 {!disableUndo && ( 109 109 <toast.Action ··· 137 137 big={big} 138 138 label={ 139 139 isBookmarked 140 - ? _(msg`Remove from saved skeets`) 141 - : _(msg`Add to saved skeets`) 140 + ? _(msg`Remove from saved posts`) 141 + : _(msg`Add to saved posts`) 142 142 } 143 143 onPress={onHandlePress} 144 144 hitSlop={hitSlop}>
+20 -20
src/components/PostControls/PostMenu/PostMenuItems.tsx
··· 204 204 const onDeletePost = () => { 205 205 deletePostMutate({uri: postUri}).then( 206 206 () => { 207 - Toast.show(_(msg({message: 'Skeet deleted', context: 'toast'}))) 207 + Toast.show(_(msg({message: 'Post deleted', context: 'toast'}))) 208 208 209 209 const route = getCurrentRoute(navigation.getState()) 210 210 if (route.name === 'PostThread') { ··· 224 224 }, 225 225 e => { 226 226 logger.error('Failed to delete post', {message: e}) 227 - Toast.show(_(msg`Failed to delete skeet, please try again`), 'xmark') 227 + Toast.show(_(msg`Failed to delete post, please try again`), 'xmark') 228 228 }, 229 229 ) 230 230 } ··· 506 506 }) 507 507 Toast.show( 508 508 isDetach 509 - ? _(msg`Quote skeet was successfully detached`) 510 - : _(msg`Quote skeet was re-attached`), 509 + ? _(msg`Quote post was successfully detached`) 510 + : _(msg`Quote post was re-attached`), 511 511 ) 512 512 } catch (e: any) { 513 513 Toast.show( ··· 698 698 <> 699 699 <Prompt.Basic 700 700 control={redraftPromptControl} 701 - title={_(msg`Redraft this skeet?`)} 701 + title={_(msg`Redraft this post?`)} 702 702 description={_( 703 - msg`This will delete the original skeet and open the composer with its content.`, 703 + msg`This will delete the original post and open the composer with its content.`, 704 704 )} 705 705 onConfirm={onConfirmRedraft} 706 706 confirmButtonCta={_(msg`Redraft`)} ··· 786 786 testID="postDropdownCopyTextBtn" 787 787 label={_(msg`Copy post text`)} 788 788 onPress={onCopyPostText}> 789 - <Menu.ItemText>{_(msg`Copy skeet text`)}</Menu.ItemText> 789 + <Menu.ItemText>{_(msg`Copy post text`)}</Menu.ItemText> 790 790 <Menu.ItemIcon icon={ClipboardIcon} position="right" /> 791 791 </Menu.Item> 792 792 </> 793 793 ) : ( 794 794 <Menu.Item 795 795 testID="postDropdownSignInBtn" 796 - label={_(msg`Sign in to view skeet`)} 796 + label={_(msg`Sign in to view post`)} 797 797 onPress={onSignIn}> 798 - <Menu.ItemText>{_(msg`Sign in to view skeet`)}</Menu.ItemText> 798 + <Menu.ItemText>{_(msg`Sign in to view post`)}</Menu.ItemText> 799 799 <Menu.ItemIcon icon={Eye} position="right" /> 800 800 </Menu.Item> 801 801 )} ··· 878 878 label={ 879 879 isReply 880 880 ? _(msg`Hide reply for me`) 881 - : _(msg`Hide skeet for me`) 881 + : _(msg`Hide post for me`) 882 882 } 883 883 onPress={() => hidePromptControl.open()}> 884 884 <Menu.ItemText> 885 885 {isReply 886 886 ? _(msg`Hide reply for me`) 887 - : _(msg`Hide skeet for me`)} 887 + : _(msg`Hide post for me`)} 888 888 </Menu.ItemText> 889 889 <Menu.ItemIcon icon={EyeSlash} position="right" /> 890 890 </Menu.Item> ··· 986 986 987 987 <Menu.Item 988 988 testID="postDropdownReportBtn" 989 - label={_(msg`Report skeet`)} 989 + label={_(msg`Report post`)} 990 990 onPress={() => reportDialogControl.open()}> 991 - <Menu.ItemText>{_(msg`Report skeet`)}</Menu.ItemText> 991 + <Menu.ItemText>{_(msg`Report post`)}</Menu.ItemText> 992 992 <Menu.ItemIcon icon={Warning} position="right" /> 993 993 </Menu.Item> 994 994 </> ··· 1019 1019 testID="postDropdownDeleteBtn" 1020 1020 label={_(msg`Delete post`)} 1021 1021 onPress={() => deletePromptControl.open()}> 1022 - <Menu.ItemText>{_(msg`Delete skeet`)}</Menu.ItemText> 1022 + <Menu.ItemText>{_(msg`Delete post`)}</Menu.ItemText> 1023 1023 <Menu.ItemIcon icon={Trash} position="right" /> 1024 1024 </Menu.Item> 1025 1025 </> ··· 1031 1031 1032 1032 <Prompt.Basic 1033 1033 control={deletePromptControl} 1034 - title={_(msg`Delete this skeet?`)} 1034 + title={_(msg`Delete this post?`)} 1035 1035 description={_( 1036 - msg`If you remove this skeet, you won't be able to recover it.`, 1036 + msg`If you remove this post, you won't be able to recover it.`, 1037 1037 )} 1038 1038 onConfirm={onDeletePost} 1039 1039 confirmButtonCta={_(msg`Delete`)} ··· 1042 1042 1043 1043 <Prompt.Basic 1044 1044 control={hidePromptControl} 1045 - title={isReply ? _(msg`Hide this reply?`) : _(msg`Hide this skeet?`)} 1045 + title={isReply ? _(msg`Hide this reply?`) : _(msg`Hide this post?`)} 1046 1046 description={_( 1047 - msg`This skeet will be hidden from feeds and threads. This cannot be undone.`, 1047 + msg`This post will be hidden from feeds and threads. This cannot be undone.`, 1048 1048 )} 1049 1049 onConfirm={onHidePost} 1050 1050 confirmButtonCta={_(msg`Hide`)} ··· 1067 1067 1068 1068 <Prompt.Basic 1069 1069 control={quotePostDetachConfirmControl} 1070 - title={_(msg`Detach quote skeet?`)} 1070 + title={_(msg`Detach quote post?`)} 1071 1071 description={_( 1072 - msg`This will remove your skeet from this quote skeet for all users, and replace it with a placeholder.`, 1072 + msg`This will remove your post from this quote post for all users, and replace it with a placeholder.`, 1073 1073 )} 1074 1074 onConfirm={onToggleQuotePostAttachment} 1075 1075 confirmButtonCta={_(msg`Yes, detach`)}
+1 -1
src/components/PostControls/PostMenu/index.tsx
··· 63 63 return ( 64 64 <EventStopper onKeyDown={false}> 65 65 <Menu.Root control={lazyMenuControl}> 66 - <Menu.Trigger label={_(msg`Open skeet options menu`)}> 66 + <Menu.Trigger label={_(msg`Open post options menu`)}> 67 67 {({props}) => { 68 68 return ( 69 69 <PostControlButton
+10 -10
src/components/PostControls/RepostButton.tsx
··· 142 142 const onPressClose = useCallback(() => control.close(), [control]) 143 143 144 144 return ( 145 - <Dialog.ScrollableInner label={_(msg`Reskeet or quote skeet`)}> 145 + <Dialog.ScrollableInner label={_(msg`Repost or quote post`)}> 146 146 <View style={a.gap_xl}> 147 147 <View style={a.gap_xs}> 148 148 <Button 149 149 style={[a.justify_start, a.px_md, a.gap_sm]} 150 150 label={ 151 151 isReposted 152 - ? _(msg`Remove reskeet`) 153 - : _(msg({message: `Reskeet`, context: 'action'})) 152 + ? _(msg`Remove repost`) 153 + : _(msg({message: `Repost`, context: 'action'})) 154 154 } 155 155 onPress={onPressRepost} 156 156 size="large" ··· 159 159 <RepostIcon size="lg" fill={t.palette.primary_500} /> 160 160 <Text style={[a.font_semi_bold, a.text_xl]}> 161 161 {isReposted ? ( 162 - <Trans>Remove reskeet</Trans> 162 + <Trans>Remove repost</Trans> 163 163 ) : ( 164 - <Trans context="action">Reskeet</Trans> 164 + <Trans context="action">Repost</Trans> 165 165 )} 166 166 </Text> 167 167 </Button> ··· 171 171 style={[a.justify_start, a.px_md, a.gap_sm]} 172 172 label={ 173 173 embeddingDisabled 174 - ? _(msg`Quote skeets disabled`) 175 - : _(msg`Quote skeet`) 174 + ? _(msg`Quote posts disabled`) 175 + : _(msg`Quote post`) 176 176 } 177 177 onPress={onPressQuote} 178 178 size="large" ··· 193 193 embeddingDisabled && t.atoms.text_contrast_low, 194 194 ]}> 195 195 {embeddingDisabled ? ( 196 - <Trans>Quote skeets disabled</Trans> 196 + <Trans>Quote posts disabled</Trans> 197 197 ) : ( 198 - <Trans>Quote skeet</Trans> 198 + <Trans>Quote post</Trans> 199 199 )} 200 200 </Text> 201 201 </Button> 202 202 </View> 203 203 <Button 204 - label={_(msg`Cancel quote skeet`)} 204 + label={_(msg`Cancel quote post`)} 205 205 onPress={onPressClose} 206 206 size="large" 207 207 color="secondary">
+9 -9
src/components/PostControls/RepostButton.web.tsx
··· 65 65 <Menu.Item 66 66 label={ 67 67 isReposted 68 - ? _(msg`Undo reskeet`) 69 - : _(msg({message: `Reskeet`, context: `action`})) 68 + ? _(msg`Undo repost`) 69 + : _(msg({message: `Repost`, context: `action`})) 70 70 } 71 71 testID="repostDropdownRepostBtn" 72 72 onPress={onRepost}> 73 73 <Menu.ItemText> 74 74 {isReposted 75 - ? _(msg`Undo reskeet`) 76 - : _(msg({message: `Reskeet`, context: `action`}))} 75 + ? _(msg`Undo repost`) 76 + : _(msg({message: `Repost`, context: `action`}))} 77 77 </Menu.ItemText> 78 78 <Menu.ItemIcon icon={Repost} position="right" /> 79 79 </Menu.Item> ··· 81 81 disabled={embeddingDisabled} 82 82 label={ 83 83 embeddingDisabled 84 - ? _(msg`Quote skeets disabled`) 85 - : _(msg`Quote skeet`) 84 + ? _(msg`Quote posts disabled`) 85 + : _(msg`Quote post`) 86 86 } 87 87 testID="repostDropdownQuoteBtn" 88 88 onPress={onQuote}> 89 89 <Menu.ItemText> 90 90 {embeddingDisabled 91 - ? _(msg`Quote skeets disabled`) 92 - : _(msg`Quote skeet`)} 91 + ? _(msg`Quote posts disabled`) 92 + : _(msg`Quote post`)} 93 93 </Menu.ItemText> 94 94 <Menu.ItemIcon icon={Quote} position="right" /> 95 95 </Menu.Item> ··· 101 101 onPress={() => requireAuth(() => {})} 102 102 active={isReposted} 103 103 activeColor={t.palette.positive_500} 104 - label={_(msg`Reskeet or quote skeet`)} 104 + label={_(msg`Repost or quote post`)} 105 105 big={big}> 106 106 <PostControlButtonIcon icon={Repost} /> 107 107 {typeof repostCount !== 'undefined' && repostCount > 0 && (
+1 -1
src/components/PostControls/ShareMenu/RecentChats.tsx
··· 119 119 return ( 120 120 <Button 121 121 onPress={onPress} 122 - label={_(msg`Send skeet to ${name}`)} 122 + label={_(msg`Send post to ${name}`)} 123 123 style={[ 124 124 a.flex_col, 125 125 {width: WIDTH},
+5 -5
src/components/PostControls/ShareMenu/ShareMenuItems.tsx
··· 158 158 label={_(msg`Open original post`)} 159 159 onPress={onOpenOriginalPost}> 160 160 <Menu.ItemText> 161 - <Trans>Open original skeet</Trans> 161 + <Trans>Open original post</Trans> 162 162 </Menu.ItemText> 163 163 <Menu.ItemIcon icon={ExternalIcon} position="right" /> 164 164 </Menu.Item> ··· 169 169 label={_(msg`Open post in PDSls`)} 170 170 onPress={onOpenPostInPdsls}> 171 171 <Menu.ItemText> 172 - <Trans>Open skeet in PDSls</Trans> 172 + <Trans>Open post in PDSls</Trans> 173 173 </Menu.ItemText> 174 174 <Menu.ItemIcon icon={ExternalIcon} position="right" /> 175 175 </Menu.Item> ··· 202 202 label={_(msg`Copy link to post`)} 203 203 onPress={onCopyLink}> 204 204 <Menu.ItemText> 205 - <Trans>Copy link to skeet</Trans> 205 + <Trans>Copy link to post</Trans> 206 206 </Menu.ItemText> 207 207 <Menu.ItemIcon icon={ChainLinkIcon} position="right" /> 208 208 </Menu.Item> ··· 224 224 <Admonition 225 225 type="warning" 226 226 style={[a.flex_1, a.border_0, a.p_0, a.bg_transparent]}> 227 - <Trans>This skeet is only visible to logged-in users.</Trans> 227 + <Trans>This post is only visible to logged-in users.</Trans> 228 228 </Admonition> 229 229 </Menu.ContainerItem> 230 230 </Menu.Group> ··· 237 237 label={_(msg`Share post at:// URI`)} 238 238 onPress={onShareATURI}> 239 239 <Menu.ItemText> 240 - <Trans>Share skeet at:// URI</Trans> 240 + <Trans>Share post at:// URI</Trans> 241 241 </Menu.ItemText> 242 242 <Menu.ItemIcon icon={ClipboardIcon} position="right" /> 243 243 </Menu.Item>
+6 -8
src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx
··· 112 112 label={_(msg`Copy link to post`)} 113 113 onPress={onCopyLink}> 114 114 <Menu.ItemText> 115 - <Trans>Copy link to skeet</Trans> 115 + <Trans>Copy link to post</Trans> 116 116 </Menu.ItemText> 117 117 <Menu.ItemIcon icon={ChainLinkIcon} position="right" /> 118 118 </Menu.Item> ··· 139 139 label={_(msg`Open original post`)} 140 140 onPress={onOpenOriginalPost}> 141 141 <Menu.ItemText> 142 - <Trans>Open original skeet</Trans> 142 + <Trans>Open original post</Trans> 143 143 </Menu.ItemText> 144 144 <Menu.ItemIcon icon={ExternalIcon} position="right" /> 145 145 </Menu.Item> ··· 151 151 label={_(msg`Open post in PDSls`)} 152 152 onPress={onOpenPostInPdsls}> 153 153 <Menu.ItemText> 154 - <Trans>Open skeet in PDSls</Trans> 154 + <Trans>Open post in PDSls</Trans> 155 155 </Menu.ItemText> 156 156 <Menu.ItemIcon icon={ExternalIcon} position="right" /> 157 157 </Menu.Item> ··· 180 180 logger.metric('share:press:embed', {}, {statsig: true}) 181 181 embedPostControl.open() 182 182 }}> 183 - <Menu.ItemText>{_(msg`Embed skeet`)}</Menu.ItemText> 183 + <Menu.ItemText>{_(msg`Embed post`)}</Menu.ItemText> 184 184 <Menu.ItemIcon icon={CodeBracketsIcon} position="right" /> 185 185 </Menu.Item> 186 186 )} ··· 190 190 {hasSession && <Menu.Divider />} 191 191 {copyLinkItem} 192 192 <Menu.LabelText style={{maxWidth: 220}}> 193 - <Trans> 194 - Note: This skeet is only visible to logged-in users. 195 - </Trans> 193 + <Trans>Note: This post is only visible to logged-in users.</Trans> 196 194 </Menu.LabelText> 197 195 </> 198 196 )} ··· 205 203 label={_(msg`Copy post at:// URI`)} 206 204 onPress={onShareATURI}> 207 205 <Menu.ItemText> 208 - <Trans>Copy skeet at:// URI</Trans> 206 + <Trans>Copy post at:// URI</Trans> 209 207 </Menu.ItemText> 210 208 <Menu.ItemIcon icon={ClipboardIcon} position="right" /> 211 209 </Menu.Item>
+1 -1
src/components/ProgressGuide/List.tsx
··· 93 93 <ProgressGuideTask 94 94 current={guide.numLikes + 1} 95 95 total={10 + 1} 96 - title={_(msg`Like 10 skeets`)} 96 + title={_(msg`Like 10 posts`)} 97 97 subtitle={_(msg`Teach our algorithm what you like`)} 98 98 /> 99 99 <ProgressGuideTask
+2 -2
src/components/TrendingTopics.tsx
··· 180 180 if (link.startsWith('/search')) { 181 181 return { 182 182 type: 'topic', 183 - label: _(msg`Browse skeets about ${displayName}`), 183 + label: _(msg`Browse posts about ${displayName}`), 184 184 displayName, 185 185 uri: undefined, 186 186 url: link, ··· 188 188 } else if (link.startsWith('/hashtag')) { 189 189 return { 190 190 type: 'tag', 191 - label: _(msg`Browse skeets tagged with ${displayName}`), 191 + label: _(msg`Browse posts tagged with ${displayName}`), 192 192 displayName, 193 193 // displayName: displayName.replace(/^#/, ''), 194 194 uri: undefined,
+5 -5
src/components/WhoCanReply.tsx
··· 221 221 style={web({maxWidth: 400})}> 222 222 <View style={[a.gap_sm]}> 223 223 <Text style={[a.font_semi_bold, a.text_xl, a.pb_sm]}> 224 - <Trans>Who can interact with this skeet?</Trans> 224 + <Trans>Who can interact with this post?</Trans> 225 225 </Text> 226 226 <Rules 227 227 post={post} ··· 270 270 ]}> 271 271 {settings.length === 0 ? ( 272 272 <Trans> 273 - This skeet has an unknown type of threadgate on it. Your app may be 273 + This post has an unknown type of threadgate on it. Your app may be 274 274 out of date. 275 275 </Trans> 276 276 ) : settings[0].type === 'everybody' ? ( 277 - <Trans>Everybody can reply to this skeet.</Trans> 277 + <Trans>Everybody can reply to this post.</Trans> 278 278 ) : settings[0].type === 'nobody' ? ( 279 - <Trans>Replies to this skeet are disabled.</Trans> 279 + <Trans>Replies to this post are disabled.</Trans> 280 280 ) : ( 281 281 <Trans> 282 282 Only{' '} ··· 298 298 a.flex_wrap, 299 299 t.atoms.text_contrast_medium, 300 300 ]}> 301 - <Trans>No one but the author can quote this skeet.</Trans> 301 + <Trans>No one but the author can quote this post.</Trans> 302 302 </Text> 303 303 )} 304 304 </>
+5 -5
src/components/activity-notifications/SubscribeProfileButton.tsx
··· 57 57 const wrappedOnPress = requireEmailVerification(onPress, { 58 58 instructions: [ 59 59 <Trans key="message"> 60 - Before you can get notifications for {name}'s skeets, you must first 60 + Before you can get notifications for {name}'s posts, you must first 61 61 verify your email. 62 62 </Trans>, 63 63 ], ··· 84 84 accessibilityRole="button" 85 85 testID="dmBtn" 86 86 size="small" 87 - color={tooltipVisible ? 'primary_subtle' : 'secondary'} 88 - shape={enableSquareButtons ? 'square' : 'round'} 89 - label={_(msg`Get notified when ${name} skeets`)} 87 + color="secondary" 88 + shape="round" 89 + label={_(msg`Get notified when ${name} posts`)} 90 90 onPress={wrappedOnPress}> 91 91 <ButtonIcon icon={Icon} size="md" /> 92 92 </Button> 93 93 </Tooltip.Target> 94 94 <Tooltip.TextBubble> 95 95 <Text> 96 - <Trans>Get notified about new skeets</Trans> 96 + <Trans>Get notified about new posts</Trans> 97 97 </Text> 98 98 </Tooltip.TextBubble> 99 99 </Tooltip.Outer>
+3 -3
src/components/activity-notifications/SubscribeProfileDialog.tsx
··· 216 216 return ( 217 217 <Dialog.ScrollableInner 218 218 style={web({maxWidth: 400})} 219 - label={_(msg`Get notified of new skeets from ${name}`)}> 219 + label={_(msg`Get notified of new posts from ${name}`)}> 220 220 <View style={[a.gap_lg]}> 221 221 <View style={[a.gap_xs]}> 222 222 <Text style={[a.font_bold, a.text_2xl]}> ··· 247 247 onChange={onChange}> 248 248 <View style={[a.gap_sm]}> 249 249 <Toggle.Item 250 - label={_(msg`Skeets`)} 250 + label={_(msg`Posts`)} 251 251 name="post" 252 252 style={[ 253 253 a.flex_1, ··· 259 259 ]}> 260 260 <Toggle.LabelText 261 261 style={[t.atoms.text, a.font_normal, a.text_md, a.flex_1]}> 262 - <Trans>Skeets</Trans> 262 + <Trans>Posts</Trans> 263 263 </Toggle.LabelText> 264 264 <Toggle.Switch /> 265 265 </Toggle.Item>
+2 -2
src/components/dialogs/Embed.tsx
··· 105 105 <View style={[a.gap_lg]}> 106 106 <View style={[a.gap_sm]}> 107 107 <Text style={[a.text_2xl, a.font_bold]}> 108 - <Trans>Embed skeet</Trans> 108 + <Trans>Embed post</Trans> 109 109 </Text> 110 110 <Text 111 111 style={[a.text_md, t.atoms.text_contrast_medium, a.leading_normal]}> 112 112 <Trans> 113 - Embed this skeet in your website. Simply copy the following snippet 113 + Embed this post in your website. Simply copy the following snippet 114 114 and paste it into the HTML code of your website. 115 115 </Trans> 116 116 </Text>
+4 -4
src/components/dialogs/MutedWords.tsx
··· 119 119 </Text> 120 120 <Text style={[a.pb_lg, a.leading_snug, t.atoms.text_contrast_medium]}> 121 121 <Trans> 122 - Skeets can be muted based on their text, their tags, or both. We 123 - recommend avoiding common words that appear in many skeets, since it 124 - can result in no skeets being shown. 122 + Posts can be muted based on their text, their tags, or both. We 123 + recommend avoiding common words that appear in many posts, since it 124 + can result in no posts being shown. 125 125 </Trans> 126 126 </Text> 127 127 ··· 261 261 262 262 <View style={[a.flex_row, a.align_center, a.gap_sm, a.flex_wrap]}> 263 263 <Toggle.Item 264 - label={_(msg`Mute this word in skeet text and tags`)} 264 + label={_(msg`Mute this word in post text and tags`)} 265 265 name="content" 266 266 style={[a.flex_1]}> 267 267 <TargetToggle>
+4 -4
src/components/dialogs/PostInteractionSettingsDialog.tsx
··· 257 257 258 258 return ( 259 259 <Dialog.ScrollableInner 260 - label={_(msg`Edit skeet interaction settings`)} 260 + label={_(msg`Edit post interaction settings`)} 261 261 style={[web({maxWidth: 400}), a.w_full]}> 262 262 {isLoading ? ( 263 263 <View ··· 270 270 ]}> 271 271 <Loader size="xl" /> 272 272 <Text style={[a.italic, a.text_center]}> 273 - <Trans>Loading skeet interaction settings...</Trans> 273 + <Trans>Loading post interaction settings...</Trans> 274 274 </Text> 275 275 </View> 276 276 ) : ( ··· 627 627 {({selected}) => ( 628 628 <Toggle.Panel active={selected}> 629 629 <Toggle.PanelText icon={QuoteIcon}> 630 - <Trans>Allow quote skeets</Trans> 630 + <Trans>Allow quote posts</Trans> 631 631 </Toggle.PanelText> 632 632 <Toggle.Switch /> 633 633 </Toggle.Panel> ··· 676 676 return ( 677 677 <View style={[a.pb_lg]}> 678 678 <Text style={[a.text_2xl, a.font_bold]}> 679 - <Trans>Skeet interaction settings</Trans> 679 + <Trans>Post interaction settings</Trans> 680 680 </Text> 681 681 </View> 682 682 )
+2 -2
src/components/dialogs/lists/CreateOrEditListDialog.tsx
··· 354 354 : _(msg`Create moderation list`) 355 355 356 356 const displayNamePlaceholder = isCurateList 357 - ? _(msg`e.g. Great Skeeters`) 357 + ? _(msg`e.g. Great Posters`) 358 358 : _(msg`e.g. Spammers`) 359 359 360 360 const descriptionPlaceholder = isCurateList 361 - ? _(msg`e.g. The skeeters who never miss.`) 361 + ? _(msg`e.g. The posters who never miss.`) 362 362 : _(msg`e.g. Users that repeatedly reply with ads.`) 363 363 364 364 return (
+3 -3
src/components/dialogs/nuxs/BookmarksAnnouncement.tsx
··· 34 34 <Dialog.Handle /> 35 35 36 36 <Dialog.ScrollableInner 37 - label={_(msg`Introducing saved skeets AKA bookmarks`)} 37 + label={_(msg`Introducing saved posts AKA bookmarks`)} 38 38 style={[web({maxWidth: 440})]} 39 39 contentContainerStyle={[ 40 40 { ··· 140 140 maxWidth: 300, 141 141 }, 142 142 ]}> 143 - <Trans>Saved Skeets</Trans> 143 + <Trans>Saved Posts</Trans> 144 144 </Text> 145 145 <Text 146 146 style={[ ··· 152 152 }, 153 153 ]}> 154 154 <Trans> 155 - Finally! Keep track of skeets that matter to you. Save them to 155 + Finally! Keep track of posts that matter to you. Save them to 156 156 revisit anytime. 157 157 </Trans> 158 158 </Text>
+3 -3
src/components/dms/ChatEmptyPill.tsx
··· 33 33 34 34 const prompts = React.useMemo(() => { 35 35 return [ 36 - _(msg`Say hi!`), 36 + _(msg`Say hello!`), 37 37 _(msg`Share your favorite feed!`), 38 - _(msg`Say something funny!`), 38 + _(msg`Tell a joke!`), 39 39 _(msg`Share a fun fact!`), 40 40 _(msg`Share a cool story!`), 41 41 _(msg`Send a neat website!`), 42 - _(msg`Clip ๐Ÿด clop ๐Ÿด #horsefacts`), 42 + _(msg`Clip ๐Ÿด clop ๐Ÿด`), 43 43 ] 44 44 }, [_]) 45 45
+1 -1
src/components/dms/dialogs/ShareViaChatDialog.tsx
··· 59 59 60 60 return ( 61 61 <SearchablePeopleList 62 - title={_(msg`Send skeet to...`)} 62 + title={_(msg`Send post to...`)} 63 63 onSelectChat={onCreateChat} 64 64 showRecentConvos 65 65 sortByMessageDeclaration
+1
src/components/hooks/dates.ts
··· 55 55 */ 56 56 const locales: Record<AppLanguage, Locale | undefined> = { 57 57 en: undefined, 58 + ['en-skeet']: undefined, 58 59 an: undefined, 59 60 ast: undefined, 60 61 ca,
+4 -4
src/components/moderation/ModerationDetailsDialog.tsx
··· 106 106 description = _(msg`You have muted this account.`) 107 107 } 108 108 } else if (modcause.type === 'mute-word') { 109 - name = _(msg`Skeet Hidden by Muted Word`) 110 - description = _(msg`You've chosen to hide a word or tag within this skeet.`) 109 + name = _(msg`Post Hidden by Muted Word`) 110 + description = _(msg`You've chosen to hide a word or tag within this post.`) 111 111 } else if (modcause.type === 'hidden') { 112 - name = _(msg`Skeet Hidden by You`) 113 - description = _(msg`You have hidden this skeet.`) 112 + name = _(msg`Post Hidden by You`) 113 + description = _(msg`You have hidden this post.`) 114 114 } else if (modcause.type === 'reply-hidden') { 115 115 const isYou = currentAccount?.did === modcause.source.did 116 116 name = isYou
+2 -2
src/components/moderation/ReportDialog/copy.ts
··· 22 22 } 23 23 case 'post': { 24 24 return { 25 - title: _(msg`Report this skeet`), 26 - subtitle: _(msg`Why should this skeet be reviewed?`), 25 + title: _(msg`Report this post`), 26 + subtitle: _(msg`Why should this post be reviewed?`), 27 27 } 28 28 } 29 29 case 'list': {
+1 -1
src/lib/api/index.ts
··· 187 187 }) 188 188 if (isNetworkError(e)) { 189 189 throw new Error( 190 - t`Skeet failed to upload. Please check your Internet connection and try again.`, 190 + t`Post failed to upload. Please check your Internet connection and try again.`, 191 191 ) 192 192 } else { 193 193 throw e
+3 -3
src/lib/hooks/useNotificationHandler.ts
··· 130 130 Notifications.setNotificationChannelAsync( 131 131 'repost' satisfies NotificationReason, 132 132 { 133 - name: _(msg`Reskeets`), 133 + name: _(msg`Reposts`), 134 134 importance: Notifications.AndroidImportance.HIGH, 135 135 }, 136 136 ) ··· 165 165 Notifications.setNotificationChannelAsync( 166 166 'like-via-repost' satisfies NotificationReason, 167 167 { 168 - name: _(msg`Likes of your reskeets`), 168 + name: _(msg`Likes of your reposts`), 169 169 importance: Notifications.AndroidImportance.HIGH, 170 170 }, 171 171 ) 172 172 Notifications.setNotificationChannelAsync( 173 173 'repost-via-repost' satisfies NotificationReason, 174 174 { 175 - name: _(msg`Reskeets of your reskeets`), 175 + name: _(msg`Reposts of your reposts`), 176 176 importance: Notifications.AndroidImportance.HIGH, 177 177 }, 178 178 )
+4 -4
src/lib/moderation/useModerationCauseDescription.ts
··· 104 104 if (cause.type === 'mute-word') { 105 105 return { 106 106 icon: EyeSlash, 107 - name: _(msg`Skeet Hidden by Muted Word`), 107 + name: _(msg`Post Hidden by Muted Word`), 108 108 description: _( 109 - msg`You've chosen to hide a word or tag within this skeet.`, 109 + msg`You've chosen to hide a word or tag within this post.`, 110 110 ), 111 111 } 112 112 } 113 113 if (cause.type === 'hidden') { 114 114 return { 115 115 icon: EyeSlash, 116 - name: _(msg`Skeet Hidden by You`), 117 - description: _(msg`You have hidden this skeet.`), 116 + name: _(msg`Post Hidden by You`), 117 + description: _(msg`You have hidden this post`), 118 118 } 119 119 } 120 120 if (cause.type === 'reply-hidden') {
+2
src/locale/helpers.ts
··· 170 170 return AppLanguage.el 171 171 case 'en-GB': 172 172 return AppLanguage.en_GB 173 + case 'en-skeet': 174 + return AppLanguage.en_skeet 173 175 case 'eo': 174 176 return AppLanguage.eo 175 177 case 'es':
+10
src/locale/i18n.ts
··· 22 22 import {messages as messagesEl} from '#/locale/locales/el/messages' 23 23 import {messages as messagesEn} from '#/locale/locales/en/messages' 24 24 import {messages as messagesEn_GB} from '#/locale/locales/en-GB/messages' 25 + import {messages as messagesEn_skeet} from '#/locale/locales/en-skeet/messages' 25 26 import {messages as messagesEo} from '#/locale/locales/eo/messages' 26 27 import {messages as messagesEs} from '#/locale/locales/es/messages' 27 28 import {messages as messagesEu} from '#/locale/locales/eu/messages' ··· 121 122 import('@formatjs/intl-pluralrules/locale-data/el'), 122 123 import('@formatjs/intl-numberformat/locale-data/el'), 123 124 import('@formatjs/intl-displaynames/locale-data/el'), 125 + ]) 126 + break 127 + } 128 + case AppLanguage.en_skeet: { 129 + i18n.loadAndActivate({locale, messages: messagesEn_skeet}) 130 + await Promise.all([ 131 + import('@formatjs/intl-pluralrules/locale-data/en'), 132 + import('@formatjs/intl-numberformat/locale-data/en'), 133 + import('@formatjs/intl-displaynames/locale-data/en'), 124 134 ]) 125 135 break 126 136 }
+4
src/locale/i18n.web.ts
··· 44 44 mod = await import(`./locales/en-GB/messages`) 45 45 break 46 46 } 47 + case AppLanguage.en_skeet: { 48 + mod = await import(`./locales/en-skeet/messages`) 49 + break 50 + } 47 51 case AppLanguage.eo: { 48 52 mod = await import(`./locales/eo/messages`) 49 53 break
+2
src/locale/languages.ts
··· 6 6 7 7 export enum AppLanguage { 8 8 en = 'en', 9 + en_skeet = 'en-skeet', 9 10 an = 'an', 10 11 ast = 'ast', 11 12 ca = 'ca', ··· 55 56 56 57 export const APP_LANGUAGES: AppLanguageConfig[] = [ 57 58 {code2: AppLanguage.en, name: 'English'}, 59 + {code2: AppLanguage.en_skeet, name: 'English'}, // use Skeet instead of Post 58 60 {code2: AppLanguage.an, name: 'aragonรฉs โ€“ Aragonese'}, 59 61 {code2: AppLanguage.ast, name: 'asturianu โ€“ Asturian'}, 60 62 {code2: AppLanguage.ca, name: 'catalร  โ€“ Catalan'},
+2072 -1680
src/locale/locales/en/messages.po
··· 14 14 "Plural-Forms: \n" 15 15 16 16 #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. 17 - #: src/components/InterestTabs.tsx:330 17 + #: src/components/InterestTabs.tsx:334 18 18 msgid "\"{interestsDisplayName}\" category (active)" 19 19 msgstr "" 20 20 21 - #: src/screens/Messages/components/ChatListItem.tsx:162 21 + #: src/screens/Messages/components/ChatListItem.tsx:166 22 22 msgid "(contains embedded content)" 23 23 msgstr "" 24 24 ··· 30 30 msgid "{0, plural, one {# day} other {# days}}" 31 31 msgstr "" 32 32 33 - #: src/screens/Profile/ProfileFollowers.tsx:43 33 + #: src/screens/Profile/ProfileFollowers.tsx:48 34 34 msgid "{0, plural, one {# follower} other {# followers}}" 35 35 msgstr "" 36 36 37 - #: src/screens/Profile/ProfileFollows.tsx:43 37 + #: src/screens/Profile/ProfileFollows.tsx:50 38 38 msgid "{0, plural, one {# following} other {# following}}" 39 39 msgstr "" 40 40 ··· 54 54 msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content" 55 55 msgstr "" 56 56 57 - #: src/screens/Post/PostLikedBy.tsx:44 57 + #: src/screens/Post/PostLikedBy.tsx:54 58 58 msgid "{0, plural, one {# like} other {# likes}}" 59 59 msgstr "" 60 60 ··· 66 66 msgid "{0, plural, one {# month} other {# months}}" 67 67 msgstr "" 68 68 69 - #: src/screens/Post/PostQuotes.tsx:44 69 + #: src/screens/Post/PostQuotes.tsx:54 70 70 msgid "{0, plural, one {# quote} other {# quotes}}" 71 71 msgstr "" 72 72 73 - #: src/screens/Post/PostRepostedBy.tsx:44 73 + #: src/screens/Post/PostRepostedBy.tsx:54 74 74 msgid "{0, plural, one {# repost} other {# reposts}}" 75 75 msgstr "" 76 76 ··· 78 78 msgid "{0, plural, one {# second} other {# seconds}}" 79 79 msgstr "" 80 80 81 - #: src/view/shell/bottom-bar/BottomBar.tsx:225 82 - #: src/view/shell/bottom-bar/BottomBar.tsx:257 83 - #: src/view/shell/Drawer.tsx:498 81 + #: src/view/shell/bottom-bar/BottomBar.tsx:229 82 + #: src/view/shell/bottom-bar/BottomBar.tsx:261 83 + #: src/view/shell/Drawer.tsx:516 84 84 msgid "{0, plural, one {# unread item} other {# unread items}}" 85 85 msgstr "" 86 86 ··· 89 89 msgid "{0, plural, one {#mo} other {#mo}}" 90 90 msgstr "" 91 91 92 - #: src/components/ProfileHoverCard/index.web.tsx:445 93 - #: src/screens/Profile/Header/Metrics.tsx:22 92 + #: src/components/ProfileHoverCard/index.web.tsx:449 93 + #: src/screens/Profile/Header/Metrics.tsx:25 94 94 msgid "{0, plural, one {follower} other {followers}}" 95 95 msgstr "" 96 96 97 - #: src/components/ProfileHoverCard/index.web.tsx:449 98 - #: src/screens/Profile/Header/Metrics.tsx:26 97 + #: src/components/ProfileHoverCard/index.web.tsx:453 98 + #: src/screens/Profile/Header/Metrics.tsx:29 99 99 msgid "{0, plural, one {following} other {following}}" 100 100 msgstr "" 101 101 102 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:489 102 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:505 103 103 msgid "{0, plural, one {like} other {likes}}" 104 104 msgstr "" 105 105 106 - #: src/screens/Profile/Header/Metrics.tsx:58 106 + #: src/screens/Profile/Header/Metrics.tsx:66 107 107 msgid "{0, plural, one {post} other {posts}}" 108 108 msgstr "" 109 109 110 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 110 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:487 111 111 msgid "{0, plural, one {quote} other {quotes}}" 112 112 msgstr "" 113 113 114 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:455 114 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 115 + #: src/view/com/posts/PostFeedItemCarousel.tsx:66 115 116 msgid "{0, plural, one {repost} other {reposts}}" 116 117 msgstr "" 117 118 118 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:500 119 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:518 119 120 msgid "{0, plural, one {save} other {saves}}" 120 121 msgstr "" 121 122 122 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:82 123 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 123 124 msgid "{0, plural, other {{1} posts}}" 124 125 msgstr "" 125 126 126 127 #. Number of users (always at least 25) who have joined Bluesky using a specific starter pack 127 - #: src/screens/StarterPack/StarterPackScreen.tsx:492 128 + #: src/screens/StarterPack/StarterPackScreen.tsx:493 128 129 msgid "{0, plural, other {# people have}} used this starter pack!" 129 130 msgstr "" 130 131 131 - #: src/components/dialogs/StarterPackDialog.tsx:360 132 + #: src/components/dialogs/StarterPackDialog.tsx:363 132 133 msgid "{0, plural, other {+# more}}" 133 134 msgstr "" 134 135 ··· 142 143 msgstr "" 143 144 144 145 #. Pattern: {wordValue} in tags 145 - #: src/components/dialogs/MutedWords.tsx:481 146 + #: src/components/dialogs/MutedWords.tsx:484 146 147 msgid "{0} <0>in <1>tags</1></0>" 147 148 msgstr "" 148 149 149 150 #. Pattern: {wordValue} in text, tags 150 - #: src/components/dialogs/MutedWords.tsx:470 151 + #: src/components/dialogs/MutedWords.tsx:473 151 152 msgid "{0} <0>in <1>text & tags</1></0>" 152 153 msgstr "" 153 154 154 - #: src/screens/Profile/Header/Metrics.tsx:49 155 + #: src/screens/Profile/Header/Metrics.tsx:57 155 156 msgid "{0} following" 156 157 msgstr "" 157 158 158 - #: src/components/live/LiveStatusDialog.tsx:79 159 + #: src/components/live/LiveStatusDialog.tsx:90 159 160 msgid "{0} is live" 160 161 msgstr "" 161 162 ··· 167 168 msgid "{0} joined this week" 168 169 msgstr "" 169 170 170 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 171 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:205 171 172 msgid "{0} of {1}" 172 173 msgstr "" 173 174 ··· 180 181 msgid "{0} reacted {1}" 181 182 msgstr "" 182 183 183 - #: src/screens/Messages/components/ChatListItem.tsx:233 184 + #: src/screens/Messages/components/ChatListItem.tsx:237 184 185 msgid "{0} reacted {1} to {2}" 185 186 msgstr "" 186 187 ··· 192 193 msgid "{0}, a list by {1}" 193 194 msgstr "" 194 195 195 - #: src/view/com/util/UserAvatar.tsx:577 196 - #: src/view/com/util/UserAvatar.tsx:595 196 + #: src/view/com/util/UserAvatar.tsx:613 197 + #: src/view/com/util/UserAvatar.tsx:631 197 198 msgid "{0}'s avatar" 198 199 msgstr "" 199 200 ··· 225 226 msgid "{0}s" 226 227 msgstr "" 227 228 228 - #: src/view/shell/desktop/LeftNav.tsx:454 229 + #: src/view/shell/desktop/LeftNav.tsx:462 229 230 msgid "{count, plural, one {# unread item} other {# unread items}}" 230 231 msgstr "" 231 232 232 - #: src/screens/Profile/Header/EditProfileDialog.tsx:383 233 + #: src/screens/Profile/Header/EditProfileDialog.tsx:389 233 234 msgid "{DESCRIPTION_MAX_GRAPHEMES, plural, other {Description is too long. The maximum number of characters is #.}}" 234 235 msgstr "" 235 236 236 - #: src/screens/Profile/Header/EditProfileDialog.tsx:332 237 + #: src/screens/Profile/Header/EditProfileDialog.tsx:338 237 238 msgid "{DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Display name is too long. The maximum number of characters is #.}}" 238 239 msgstr "" 239 240 240 241 #: src/lib/generate-starterpack.ts:104 241 - #: src/screens/StarterPack/Wizard/index.tsx:201 242 + #: src/screens/StarterPack/Wizard/index.tsx:202 242 243 msgid "{displayName}'s Starter Pack" 243 244 msgstr "" 244 245 ··· 250 251 msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" 251 252 msgstr "" 252 253 253 - #: src/view/com/notifications/NotificationFeedItem.tsx:355 254 + #: src/view/com/notifications/NotificationFeedItem.tsx:357 254 255 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> followed you" 255 256 msgstr "" 256 257 257 - #: src/view/com/notifications/NotificationFeedItem.tsx:389 258 + #: src/view/com/notifications/NotificationFeedItem.tsx:391 258 259 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> liked your custom feed" 259 260 msgstr "" 260 261 261 - #: src/view/com/notifications/NotificationFeedItem.tsx:298 262 + #: src/view/com/notifications/NotificationFeedItem.tsx:300 262 263 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> liked your post" 263 264 msgstr "" 264 265 265 - #: src/view/com/notifications/NotificationFeedItem.tsx:494 266 + #: src/view/com/notifications/NotificationFeedItem.tsx:496 266 267 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> liked your repost" 267 268 msgstr "" 268 269 269 - #: src/view/com/notifications/NotificationFeedItem.tsx:467 270 + #: src/view/com/notifications/NotificationFeedItem.tsx:469 270 271 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> removed their verifications from your account" 271 272 msgstr "" 272 273 273 - #: src/view/com/notifications/NotificationFeedItem.tsx:322 274 + #: src/view/com/notifications/NotificationFeedItem.tsx:324 274 275 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> reposted your post" 275 276 msgstr "" 276 277 277 - #: src/view/com/notifications/NotificationFeedItem.tsx:518 278 + #: src/view/com/notifications/NotificationFeedItem.tsx:521 278 279 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> reposted your repost" 279 280 msgstr "" 280 281 281 - #: src/view/com/notifications/NotificationFeedItem.tsx:413 282 + #: src/view/com/notifications/NotificationFeedItem.tsx:415 282 283 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> signed up with your starter pack" 283 284 msgstr "" 284 285 285 - #: src/view/com/notifications/NotificationFeedItem.tsx:442 286 + #: src/view/com/notifications/NotificationFeedItem.tsx:444 286 287 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> verified you" 287 288 msgstr "" 288 289 289 - #: src/view/com/notifications/NotificationFeedItem.tsx:367 290 + #: src/view/com/notifications/NotificationFeedItem.tsx:369 290 291 msgid "{firstAuthorLink} followed you" 291 292 msgstr "" 292 293 293 - #: src/view/com/notifications/NotificationFeedItem.tsx:344 294 + #: src/view/com/notifications/NotificationFeedItem.tsx:346 294 295 msgid "{firstAuthorLink} followed you back" 295 296 msgstr "" 296 297 297 - #: src/view/com/notifications/NotificationFeedItem.tsx:401 298 + #: src/view/com/notifications/NotificationFeedItem.tsx:403 298 299 msgid "{firstAuthorLink} liked your custom feed" 299 300 msgstr "" 300 301 301 - #: src/view/com/notifications/NotificationFeedItem.tsx:310 302 + #: src/view/com/notifications/NotificationFeedItem.tsx:312 302 303 msgid "{firstAuthorLink} liked your post" 303 304 msgstr "" 304 305 305 - #: src/view/com/notifications/NotificationFeedItem.tsx:506 306 + #: src/view/com/notifications/NotificationFeedItem.tsx:508 306 307 msgid "{firstAuthorLink} liked your repost" 307 308 msgstr "" 308 309 309 - #: src/view/com/notifications/NotificationFeedItem.tsx:479 310 + #: src/view/com/notifications/NotificationFeedItem.tsx:481 310 311 msgid "{firstAuthorLink} removed their verification from your account" 311 312 msgstr "" 312 313 313 - #: src/view/com/notifications/NotificationFeedItem.tsx:334 314 + #: src/view/com/notifications/NotificationFeedItem.tsx:336 314 315 msgid "{firstAuthorLink} reposted your post" 315 316 msgstr "" 316 317 317 - #: src/view/com/notifications/NotificationFeedItem.tsx:530 318 + #: src/view/com/notifications/NotificationFeedItem.tsx:533 318 319 msgid "{firstAuthorLink} reposted your repost" 319 320 msgstr "" 320 321 321 - #: src/view/com/notifications/NotificationFeedItem.tsx:425 322 + #: src/view/com/notifications/NotificationFeedItem.tsx:427 322 323 msgid "{firstAuthorLink} signed up with your starter pack" 323 324 msgstr "" 324 325 325 - #: src/view/com/notifications/NotificationFeedItem.tsx:454 326 + #: src/view/com/notifications/NotificationFeedItem.tsx:456 326 327 msgid "{firstAuthorLink} verified you" 327 328 msgstr "" 328 329 329 - #: src/view/com/notifications/NotificationFeedItem.tsx:348 330 + #: src/view/com/notifications/NotificationFeedItem.tsx:350 330 331 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" 331 332 msgstr "" 332 333 333 - #: src/view/com/notifications/NotificationFeedItem.tsx:382 334 + #: src/view/com/notifications/NotificationFeedItem.tsx:384 334 335 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" 335 336 msgstr "" 336 337 337 - #: src/view/com/notifications/NotificationFeedItem.tsx:291 338 + #: src/view/com/notifications/NotificationFeedItem.tsx:293 338 339 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" 339 340 msgstr "" 340 341 341 - #: src/view/com/notifications/NotificationFeedItem.tsx:487 342 + #: src/view/com/notifications/NotificationFeedItem.tsx:489 342 343 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" 343 344 msgstr "" 344 345 345 - #: src/view/com/notifications/NotificationFeedItem.tsx:460 346 + #: src/view/com/notifications/NotificationFeedItem.tsx:462 346 347 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" 347 348 msgstr "" 348 349 349 - #: src/view/com/notifications/NotificationFeedItem.tsx:315 350 + #: src/view/com/notifications/NotificationFeedItem.tsx:317 350 351 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" 351 352 msgstr "" 352 353 353 - #: src/view/com/notifications/NotificationFeedItem.tsx:511 354 + #: src/view/com/notifications/NotificationFeedItem.tsx:514 354 355 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" 355 356 msgstr "" 356 357 357 - #: src/view/com/notifications/NotificationFeedItem.tsx:406 358 + #: src/view/com/notifications/NotificationFeedItem.tsx:408 358 359 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" 359 360 msgstr "" 360 361 361 - #: src/view/com/notifications/NotificationFeedItem.tsx:435 362 + #: src/view/com/notifications/NotificationFeedItem.tsx:437 362 363 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" 363 364 msgstr "" 364 365 365 - #: src/view/com/notifications/NotificationFeedItem.tsx:353 366 + #: src/view/com/notifications/NotificationFeedItem.tsx:355 366 367 msgid "{firstAuthorName} followed you" 367 368 msgstr "" 368 369 369 - #: src/view/com/notifications/NotificationFeedItem.tsx:343 370 + #: src/view/com/notifications/NotificationFeedItem.tsx:345 370 371 msgid "{firstAuthorName} followed you back" 371 372 msgstr "" 372 373 373 - #: src/view/com/notifications/NotificationFeedItem.tsx:387 374 + #: src/view/com/notifications/NotificationFeedItem.tsx:389 374 375 msgid "{firstAuthorName} liked your custom feed" 375 376 msgstr "" 376 377 377 - #: src/view/com/notifications/NotificationFeedItem.tsx:296 378 + #: src/view/com/notifications/NotificationFeedItem.tsx:298 378 379 msgid "{firstAuthorName} liked your post" 379 380 msgstr "" 380 381 381 - #: src/view/com/notifications/NotificationFeedItem.tsx:492 382 + #: src/view/com/notifications/NotificationFeedItem.tsx:494 382 383 msgid "{firstAuthorName} liked your repost" 383 384 msgstr "" 384 385 385 - #: src/view/com/notifications/NotificationFeedItem.tsx:465 386 + #: src/view/com/notifications/NotificationFeedItem.tsx:467 386 387 msgid "{firstAuthorName} removed their verification from your account" 387 388 msgstr "" 388 389 389 - #: src/view/com/notifications/NotificationFeedItem.tsx:320 390 + #: src/view/com/notifications/NotificationFeedItem.tsx:322 390 391 msgid "{firstAuthorName} reposted your post" 391 392 msgstr "" 392 393 393 - #: src/view/com/notifications/NotificationFeedItem.tsx:516 394 + #: src/view/com/notifications/NotificationFeedItem.tsx:519 394 395 msgid "{firstAuthorName} reposted your repost" 395 396 msgstr "" 396 397 397 - #: src/view/com/notifications/NotificationFeedItem.tsx:411 398 + #: src/view/com/notifications/NotificationFeedItem.tsx:413 398 399 msgid "{firstAuthorName} signed up with your starter pack" 399 400 msgstr "" 400 401 401 - #: src/view/com/notifications/NotificationFeedItem.tsx:440 402 + #: src/view/com/notifications/NotificationFeedItem.tsx:442 402 403 msgid "{firstAuthorName} verified you" 403 404 msgstr "" 404 405 405 - #: src/components/ProfileHoverCard/index.web.tsx:578 406 + #: src/components/ProfileHoverCard/index.web.tsx:601 406 407 msgid "{following} following" 407 408 msgstr "" 408 409 409 - #: src/components/dialogs/SearchablePeopleList.tsx:413 410 + #: src/components/dialogs/SearchablePeopleList.tsx:417 410 411 msgid "{handle} can't be messaged" 411 412 msgstr "" 412 413 ··· 423 424 msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" 424 425 msgstr "" 425 426 427 + #: src/screens/Settings/AppearanceSettings.tsx:197 428 + msgid "{label}" 429 + msgstr "" 430 + 426 431 #: src/components/live/utils.ts:10 427 432 msgid "{minutes, plural, one {# minute} other {# minutes}}" 428 433 msgstr "" ··· 444 449 msgstr "" 445 450 446 451 #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" 447 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:111 452 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:112 448 453 msgid "{rank}." 449 454 msgstr "" 450 455 451 456 #. trending topic time spent trending. should be as short as possible to fit in a pill 452 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:203 457 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:207 453 458 msgid "{type}h ago" 454 459 msgstr "" 455 460 456 - #: src/components/verification/VerifierDialog.tsx:60 461 + #: src/components/verification/VerifierDialog.tsx:61 457 462 msgid "{userName} is a trusted verifier" 458 463 msgstr "" 459 464 460 - #: src/components/verification/VerificationsDialog.tsx:67 465 + #: src/components/verification/VerificationsDialog.tsx:68 461 466 msgid "{userName} is verified" 462 467 msgstr "" 463 468 464 469 #. Possessive, meaning "the verifications of {userName}" 465 - #: src/components/verification/VerificationsDialog.tsx:69 470 + #: src/components/verification/VerificationsDialog.tsx:70 466 471 msgid "{userName}'s verifications" 467 472 msgstr "" 468 473 469 474 #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 470 - #: src/screens/Search/components/StarterPackCard.tsx:249 475 + #: src/screens/Search/components/StarterPackCard.tsx:254 471 476 msgid "+{computedTotal}" 472 477 msgstr "" 473 478 474 - #: src/screens/StarterPack/Wizard/index.tsx:524 479 + #: src/screens/StarterPack/Wizard/index.tsx:526 475 480 msgctxt "profiles" 476 481 msgid "<0>{0}, </0><1>{1}, </1>and {2, plural, one {# other} other {# others}} are included in your starter pack" 477 482 msgstr "" 478 483 479 - #: src/screens/StarterPack/Wizard/index.tsx:577 484 + #: src/screens/StarterPack/Wizard/index.tsx:579 480 485 msgctxt "feeds" 481 486 msgid "<0>{0}, </0><1>{1}, </1>and {2, plural, one {# other} other {# others}} are included in your starter pack" 482 487 msgstr "" 483 488 484 - #: src/view/shell/Drawer.tsx:117 489 + #: src/view/shell/Drawer.tsx:126 485 490 msgid "<0>{0}</0> {1, plural, one {follower} other {followers}}" 486 491 msgstr "" 487 492 488 - #: src/view/shell/Drawer.tsx:128 493 + #: src/view/shell/Drawer.tsx:144 489 494 msgid "<0>{0}</0> {1, plural, one {following} other {following}}" 490 495 msgstr "" 491 496 492 - #: src/screens/StarterPack/Wizard/index.tsx:511 493 - #: src/screens/StarterPack/Wizard/index.tsx:565 497 + #: src/screens/StarterPack/Wizard/index.tsx:513 498 + #: src/screens/StarterPack/Wizard/index.tsx:567 494 499 msgid "<0>{0}</0> and<1> </1><2>{1} </2>are included in your starter pack" 495 500 msgstr "" 496 501 497 - #: src/screens/StarterPack/Wizard/index.tsx:558 502 + #: src/screens/StarterPack/Wizard/index.tsx:560 498 503 msgid "<0>{0}</0> is included in your starter pack" 499 504 msgstr "" 500 505 ··· 506 511 msgid "<0>{date}</0> at {time}" 507 512 msgstr "" 508 513 509 - #: src/screens/Hashtag.tsx:238 510 - #: src/screens/Search/SearchResults.tsx:294 514 + #: src/screens/Hashtag.tsx:241 515 + #: src/screens/Search/SearchResults.tsx:296 511 516 msgid "<0>Sign in</0><1> or </1><2>create an account</2><3> </3><4>to search for news, sports, politics, and everything else happening on Bluesky.</4>" 512 517 msgstr "" 513 518 514 - #: src/screens/StarterPack/Wizard/index.tsx:502 519 + #: src/screens/StarterPack/Wizard/index.tsx:504 515 520 msgid "<0>You</0> and<1> </1><2>{0} </2>are included in your starter pack" 516 521 msgstr "" 517 522 518 - #: src/screens/Profile/Header/Handle.tsx:57 523 + #: src/screens/Profile/Header/Handle.tsx:60 519 524 msgid "โš Invalid Handle" 520 525 msgstr "" 521 526 522 - #: src/components/dialogs/MutedWords.tsx:198 527 + #: src/components/dialogs/MutedWords.tsx:199 523 528 msgid "24 hours" 524 529 msgstr "" 525 530 526 - #: src/screens/Login/LoginForm.tsx:278 531 + #: src/screens/Login/LoginForm.tsx:303 527 532 msgid "2FA Confirmation" 528 533 msgstr "" 529 534 530 - #: src/components/dialogs/MutedWords.tsx:237 535 + #: src/components/dialogs/MutedWords.tsx:238 531 536 msgid "30 days" 532 537 msgstr "" 533 538 534 - #: src/components/dialogs/MutedWords.tsx:222 539 + #: src/components/dialogs/MutedWords.tsx:223 535 540 msgid "7 days" 536 541 msgstr "" 537 542 ··· 540 545 msgstr "" 541 546 542 547 #. If last message does not contain text, fall back to "{user} reacted to {a message}" 543 - #: src/screens/Messages/components/ChatListItem.tsx:212 548 + #: src/screens/Messages/components/ChatListItem.tsx:216 544 549 msgid "a message" 545 550 msgstr "" 546 551 ··· 557 562 msgid "A new code has been sent" 558 563 msgstr "" 559 564 560 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:91 565 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 561 566 msgid "A new form of verification" 562 567 msgstr "" 563 568 ··· 571 576 msgid "A screenshot of a post with a new button next to the share button that allows you to save the post to your bookmarks. The post is from @jcsalterego.bsky.social and reads \"inventing a saturday that immediately follows monday\"." 572 577 msgstr "" 573 578 574 - #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:113 579 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:116 575 580 msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." 576 581 msgstr "" 577 582 578 - #: src/Navigation.tsx:534 579 - #: src/screens/Settings/AboutSettings.tsx:75 580 - #: src/screens/Settings/Settings.tsx:262 581 - #: src/screens/Settings/Settings.tsx:265 583 + #: src/Navigation.tsx:563 584 + #: src/screens/Settings/AboutSettings.tsx:73 585 + #: src/screens/Settings/Settings.tsx:270 586 + #: src/screens/Settings/Settings.tsx:273 582 587 msgid "About" 583 588 msgstr "" 584 589 ··· 605 610 msgstr "" 606 611 607 612 #: src/screens/Settings/AccessibilitySettings.tsx:44 608 - #: src/screens/Settings/Settings.tsx:238 609 - #: src/screens/Settings/Settings.tsx:241 613 + #: src/screens/Settings/Settings.tsx:246 614 + #: src/screens/Settings/Settings.tsx:249 610 615 msgid "Accessibility" 611 616 msgstr "" 612 617 613 - #: src/Navigation.tsx:385 618 + #: src/Navigation.tsx:406 614 619 msgid "Accessibility Settings" 615 620 msgstr "" 616 621 617 - #: src/Navigation.tsx:401 618 - #: src/screens/Login/LoginForm.tsx:194 622 + #: src/Navigation.tsx:430 623 + #: src/screens/Login/LoginForm.tsx:210 619 624 #: src/screens/Settings/AccountSettings.tsx:51 620 - #: src/screens/Settings/Settings.tsx:180 621 - #: src/screens/Settings/Settings.tsx:183 625 + #: src/screens/Settings/Settings.tsx:182 626 + #: src/screens/Settings/Settings.tsx:185 622 627 msgid "Account" 623 628 msgstr "" 624 629 625 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:419 630 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 626 631 #: src/screens/Messages/components/RequestButtons.tsx:91 627 - #: src/view/com/profile/ProfileMenu.tsx:181 632 + #: src/view/com/profile/ProfileMenu.tsx:196 628 633 msgctxt "toast" 629 634 msgid "Account blocked" 630 635 msgstr "" 631 636 632 - #: src/view/com/profile/ProfileMenu.tsx:194 637 + #: src/view/com/profile/ProfileMenu.tsx:209 633 638 msgctxt "toast" 634 639 msgid "Account followed" 635 640 msgstr "" 636 641 637 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:442 638 - #: src/view/com/profile/ProfileMenu.tsx:157 642 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 643 + #: src/view/com/profile/ProfileMenu.tsx:172 639 644 msgctxt "toast" 640 645 msgid "Account muted" 641 646 msgstr "" ··· 649 654 msgid "Account Muted by List" 650 655 msgstr "" 651 656 652 - #: src/screens/Settings/Settings.tsx:646 657 + #: src/screens/Settings/Settings.tsx:656 653 658 msgid "Account options" 654 659 msgstr "" 655 660 656 - #: src/components/dialogs/ServerInput.tsx:141 657 - msgid "Account provider" 658 - msgstr "" 659 - 660 - #: src/screens/Settings/Settings.tsx:682 661 + #: src/screens/Settings/Settings.tsx:692 661 662 msgid "Account removed from quick access" 662 663 msgstr "" 663 664 664 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:84 665 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:290 666 - #: src/view/com/profile/ProfileMenu.tsx:171 665 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:85 666 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 667 + #: src/view/com/profile/ProfileMenu.tsx:186 667 668 msgctxt "toast" 668 669 msgid "Account unblocked" 669 670 msgstr "" 670 671 671 - #: src/view/com/profile/ProfileMenu.tsx:206 672 + #: src/view/com/profile/ProfileMenu.tsx:221 672 673 msgctxt "toast" 673 674 msgid "Account unfollowed" 674 675 msgstr "" 675 676 676 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:432 677 - #: src/view/com/profile/ProfileMenu.tsx:147 677 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:662 678 + #: src/view/com/profile/ProfileMenu.tsx:162 678 679 msgctxt "toast" 679 680 msgid "Account unmuted" 680 681 msgstr "" 681 682 682 - #: src/components/verification/VerifierDialog.tsx:97 683 - msgid "Accounts with a scalloped blue check mark <0><1/></0> can verify others. These trusted verifiers are selected by Bluesky." 683 + #: src/components/verification/VerifierDialog.tsx:102 684 + msgid "Accounts with a scalloped blue check mark <0><1/></0> can verify others. These trusted verifiers are selected by {0}." 684 685 msgstr "" 685 686 686 687 #: src/lib/hooks/useNotificationHandler.ts:182 ··· 689 690 msgid "Activity from others" 690 691 msgstr "" 691 692 692 - #: src/Navigation.tsx:502 693 + #: src/Navigation.tsx:531 693 694 msgid "Activity notifications" 694 695 msgstr "" 695 696 696 697 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 697 - #: src/components/dialogs/MutedWords.tsx:333 698 - #: src/components/dialogs/StarterPackDialog.tsx:374 699 - #: src/components/dialogs/StarterPackDialog.tsx:380 700 - #: src/view/com/modals/UserAddRemoveLists.tsx:235 698 + #: src/components/dialogs/MutedWords.tsx:334 699 + #: src/components/dialogs/StarterPackDialog.tsx:377 700 + #: src/components/dialogs/StarterPackDialog.tsx:383 701 + #: src/view/com/modals/UserAddRemoveLists.tsx:237 701 702 msgid "Add" 702 703 msgstr "" 703 704 704 - #: src/screens/StarterPack/Wizard/index.tsx:613 705 + #: src/screens/StarterPack/Wizard/index.tsx:615 705 706 msgid "Add {0} more to continue" 706 707 msgstr "" 707 708 ··· 731 732 #: src/view/com/composer/GifAltText.tsx:76 732 733 #: src/view/com/composer/GifAltText.tsx:144 733 734 #: src/view/com/composer/GifAltText.tsx:211 734 - #: src/view/com/composer/photos/Gallery.tsx:170 735 - #: src/view/com/composer/photos/Gallery.tsx:217 735 + #: src/view/com/composer/photos/Gallery.tsx:173 736 + #: src/view/com/composer/photos/Gallery.tsx:228 736 737 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 737 738 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 738 739 msgid "Add alt text" 739 740 msgstr "" 740 741 741 - #: src/view/com/composer/videos/SubtitleDialog.tsx:114 742 + #: src/view/com/composer/videos/SubtitleDialog.tsx:115 742 743 msgid "Add alt text (optional)" 743 744 msgstr "" 744 745 745 - #: src/screens/Settings/Settings.tsx:584 746 - #: src/screens/Settings/Settings.tsx:587 747 - #: src/view/shell/desktop/LeftNav.tsx:262 748 - #: src/view/shell/desktop/LeftNav.tsx:266 746 + #: src/screens/Settings/Settings.tsx:592 747 + #: src/screens/Settings/Settings.tsx:595 748 + #: src/view/shell/desktop/LeftNav.tsx:265 749 + #: src/view/shell/desktop/LeftNav.tsx:269 749 750 msgid "Add another account" 750 751 msgstr "" 751 752 752 - #: src/view/com/composer/Composer.tsx:856 753 + #: src/view/com/composer/Composer.tsx:860 753 754 msgid "Add another post" 754 755 msgstr "" 755 756 756 - #: src/view/com/composer/Composer.tsx:1496 757 + #: src/view/com/composer/Composer.tsx:1527 757 758 msgid "Add another post to thread" 758 759 msgstr "" 759 760 ··· 767 768 msgid "Add App Password" 768 769 msgstr "" 769 770 770 - #: src/components/dms/EmojiReactionPicker.web.tsx:35 771 + #: src/components/dms/EmojiReactionPicker.web.tsx:36 771 772 msgid "Add emoji reaction" 772 773 msgstr "" 773 774 ··· 776 777 msgstr "" 777 778 778 779 #. Accessibility label for button in composer to add images, a video, or a GIF to a post 779 - #: src/view/com/composer/SelectMediaButton.tsx:481 780 + #: src/view/com/composer/SelectMediaButton.tsx:484 780 781 msgid "Add media to post" 781 782 msgstr "" 782 783 783 - #: src/components/moderation/ReportDialog/index.tsx:520 784 - #: src/components/moderation/ReportDialog/index.tsx:524 784 + #: src/components/moderation/ReportDialog/index.tsx:523 785 + #: src/components/moderation/ReportDialog/index.tsx:527 785 786 msgid "Add more details (optional)" 786 787 msgstr "" 787 788 788 - #: src/components/dialogs/MutedWords.tsx:326 789 + #: src/components/dialogs/MutedWords.tsx:327 789 790 msgid "Add mute word with chosen settings" 790 791 msgstr "" 791 792 792 - #: src/components/dialogs/MutedWords.tsx:117 793 + #: src/components/dialogs/MutedWords.tsx:118 793 794 msgid "Add muted words and tags" 794 795 msgstr "" 795 796 ··· 802 803 msgid "Add people to list" 803 804 msgstr "" 804 805 805 - #: src/components/dms/EmojiPopup.android.tsx:55 806 + #: src/components/dms/EmojiPopup.android.tsx:58 806 807 msgid "Add Reaction" 807 808 msgstr "" 808 809 ··· 810 811 msgid "Add recommended feeds" 811 812 msgstr "" 812 813 813 - #: src/screens/StarterPack/Wizard/index.tsx:546 814 + #: src/screens/StarterPack/Wizard/index.tsx:548 814 815 msgid "Add some feeds to your starter pack!" 815 816 msgstr "" 816 817 ··· 818 819 msgid "Add the default feed of only people you follow" 819 820 msgstr "" 820 821 821 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:417 822 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:419 822 823 msgid "Add the following DNS record to your domain:" 823 824 msgstr "" 824 825 ··· 826 827 msgid "Add this feed to your feeds" 827 828 msgstr "" 828 829 829 - #: src/view/com/profile/ProfileMenu.tsx:342 830 - #: src/view/com/profile/ProfileMenu.tsx:345 830 + #: src/view/com/profile/ProfileMenu.tsx:396 831 + #: src/view/com/profile/ProfileMenu.tsx:399 831 832 msgid "Add to lists" 832 833 msgstr "" 833 834 ··· 835 836 msgid "Add to saved posts" 836 837 msgstr "" 837 838 838 - #: src/components/dialogs/StarterPackDialog.tsx:176 839 - #: src/view/com/profile/ProfileMenu.tsx:333 840 - #: src/view/com/profile/ProfileMenu.tsx:336 839 + #: src/components/dialogs/StarterPackDialog.tsx:179 840 + #: src/view/com/profile/ProfileMenu.tsx:387 841 + #: src/view/com/profile/ProfileMenu.tsx:390 841 842 msgid "Add to starter packs" 842 843 msgstr "" 843 844 ··· 850 851 msgstr "" 851 852 852 853 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109 853 - #: src/view/com/modals/UserAddRemoveLists.tsx:162 854 + #: src/view/com/modals/UserAddRemoveLists.tsx:164 854 855 msgid "Added to list" 855 856 msgstr "" 856 857 857 - #: src/components/dialogs/StarterPackDialog.tsx:258 858 + #: src/components/dialogs/StarterPackDialog.tsx:261 858 859 msgid "Added to starter pack" 859 860 msgstr "" 860 861 ··· 862 863 msgid "Additional details (limit 1000 characters)" 863 864 msgstr "" 864 865 865 - #: src/components/moderation/ReportDialog/index.tsx:538 866 + #: src/components/moderation/ReportDialog/index.tsx:541 866 867 msgid "Additional details (limit 300 characters)" 867 868 msgstr "" 868 869 ··· 902 903 msgid "Advanced" 903 904 msgstr "" 904 905 905 - #: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 906 + #: src/components/ageAssurance/AgeAssuranceBadge.tsx:44 906 907 msgid "Age Assurance" 907 908 msgstr "" 908 909 ··· 926 927 927 928 #. the default tab in the interests tab bar 928 929 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:174 929 - #: src/view/screens/Notifications.tsx:88 930 + #: src/view/screens/Notifications.tsx:91 930 931 msgid "All" 931 932 msgstr "" 932 933 933 934 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:91 934 - #: src/screens/StarterPack/StarterPackScreen.tsx:386 935 + #: src/screens/StarterPack/StarterPackScreen.tsx:387 935 936 msgid "All accounts have been followed!" 936 937 msgstr "" 937 938 ··· 942 943 #: src/screens/Search/components/SearchLanguageDropdown.tsx:64 943 944 #: src/screens/Search/components/SearchLanguageDropdown.tsx:99 944 945 #: src/screens/Search/components/SearchLanguageDropdown.tsx:101 945 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:238 946 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:241 946 947 msgid "All languages" 947 948 msgstr "" 948 949 949 - #: src/view/screens/Feeds.tsx:707 950 + #: src/view/screens/Feeds.tsx:712 950 951 msgid "All the feeds you've saved, right in one place." 951 952 msgstr "" 952 953 ··· 1014 1015 1015 1016 #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 1016 1017 #: src/view/com/composer/GifAltText.tsx:100 1017 - #: src/view/com/composer/photos/Gallery.tsx:188 1018 + #: src/view/com/composer/photos/Gallery.tsx:191 1018 1019 msgid "ALT" 1019 1020 msgstr "" 1020 1021 1021 1022 #: src/screens/Settings/AccessibilitySettings.tsx:54 1022 1023 #: src/view/com/composer/GifAltText.tsx:154 1023 1024 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:117 1024 - #: src/view/com/composer/videos/SubtitleDialog.tsx:40 1025 - #: src/view/com/composer/videos/SubtitleDialog.tsx:58 1026 - #: src/view/com/composer/videos/SubtitleDialog.tsx:109 1027 - #: src/view/com/composer/videos/SubtitleDialog.tsx:113 1025 + #: src/view/com/composer/videos/SubtitleDialog.tsx:41 1026 + #: src/view/com/composer/videos/SubtitleDialog.tsx:59 1027 + #: src/view/com/composer/videos/SubtitleDialog.tsx:110 1028 + #: src/view/com/composer/videos/SubtitleDialog.tsx:114 1028 1029 msgid "Alt text" 1029 1030 msgstr "" 1030 1031 ··· 1032 1033 msgid "Alt Text" 1033 1034 msgstr "" 1034 1035 1035 - #: src/view/com/composer/photos/Gallery.tsx:261 1036 + #: src/view/com/composer/photos/Gallery.tsx:272 1036 1037 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." 1037 1038 msgstr "" 1038 1039 1039 - #: src/view/com/composer/videos/SubtitleDialog.tsx:137 1040 + #: src/view/com/composer/videos/SubtitleDialog.tsx:138 1040 1041 msgid "Alt text must be less than {MAX_ALT_TEXT} characters." 1041 1042 msgstr "" 1042 1043 ··· 1049 1050 msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." 1050 1051 msgstr "" 1051 1052 1052 - #: src/components/dialogs/GifSelect.tsx:253 1053 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:320 1053 + #: src/components/dialogs/GifSelect.tsx:256 1054 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:323 1054 1055 msgid "An error has occurred" 1055 1056 msgstr "" 1056 1057 ··· 1058 1059 msgid "An error occurred" 1059 1060 msgstr "" 1060 1061 1061 - #: src/view/com/composer/state/video.ts:399 1062 + #: src/view/com/composer/state/video.ts:435 1062 1063 msgid "An error occurred while compressing the video." 1063 1064 msgstr "" 1064 1065 ··· 1079 1080 msgid "An error occurred while hiding suggestion. {0}" 1080 1081 msgstr "" 1081 1082 1082 - #: src/components/Post/Embed/VideoEmbed/index.tsx:140 1083 + #: src/components/Post/Embed/VideoEmbed/index.tsx:143 1083 1084 msgid "An error occurred while loading the video. Please try again later." 1084 1085 msgstr "" 1085 1086 ··· 1097 1098 1098 1099 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:51 1099 1100 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:76 1100 - #: src/screens/StarterPack/StarterPackScreen.tsx:352 1101 - #: src/screens/StarterPack/StarterPackScreen.tsx:374 1101 + #: src/screens/StarterPack/StarterPackScreen.tsx:353 1102 + #: src/screens/StarterPack/StarterPackScreen.tsx:375 1102 1103 msgid "An error occurred while trying to follow all" 1103 1104 msgstr "" 1104 1105 1105 - #: src/view/com/composer/state/video.ts:440 1106 + #: src/view/com/composer/state/video.ts:476 1106 1107 msgid "An error occurred while uploading the video." 1107 1108 msgstr "" 1108 1109 ··· 1121 1122 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" 1122 1123 msgstr "" 1123 1124 1124 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 1125 - #: src/components/verification/VerifierDialog.tsx:86 1125 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:87 1126 + #: src/components/verification/VerifierDialog.tsx:90 1126 1127 msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." 1127 1128 msgstr "" 1128 1129 ··· 1142 1143 #: src/components/hooks/useFollowMethods.ts:50 1143 1144 #: src/components/ProfileCard.tsx:519 1144 1145 #: src/components/ProfileCard.tsx:540 1145 - #: src/view/com/notifications/NotificationFeedItem.tsx:779 1146 - #: src/view/com/notifications/NotificationFeedItem.tsx:799 1146 + #: src/view/com/notifications/NotificationFeedItem.tsx:784 1147 + #: src/view/com/notifications/NotificationFeedItem.tsx:804 1147 1148 msgid "An issue occurred, please try again." 1148 1149 msgstr "" 1149 1150 1150 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:118 1151 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121 1151 1152 msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." 1152 1153 msgstr "" 1153 1154 ··· 1180 1181 msgid "Animated GIF" 1181 1182 msgstr "" 1182 1183 1183 - #: src/components/PolicyUpdateOverlay/Badge.tsx:33 1184 + #: src/components/PolicyUpdateOverlay/Badge.tsx:35 1184 1185 msgid "Announcement" 1185 1186 msgstr "" 1186 1187 1187 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:37 1188 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:40 1188 1189 msgid "Announcing verification on Bluesky" 1189 1190 msgstr "" 1190 1191 ··· 1202 1203 msgid "Anyone who follows me" 1203 1204 msgstr "" 1204 1205 1205 - #: src/Navigation.tsx:542 1206 + #: src/Navigation.tsx:571 1206 1207 #: src/screens/Settings/AppIconSettings/index.tsx:67 1207 1208 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 1208 1209 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 1209 1210 msgid "App Icon" 1210 1211 msgstr "" 1211 1212 1213 + #: src/screens/Settings/DeerSettings.tsx:862 1214 + msgid "App labelers are mandatory top-level labelers that can perform \"takedowns\". This setting does not influence geolocation-based labelers." 1215 + msgstr "" 1216 + 1212 1217 #: src/screens/Settings/LanguageSettings.tsx:103 1213 1218 msgid "App language" 1214 1219 msgstr "" ··· 1243 1248 msgid "App passwords" 1244 1249 msgstr "" 1245 1250 1246 - #: src/Navigation.tsx:353 1251 + #: src/Navigation.tsx:374 1247 1252 #: src/screens/Settings/AppPasswords.tsx:50 1248 1253 msgid "App Passwords" 1249 1254 msgstr "" ··· 1284 1289 msgid "Appeal this decision" 1285 1290 msgstr "" 1286 1291 1287 - #: src/Navigation.tsx:393 1288 - #: src/screens/Settings/AppearanceSettings.tsx:73 1289 - #: src/screens/Settings/Settings.tsx:230 1290 - #: src/screens/Settings/Settings.tsx:233 1292 + #: src/Navigation.tsx:422 1293 + #: src/screens/Settings/AppearanceSettings.tsx:125 1294 + #: src/screens/Settings/Settings.tsx:232 1295 + #: src/screens/Settings/Settings.tsx:235 1291 1296 msgid "Appearance" 1292 1297 msgstr "" 1293 1298 ··· 1296 1301 msgid "Apply default recommended feeds" 1297 1302 msgstr "" 1298 1303 1299 - #: src/screens/Settings/Settings.tsx:516 1300 - #: src/screens/Settings/Settings.tsx:518 1304 + #: src/screens/Settings/Settings.tsx:524 1305 + #: src/screens/Settings/Settings.tsx:526 1301 1306 msgid "Apply Pull Request" 1302 1307 msgstr "" 1303 1308 1304 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:670 1309 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:689 1305 1310 msgid "Archived from {0}" 1306 1311 msgstr "" 1307 1312 1308 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 1309 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:678 1313 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:658 1314 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:697 1310 1315 msgid "Archived post" 1311 1316 msgstr "" 1312 1317 ··· 1318 1323 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." 1319 1324 msgstr "" 1320 1325 1321 - #: src/screens/StarterPack/StarterPackScreen.tsx:659 1326 + #: src/screens/StarterPack/StarterPackScreen.tsx:662 1322 1327 msgid "Are you sure you want to delete this starter pack?" 1323 1328 msgstr "" 1324 1329 1325 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:90 1326 - #: src/screens/Profile/Header/EditProfileDialog.tsx:80 1330 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:91 1331 + #: src/screens/Profile/Header/EditProfileDialog.tsx:82 1327 1332 msgid "Are you sure you want to discard your changes?" 1328 1333 msgstr "" 1329 1334 ··· 1339 1344 msgid "Are you sure you want to remove this from your feeds?" 1340 1345 msgstr "" 1341 1346 1342 - #: src/view/com/composer/Composer.tsx:805 1347 + #: src/view/com/composer/Composer.tsx:809 1343 1348 msgid "Are you sure you'd like to discard this draft?" 1344 1349 msgstr "" 1345 1350 1346 - #: src/view/com/composer/Composer.tsx:995 1351 + #: src/view/com/composer/Composer.tsx:1001 1347 1352 msgid "Are you sure you'd like to discard this post?" 1348 1353 msgstr "" 1349 1354 1350 - #: src/components/dialogs/MutedWords.tsx:438 1355 + #: src/components/dialogs/MutedWords.tsx:441 1351 1356 msgid "Are you sure?" 1352 1357 msgstr "" 1353 1358 ··· 1363 1368 msgid "Artistic or non-erotic nudity." 1364 1369 msgstr "" 1365 1370 1366 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 1367 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 1371 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:832 1372 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:834 1368 1373 msgid "Assign topic for algo" 1369 1374 msgstr "" 1370 1375 ··· 1372 1377 msgid "At least 8 characters" 1373 1378 msgstr "" 1374 1379 1375 - #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 1376 - msgctxt "Name of app icon variant" 1377 - msgid "Aurora" 1380 + #: src/screens/Signup/StepInfo/index.tsx:204 1381 + msgid "ATmosphere" 1382 + msgstr "" 1383 + 1384 + #: src/components/forms/HostingProvider.tsx:30 1385 + msgid "Automatic" 1378 1386 msgstr "" 1379 1387 1380 1388 #: src/screens/Settings/ContentAndMediaSettings.tsx:117 ··· 1393 1401 #: src/screens/Login/ChooseAccountForm.tsx:96 1394 1402 #: src/screens/Login/ForgotPasswordForm.tsx:123 1395 1403 #: src/screens/Login/ForgotPasswordForm.tsx:129 1396 - #: src/screens/Login/LoginForm.tsx:313 1397 - #: src/screens/Login/LoginForm.tsx:319 1404 + #: src/screens/Login/LoginForm.tsx:338 1405 + #: src/screens/Login/LoginForm.tsx:344 1398 1406 #: src/screens/Login/SetNewPasswordForm.tsx:168 1399 1407 #: src/screens/Login/SetNewPasswordForm.tsx:174 1400 1408 #: src/screens/Messages/components/ChatDisabled.tsx:145 1401 1409 #: src/screens/Messages/components/ChatDisabled.tsx:146 1402 - #: src/screens/Profile/Header/Shell.tsx:184 1410 + #: src/screens/Profile/Header/Shell.tsx:213 1403 1411 #: src/screens/Settings/components/ChangePasswordDialog.tsx:272 1404 1412 #: src/screens/Settings/components/ChangePasswordDialog.tsx:281 1405 1413 #: src/screens/Signup/BackNextButtons.tsx:41 1406 - #: src/screens/StarterPack/Wizard/index.tsx:323 1414 + #: src/screens/StarterPack/Wizard/index.tsx:324 1407 1415 msgid "Back" 1408 1416 msgstr "" 1409 1417 ··· 1428 1436 msgid "Before creating a post or replying, you must first verify your email." 1429 1437 msgstr "" 1430 1438 1431 - #: src/components/dialogs/StarterPackDialog.tsx:71 1439 + #: src/components/dialogs/StarterPackDialog.tsx:72 1432 1440 #: src/components/StarterPack/ProfileStarterPacks.tsx:263 1433 1441 #: src/components/StarterPack/ProfileStarterPacks.tsx:273 1434 1442 #: src/view/screens/Profile.tsx:351 ··· 1439 1447 msgid "Before you can accept this chat request, you must first verify your email." 1440 1448 msgstr "" 1441 1449 1442 - #: src/components/activity-notifications/SubscribeProfileButton.tsx:58 1450 + #: src/components/activity-notifications/SubscribeProfileButton.tsx:59 1443 1451 msgid "Before you can get notifications for {name}'s posts, you must first verify your email." 1444 1452 msgstr "" 1445 1453 1446 1454 #: src/components/dms/dialogs/NewChatDialog.tsx:54 1447 - #: src/components/dms/MessageProfileButton.tsx:58 1448 - #: src/screens/Messages/ChatList.tsx:371 1455 + #: src/components/dms/MessageProfileButton.tsx:61 1456 + #: src/screens/Messages/ChatList.tsx:374 1449 1457 #: src/screens/Messages/Conversation.tsx:228 1450 1458 msgid "Before you can message another user, you must first verify your email." 1451 1459 msgstr "" ··· 1474 1482 msgid "Birthday" 1475 1483 msgstr "" 1476 1484 1477 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 1478 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 1479 - #: src/view/com/profile/ProfileMenu.tsx:550 1485 + #: src/screens/Settings/AppearanceSettings.tsx:111 1486 + msgid "Blacksky" 1487 + msgstr "" 1488 + 1489 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1095 1490 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 1491 + #: src/view/com/profile/ProfileMenu.tsx:629 1480 1492 msgid "Block" 1481 1493 msgstr "" 1482 1494 1483 - #: src/components/dms/ConvoMenu.tsx:261 1484 1495 #: src/components/dms/ConvoMenu.tsx:264 1485 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 1486 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:705 1496 + #: src/components/dms/ConvoMenu.tsx:267 1497 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:980 1498 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:982 1487 1499 #: src/screens/Messages/components/RequestButtons.tsx:144 1488 1500 #: src/screens/Messages/components/RequestButtons.tsx:146 1489 - #: src/view/com/profile/ProfileMenu.tsx:456 1490 - #: src/view/com/profile/ProfileMenu.tsx:463 1501 + #: src/view/com/profile/ProfileMenu.tsx:535 1502 + #: src/view/com/profile/ProfileMenu.tsx:542 1491 1503 msgid "Block account" 1492 1504 msgstr "" 1493 1505 1494 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:813 1495 - #: src/view/com/profile/ProfileMenu.tsx:533 1506 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1090 1507 + #: src/view/com/profile/ProfileMenu.tsx:612 1496 1508 msgid "Block Account?" 1497 1509 msgstr "" 1498 1510 1499 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:97 1500 1511 #: src/screens/ProfileList/components/SubscribeMenu.tsx:100 1512 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:103 1501 1513 msgid "Block accounts" 1502 1514 msgstr "" 1503 1515 ··· 1505 1517 msgid "Block and Delete" 1506 1518 msgstr "" 1507 1519 1508 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:125 1520 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:128 1509 1521 msgid "Block list" 1510 1522 msgstr "" 1511 1523 ··· 1513 1525 msgid "Block or report" 1514 1526 msgstr "" 1515 1527 1516 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:120 1528 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:123 1517 1529 msgid "Block these accounts?" 1518 1530 msgstr "" 1519 1531 ··· 1530 1542 msgid "Block user and/or delete this conversation" 1531 1543 msgstr "" 1532 1544 1533 - #: src/components/Post/Embed/index.tsx:186 1545 + #: src/components/Post/Embed/index.tsx:207 1546 + #: src/components/Post/Embed/index.tsx:214 1534 1547 msgid "Blocked" 1535 1548 msgstr "" 1536 1549 ··· 1538 1551 msgid "Blocked accounts" 1539 1552 msgstr "" 1540 1553 1541 - #: src/Navigation.tsx:194 1554 + #: src/Navigation.tsx:215 1542 1555 #: src/view/screens/ModerationBlockedAccounts.tsx:104 1543 1556 msgid "Blocked Accounts" 1544 1557 msgstr "" 1545 1558 1546 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:815 1547 - #: src/view/com/profile/ProfileMenu.tsx:545 1559 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1092 1560 + #: src/view/com/profile/ProfileMenu.tsx:624 1548 1561 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." 1549 1562 msgstr "" 1550 1563 ··· 1556 1569 msgid "Blocking does not prevent this labeler from placing labels on your account." 1557 1570 msgstr "" 1558 1571 1559 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:122 1572 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:125 1560 1573 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." 1561 1574 msgstr "" 1562 1575 1563 - #: src/view/com/profile/ProfileMenu.tsx:542 1576 + #: src/view/com/profile/ProfileMenu.tsx:621 1564 1577 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." 1565 1578 msgstr "" 1566 1579 1567 - #: src/view/com/auth/SplashScreen.web.tsx:179 1568 - msgid "Blog" 1569 - msgstr "" 1570 - 1571 - #: src/components/dialogs/ServerInput.tsx:147 1572 - #: src/components/dialogs/ServerInput.tsx:149 1580 + #: src/screens/Settings/AppearanceSettings.tsx:110 1573 1581 msgid "Bluesky" 1574 1582 msgstr "" 1575 1583 1576 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:700 1584 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:719 1577 1585 msgid "Bluesky cannot confirm the authenticity of the claimed date." 1578 1586 msgstr "" 1579 1587 1580 - #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 1581 - msgctxt "Name of app icon variant" 1582 - msgid "Bluesky Classicโ„ข" 1583 - msgstr "" 1584 - 1585 1588 #: src/components/contacts/screens/GetContacts.tsx:232 1586 1589 msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes." 1587 1590 msgstr "" 1588 1591 1589 - #: src/components/dialogs/ServerInput.tsx:217 1592 + #: src/components/dialogs/ServerInput.tsx:180 1590 1593 msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." 1591 1594 msgstr "" 1592 1595 1593 - #: src/components/dialogs/ServerInput.tsx:165 1596 + #: src/components/dialogs/ServerInput.tsx:124 1594 1597 msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." 1595 1598 msgstr "" 1596 1599 ··· 1626 1629 msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." 1627 1630 msgstr "" 1628 1631 1629 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:132 1632 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:135 1630 1633 msgid "Bluesky will proactively verify notable and authentic accounts." 1631 1634 msgstr "" 1632 1635 ··· 1652 1655 1653 1656 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 1654 1657 msgid "Breaking site rules" 1658 + msgstr "" 1659 + 1660 + #: src/screens/Settings/DeerSettings.tsx:425 1661 + msgid "Bridging and Fediverse" 1655 1662 msgstr "" 1656 1663 1657 1664 #: src/view/com/feeds/ProfileFeedgens.tsx:167 ··· 1659 1666 msgid "Browse custom feeds" 1660 1667 msgstr "" 1661 1668 1662 - #: src/components/FeedInterstitials.tsx:779 1669 + #: src/components/FeedInterstitials.tsx:785 1663 1670 msgid "Browse more accounts" 1664 1671 msgstr "" 1665 1672 1666 - #: src/components/FeedInterstitials.tsx:908 1673 + #: src/components/FeedInterstitials.tsx:914 1667 1674 msgid "Browse more feeds on the Explore page" 1668 1675 msgstr "" 1669 1676 1670 - #: src/components/FeedInterstitials.tsx:889 1671 - #: src/components/FeedInterstitials.tsx:892 1677 + #: src/components/FeedInterstitials.tsx:895 1678 + #: src/components/FeedInterstitials.tsx:898 1672 1679 msgid "Browse more suggestions" 1673 1680 msgstr "" 1674 1681 1675 - #: src/components/FeedInterstitials.tsx:917 1682 + #: src/components/FeedInterstitials.tsx:923 1676 1683 msgid "Browse more suggestions on the Explore page" 1677 1684 msgstr "" 1678 1685 ··· 1681 1688 msgid "Browse other feeds" 1682 1689 msgstr "" 1683 1690 1684 - #: src/components/TrendingTopics.tsx:179 1691 + #: src/components/TrendingTopics.tsx:183 1685 1692 msgid "Browse posts about {displayName}" 1686 1693 msgstr "" 1687 1694 1688 - #: src/components/TrendingTopics.tsx:187 1695 + #: src/components/TrendingTopics.tsx:191 1689 1696 msgid "Browse posts tagged with {displayName}" 1690 1697 msgstr "" 1691 1698 1692 - #: src/components/TrendingTopics.tsx:196 1699 + #: src/components/TrendingTopics.tsx:200 1693 1700 msgid "Browse starter pack {displayName}" 1694 1701 msgstr "" 1695 1702 1696 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:93 1703 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:94 1697 1704 msgid "Browse topic {0}" 1698 1705 msgstr "" 1699 1706 1700 - #: src/components/TrendingTopics.tsx:233 1707 + #: src/components/TrendingTopics.tsx:237 1701 1708 msgid "Browse topic {displayName}" 1702 1709 msgstr "" 1703 1710 1704 - #: src/view/com/auth/SplashScreen.web.tsx:174 1705 - msgid "Business" 1711 + #: src/screens/Signup/StepInfo/index.tsx:249 1712 + msgid "bsky.app" 1706 1713 msgstr "" 1707 1714 1708 1715 #: src/screens/Bookmarks/index.tsx:284 ··· 1710 1717 msgstr "" 1711 1718 1712 1719 #: src/components/LabelingServiceCard/index.tsx:62 1713 - #: src/components/moderation/ReportDialog/index.tsx:842 1714 - #: src/screens/Search/components/StarterPackCard.tsx:106 1720 + #: src/components/moderation/ReportDialog/index.tsx:846 1721 + #: src/screens/Search/components/StarterPackCard.tsx:107 1715 1722 #: src/screens/Search/Explore.tsx:943 1716 1723 msgid "By {0}" 1717 1724 msgstr "" 1718 1725 1719 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:453 1726 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:457 1720 1727 msgid "By <0>{0}</0>" 1721 1728 msgstr "" 1722 1729 ··· 1740 1747 msgid "By creating an account you agree to the <0>Terms of Service</0>." 1741 1748 msgstr "" 1742 1749 1743 - #: src/screens/Search/components/StarterPackCard.tsx:105 1750 + #: src/screens/Search/components/StarterPackCard.tsx:106 1744 1751 msgid "By you" 1745 1752 msgstr "" 1746 1753 1747 - #: src/view/com/composer/photos/OpenCameraBtn.tsx:70 1754 + #: src/view/com/composer/photos/OpenCameraBtn.tsx:73 1748 1755 msgid "Camera" 1749 1756 msgstr "" 1750 1757 ··· 1759 1766 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 1760 1767 #: src/components/dialogs/InAppBrowserConsent.tsx:98 1761 1768 #: src/components/dialogs/InAppBrowserConsent.tsx:104 1762 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:274 1763 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:282 1769 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:277 1770 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:285 1764 1771 #: src/components/live/GoLiveDialog.tsx:246 1765 1772 #: src/components/live/GoLiveDialog.tsx:252 1766 - #: src/components/Menu/index.tsx:352 1773 + #: src/components/Menu/index.tsx:354 1767 1774 #: src/components/PostControls/RepostButton.tsx:209 1768 1775 #: src/components/Prompt.tsx:144 1769 1776 #: src/components/Prompt.tsx:146 ··· 1771 1778 #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156 1772 1779 #: src/lib/media/picker.tsx:38 1773 1780 #: src/screens/Deactivated.tsx:149 1774 - #: src/screens/Profile/Header/EditProfileDialog.tsx:218 1775 - #: src/screens/Profile/Header/EditProfileDialog.tsx:226 1781 + #: src/screens/Profile/Header/EditProfileDialog.tsx:223 1782 + #: src/screens/Profile/Header/EditProfileDialog.tsx:231 1776 1783 #: src/screens/Search/Shell.tsx:370 1777 1784 #: src/screens/Settings/AppIconSettings/index.tsx:44 1778 1785 #: src/screens/Settings/AppIconSettings/index.tsx:230 1779 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:78 1780 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:85 1786 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:80 1787 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:87 1781 1788 #: src/screens/Settings/components/ChangePasswordDialog.tsx:247 1782 1789 #: src/screens/Settings/components/ChangePasswordDialog.tsx:253 1783 - #: src/screens/Settings/Settings.tsx:307 1790 + #: src/screens/Settings/Settings.tsx:315 1784 1791 #: src/screens/Takendown.tsx:102 1785 1792 #: src/screens/Takendown.tsx:105 1786 - #: src/view/com/composer/Composer.tsx:1050 1787 - #: src/view/com/composer/Composer.tsx:1061 1788 - #: src/view/com/composer/photos/EditImageDialog.web.tsx:43 1789 - #: src/view/com/composer/photos/EditImageDialog.web.tsx:52 1790 - #: src/view/shell/desktop/LeftNav.tsx:213 1793 + #: src/view/com/composer/Composer.tsx:1060 1794 + #: src/view/com/composer/Composer.tsx:1075 1795 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:46 1796 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:55 1797 + #: src/view/shell/desktop/LeftNav.tsx:216 1791 1798 msgid "Cancel" 1792 1799 msgstr "" 1793 1800 1794 1801 #: src/view/com/modals/DeleteAccount.tsx:170 1795 - #: src/view/com/modals/DeleteAccount.tsx:278 1802 + #: src/view/com/modals/DeleteAccount.tsx:284 1796 1803 msgctxt "action" 1797 1804 msgid "Cancel" 1798 1805 msgstr "" 1799 1806 1800 1807 #: src/view/com/modals/DeleteAccount.tsx:166 1801 - #: src/view/com/modals/DeleteAccount.tsx:274 1808 + #: src/view/com/modals/DeleteAccount.tsx:280 1802 1809 msgid "Cancel account deletion" 1803 1810 msgstr "" 1804 1811 ··· 1814 1821 msgid "Cancel search" 1815 1822 msgstr "" 1816 1823 1817 - #: src/components/PostControls/index.tsx:107 1818 - #: src/components/PostControls/index.tsx:138 1819 - #: src/components/PostControls/index.tsx:166 1820 - #: src/state/shell/composer/index.tsx:95 1824 + #: src/components/PostControls/index.tsx:115 1825 + #: src/components/PostControls/index.tsx:146 1826 + #: src/components/PostControls/index.tsx:174 1827 + #: src/state/shell/composer/index.tsx:108 1821 1828 msgid "Cannot interact with a blocked user" 1822 1829 msgstr "" 1823 1830 1824 - #: src/view/com/composer/videos/SubtitleDialog.tsx:152 1831 + #: src/view/com/composer/videos/SubtitleDialog.tsx:153 1825 1832 msgid "Captions (.vtt)" 1826 1833 msgstr "" 1827 1834 1828 - #: src/view/com/composer/videos/SubtitleDialog.tsx:40 1829 - #: src/view/com/composer/videos/SubtitleDialog.tsx:56 1835 + #: src/view/com/composer/videos/SubtitleDialog.tsx:41 1836 + #: src/view/com/composer/videos/SubtitleDialog.tsx:57 1830 1837 msgid "Captions & alt text" 1831 1838 msgstr "" 1832 1839 ··· 1835 1842 msgstr "" 1836 1843 1837 1844 #: src/screens/Settings/components/Email2FAToggle.tsx:31 1845 + #: src/screens/Settings/DeerSettings.tsx:497 1838 1846 msgid "Change" 1839 1847 msgstr "" 1840 1848 ··· 1851 1859 msgid "Change app language" 1852 1860 msgstr "" 1853 1861 1854 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:94 1855 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:98 1862 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:96 1863 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:100 1856 1864 msgid "Change Handle" 1857 1865 msgstr "" 1858 1866 1859 - #: src/components/moderation/ReportDialog/index.tsx:437 1867 + #: src/components/moderation/ReportDialog/index.tsx:440 1860 1868 msgid "Change moderation service" 1861 1869 msgstr "" 1862 1870 ··· 1869 1877 msgid "Change password dialog" 1870 1878 msgstr "" 1871 1879 1872 - #: src/components/moderation/ReportDialog/index.tsx:302 1880 + #: src/components/moderation/ReportDialog/index.tsx:305 1873 1881 msgid "Change report category" 1874 1882 msgstr "" 1875 1883 1876 - #: src/components/moderation/ReportDialog/index.tsx:382 1884 + #: src/components/moderation/ReportDialog/index.tsx:385 1877 1885 msgid "Change report reason" 1878 1886 msgstr "" 1879 1887 ··· 1885 1893 msgid "Changes app icon" 1886 1894 msgstr "" 1887 1895 1888 - #: src/components/forms/HostingProvider.tsx:49 1896 + #: src/components/forms/HostingProvider.tsx:51 1889 1897 #: src/components/forms/HostingProvider.tsx:69 1890 1898 msgid "Changes hosting provider" 1891 1899 msgstr "" ··· 1895 1903 msgstr "" 1896 1904 1897 1905 #: src/lib/hooks/useNotificationHandler.ts:99 1898 - #: src/Navigation.tsx:559 1899 - #: src/view/shell/bottom-bar/BottomBar.tsx:221 1900 - #: src/view/shell/desktop/LeftNav.tsx:608 1901 - #: src/view/shell/Drawer.tsx:466 1906 + #: src/Navigation.tsx:588 1907 + #: src/view/shell/bottom-bar/BottomBar.tsx:225 1908 + #: src/view/shell/desktop/LeftNav.tsx:618 1909 + #: src/view/shell/Drawer.tsx:484 1902 1910 msgid "Chat" 1903 1911 msgstr "" 1904 1912 ··· 1916 1924 msgid "Chat messages - sound" 1917 1925 msgstr "" 1918 1926 1919 - #: src/components/dms/ConvoMenu.tsx:190 1927 + #: src/components/dms/ConvoMenu.tsx:193 1920 1928 msgctxt "toast" 1921 1929 msgid "Chat muted" 1922 1930 msgstr "" 1923 1931 1924 - #: src/Navigation.tsx:569 1925 - #: src/screens/Messages/components/InboxPreview.tsx:22 1932 + #: src/Navigation.tsx:598 1933 + #: src/screens/Messages/components/InboxPreview.tsx:24 1926 1934 msgid "Chat request inbox" 1927 1935 msgstr "" 1928 1936 1929 - #: src/screens/Messages/components/InboxPreview.tsx:62 1937 + #: src/screens/Messages/components/InboxPreview.tsx:64 1930 1938 #: src/screens/Messages/Inbox.tsx:56 1931 1939 #: src/screens/Messages/Inbox.tsx:98 1932 1940 msgid "Chat requests" 1933 1941 msgstr "" 1934 1942 1935 - #: src/components/dms/ConvoMenu.tsx:78 1936 - #: src/Navigation.tsx:564 1937 - #: src/screens/Messages/ChatList.tsx:81 1938 - #: src/screens/Messages/ChatList.tsx:85 1939 - #: src/screens/Messages/ChatList.tsx:380 1943 + #: src/components/dms/ConvoMenu.tsx:81 1944 + #: src/Navigation.tsx:593 1945 + #: src/screens/Messages/ChatList.tsx:82 1946 + #: src/screens/Messages/ChatList.tsx:86 1947 + #: src/screens/Messages/ChatList.tsx:383 1940 1948 msgid "Chat settings" 1941 1949 msgstr "" 1942 1950 ··· 1944 1952 msgid "Chat Settings" 1945 1953 msgstr "" 1946 1954 1947 - #: src/components/dms/ConvoMenu.tsx:192 1955 + #: src/components/dms/ConvoMenu.tsx:195 1948 1956 msgctxt "toast" 1949 1957 msgid "Chat unmuted" 1950 1958 msgstr "" 1951 1959 1952 - #: src/screens/Messages/ChatList.tsx:76 1953 - #: src/screens/Messages/ChatList.tsx:396 1954 - #: src/screens/Messages/ChatList.tsx:420 1960 + #: src/screens/Messages/ChatList.tsx:77 1961 + #: src/screens/Messages/ChatList.tsx:399 1962 + #: src/screens/Messages/ChatList.tsx:423 1955 1963 msgid "Chats" 1956 1964 msgstr "" 1957 1965 ··· 1960 1968 msgid "Check my status" 1961 1969 msgstr "" 1962 1970 1963 - #: src/screens/Login/LoginForm.tsx:304 1971 + #: src/screens/Login/LoginForm.tsx:329 1964 1972 msgid "Check your email for a sign in code and enter it here." 1965 1973 msgstr "" 1966 1974 ··· 1976 1984 msgid "Child Sexual Abuse Material (CSAM)" 1977 1985 msgstr "" 1978 1986 1979 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:399 1987 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:401 1980 1988 msgid "Choose domain verification method" 1981 1989 msgstr "" 1982 1990 1983 - #: src/screens/StarterPack/Wizard/index.tsx:217 1991 + #: src/screens/StarterPack/Wizard/index.tsx:218 1984 1992 msgid "Choose Feeds" 1985 1993 msgstr "" 1986 1994 ··· 1988 1996 msgid "Choose for me" 1989 1997 msgstr "" 1990 1998 1991 - #: src/screens/StarterPack/Wizard/index.tsx:213 1999 + #: src/screens/StarterPack/Wizard/index.tsx:214 1992 2000 msgid "Choose People" 1993 2001 msgstr "" 1994 2002 1995 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:184 2003 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:187 1996 2004 msgid "Choose Post Languages" 1997 2005 msgstr "" 1998 2006 1999 2007 #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 2000 2008 msgid "Choose this color as your avatar" 2009 + msgstr "" 2010 + 2011 + #: src/screens/Settings/AppearanceSettings.tsx:183 2012 + msgid "Choose which color scheme to use:" 2001 2013 msgstr "" 2002 2014 2003 2015 #: src/components/contacts/components/InviteInfo.tsx:56 2004 2016 msgid "Choose who to invite" 2005 2017 msgstr "" 2006 2018 2007 - #: src/components/dialogs/ServerInput.tsx:137 2019 + #: src/components/dialogs/ServerInput.tsx:119 2008 2020 msgid "Choose your account provider" 2009 2021 msgstr "" 2010 2022 2011 - #: src/view/screens/Feeds.tsx:733 2023 + #: src/view/screens/Feeds.tsx:738 2012 2024 msgid "Choose your own timeline! Feeds built by the community help you find content you love." 2013 2025 msgstr "" 2014 2026 2015 - #: src/screens/Signup/StepInfo/index.tsx:273 2027 + #: src/screens/Signup/StepInfo/index.tsx:345 2016 2028 msgid "Choose your password" 2017 2029 msgstr "" 2018 2030 2019 - #: src/screens/Signup/index.tsx:181 2031 + #: src/screens/Signup/index.tsx:187 2020 2032 msgid "Choose your username" 2021 2033 msgstr "" 2022 2034 2023 - #: src/screens/Settings/Settings.tsx:508 2035 + #: src/screens/Settings/Settings.tsx:516 2024 2036 msgid "Clear all storage data" 2025 2037 msgstr "" 2026 2038 2027 - #: src/screens/Settings/Settings.tsx:510 2039 + #: src/screens/Settings/Settings.tsx:518 2028 2040 msgid "Clear all storage data (restart after this)" 2029 2041 msgstr "" 2030 2042 2031 - #: src/screens/Settings/AboutSettings.tsx:116 2032 - #: src/screens/Settings/AboutSettings.tsx:120 2043 + #: src/screens/Settings/AboutSettings.tsx:114 2044 + #: src/screens/Settings/AboutSettings.tsx:118 2033 2045 msgid "Clear image cache" 2034 2046 msgstr "" 2035 2047 2036 - #: src/components/forms/SearchInput.tsx:70 2048 + #: src/components/forms/SearchInput.tsx:73 2037 2049 msgid "Clear search query" 2038 2050 msgstr "" 2039 2051 ··· 2074 2086 msgid "Click to retry failed message" 2075 2087 msgstr "" 2076 2088 2077 - #: src/components/dms/ChatEmptyPill.tsx:39 2089 + #: src/components/dms/ChatEmptyPill.tsx:42 2078 2090 msgid "Clip ๐Ÿด clop ๐Ÿด" 2079 2091 msgstr "" 2080 2092 2081 - #: src/ageAssurance/components/RedirectOverlay.tsx:264 2082 - #: src/ageAssurance/components/RedirectOverlay.tsx:270 2083 - #: src/ageAssurance/components/RedirectOverlay.tsx:320 2084 - #: src/ageAssurance/components/RedirectOverlay.tsx:326 2093 + #: src/ageAssurance/components/RedirectOverlay.tsx:268 2094 + #: src/ageAssurance/components/RedirectOverlay.tsx:274 2095 + #: src/ageAssurance/components/RedirectOverlay.tsx:324 2096 + #: src/ageAssurance/components/RedirectOverlay.tsx:330 2085 2097 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:172 2086 2098 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 2087 2099 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:231 2088 2100 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 2089 - #: src/components/dialogs/GifSelect.tsx:269 2090 - #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:158 2091 - #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:167 2101 + #: src/components/dialogs/GifSelect.tsx:272 2102 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:161 2103 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:170 2092 2104 #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163 2093 2105 #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171 2094 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 2095 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 2106 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:181 2107 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:190 2096 2108 #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 2097 2109 #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 2098 - #: src/components/dialogs/SearchablePeopleList.tsx:295 2099 - #: src/components/dialogs/StarterPackDialog.tsx:179 2110 + #: src/components/dialogs/SearchablePeopleList.tsx:298 2111 + #: src/components/dialogs/StarterPackDialog.tsx:182 2100 2112 #: src/components/dms/AfterReportDialog.tsx:93 2101 2113 #: src/components/dms/AfterReportDialog.tsx:98 2102 2114 #: src/components/dms/AfterReportDialog.tsx:208 2103 2115 #: src/components/dms/AfterReportDialog.tsx:213 2104 - #: src/components/dms/EmojiPopup.android.tsx:58 2116 + #: src/components/dms/EmojiPopup.android.tsx:61 2105 2117 #: src/components/live/EditLiveDialog.tsx:215 2106 2118 #: src/components/live/EditLiveDialog.tsx:221 2107 2119 #: src/components/NewskieDialog.tsx:167 2108 2120 #: src/components/NewskieDialog.tsx:173 2109 2121 #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208 2110 - #: src/components/ProgressGuide/FollowDialog.tsx:445 2122 + #: src/components/ProgressGuide/FollowDialog.tsx:446 2111 2123 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118 2112 2124 #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124 2113 - #: src/components/verification/VerificationsDialog.tsx:144 2114 - #: src/components/verification/VerifierDialog.tsx:150 2125 + #: src/components/verification/VerificationsDialog.tsx:145 2126 + #: src/components/verification/VerifierDialog.tsx:155 2115 2127 #: src/components/WhoCanReply.tsx:234 2116 2128 #: src/components/WhoCanReply.tsx:241 2117 2129 #: src/screens/Settings/components/ChangePasswordDialog.tsx:287 2118 2130 #: src/screens/Settings/components/ChangePasswordDialog.tsx:292 2119 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:335 2131 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:338 2120 2132 #: src/view/com/feeds/MissingFeed.tsx:210 2121 2133 #: src/view/com/feeds/MissingFeed.tsx:217 2122 2134 msgid "Close" 2123 2135 msgstr "" 2124 2136 2125 - #: src/components/Dialog/index.web.tsx:118 2126 - #: src/components/Dialog/index.web.tsx:296 2137 + #: src/components/Dialog/index.web.tsx:119 2138 + #: src/components/Dialog/index.web.tsx:300 2127 2139 msgid "Close active dialog" 2128 2140 msgstr "" 2129 2141 ··· 2137 2149 2138 2150 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:222 2139 2151 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:228 2140 - #: src/components/dialogs/GifSelect.tsx:263 2141 - #: src/components/verification/VerificationsDialog.tsx:136 2142 - #: src/components/verification/VerifierDialog.tsx:142 2143 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:204 2144 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:298 2145 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:330 2152 + #: src/components/dialogs/GifSelect.tsx:266 2153 + #: src/components/verification/VerificationsDialog.tsx:137 2154 + #: src/components/verification/VerifierDialog.tsx:147 2155 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:207 2156 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:301 2157 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:333 2146 2158 msgid "Close dialog" 2147 2159 msgstr "" 2148 2160 2149 - #: src/view/shell/index.web.tsx:130 2161 + #: src/view/shell/index.web.tsx:162 2150 2162 msgid "Close drawer menu" 2151 2163 msgstr "" 2152 2164 ··· 2155 2167 msgid "Close emoji picker" 2156 2168 msgstr "" 2157 2169 2158 - #: src/components/dialogs/GifSelect.tsx:159 2170 + #: src/components/dialogs/GifSelect.tsx:162 2159 2171 msgid "Close GIF dialog" 2160 2172 msgstr "" 2161 2173 2162 - #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:31 2174 + #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36 2163 2175 msgid "Close image" 2164 2176 msgstr "" 2165 2177 ··· 2173 2185 msgid "Close menu" 2174 2186 msgstr "" 2175 2187 2176 - #: src/components/Menu/index.tsx:346 2188 + #: src/components/Menu/index.tsx:348 2177 2189 msgid "Close this dialog" 2178 2190 msgstr "" 2179 2191 ··· 2185 2197 msgid "Closes password update alert" 2186 2198 msgstr "" 2187 2199 2188 - #: src/view/com/composer/Composer.tsx:1058 2200 + #: src/view/com/composer/Composer.tsx:1072 2189 2201 msgid "Closes post composer and discards post draft" 2190 2202 msgstr "" 2191 2203 ··· 2194 2206 msgid "Closes the emoji picker" 2195 2207 msgstr "" 2196 2208 2197 - #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:32 2209 + #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 2198 2210 msgid "Closes viewer for header image" 2199 2211 msgstr "" 2200 2212 2201 - #: src/view/com/notifications/NotificationFeedItem.tsx:601 2213 + #: src/screens/Settings/Settings.tsx:262 2214 + #: src/view/shell/desktop/RightNav.tsx:128 2215 + #: src/view/shell/desktop/RightNav.tsx:131 2216 + #: src/view/shell/Drawer.tsx:399 2217 + msgid "Code" 2218 + msgstr "" 2219 + 2220 + #: src/view/com/notifications/NotificationFeedItem.tsx:606 2202 2221 msgid "Collapse list of users" 2203 2222 msgstr "" 2204 2223 2205 - #: src/view/com/notifications/NotificationFeedItem.tsx:926 2224 + #: src/view/com/notifications/NotificationFeedItem.tsx:931 2206 2225 msgid "Collapses list of users for a given notification" 2207 2226 msgstr "" 2208 2227 2209 2228 #: src/components/dialogs/Embed.tsx:154 2210 - #: src/screens/Settings/AppearanceSettings.tsx:81 2229 + #: src/screens/Settings/AppearanceSettings.tsx:133 2211 2230 msgid "Color mode" 2212 2231 msgstr "" 2213 2232 ··· 2215 2234 msgid "Color theme" 2216 2235 msgstr "" 2217 2236 2237 + #: src/screens/Settings/AppearanceSettings.tsx:179 2238 + #: src/screens/Settings/AppearanceSettings.tsx:186 2239 + msgid "Color Theme" 2240 + msgstr "" 2241 + 2242 + #: src/screens/Settings/DeerSettings.tsx:518 2243 + #: src/screens/Settings/DeerSettings.tsx:523 2244 + #: src/screens/Settings/DeerSettings.tsx:556 2245 + #: src/screens/Settings/DeerSettings.tsx:561 2246 + msgid "Combine reposts into a horizontal carousel" 2247 + msgstr "" 2248 + 2218 2249 #: src/lib/interests.ts:55 2219 2250 msgid "Comedy" 2220 2251 msgstr "" ··· 2224 2255 msgstr "" 2225 2256 2226 2257 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 2227 - #: src/Navigation.tsx:343 2258 + #: src/Navigation.tsx:364 2228 2259 #: src/view/screens/CommunityGuidelines.tsx:37 2229 2260 msgid "Community Guidelines" 2230 2261 msgstr "" ··· 2233 2264 msgid "Complete onboarding and start using your account" 2234 2265 msgstr "" 2235 2266 2236 - #: src/screens/Signup/index.tsx:183 2267 + #: src/screens/Signup/index.tsx:189 2237 2268 msgid "Complete the challenge" 2238 2269 msgstr "" 2239 2270 2240 2271 #: src/view/com/feeds/ComposerPrompt.tsx:143 2241 - #: src/view/shell/desktop/LeftNav.tsx:573 2272 + #: src/view/shell/desktop/LeftNav.tsx:583 2242 2273 msgid "Compose new post" 2243 2274 msgstr "" 2244 2275 2245 - #: src/view/com/composer/Composer.tsx:959 2276 + #: src/view/com/composer/Composer.tsx:965 2246 2277 msgid "Compose posts up to {0, plural, other {# characters}} in length" 2247 2278 msgstr "" 2248 2279 2249 - #: src/screens/PostThread/components/ThreadComposePrompt.tsx:62 2280 + #: src/screens/PostThread/components/ThreadComposePrompt.tsx:64 2250 2281 msgid "Compose reply" 2251 2282 msgstr "" 2252 2283 2253 - #: src/view/com/composer/Composer.tsx:1891 2284 + #: src/view/com/composer/Composer.tsx:1924 2254 2285 msgid "Compressing video..." 2255 2286 msgstr "" 2256 2287 ··· 2278 2309 msgid "Confirm content language settings" 2279 2310 msgstr "" 2280 2311 2281 - #: src/view/com/modals/DeleteAccount.tsx:264 2312 + #: src/view/com/modals/DeleteAccount.tsx:270 2282 2313 msgid "Confirm delete account" 2283 2314 msgstr "" 2284 2315 ··· 2290 2321 msgstr "" 2291 2322 2292 2323 #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 2293 - #: src/screens/Login/LoginForm.tsx:284 2324 + #: src/screens/Login/LoginForm.tsx:309 2294 2325 #: src/screens/Settings/components/ChangePasswordDialog.tsx:186 2295 2326 #: src/screens/Settings/components/ChangePasswordDialog.tsx:190 2296 2327 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 2297 2328 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 2298 2329 #: src/view/com/modals/DeleteAccount.tsx:220 2299 - #: src/view/com/modals/DeleteAccount.tsx:226 2330 + #: src/view/com/modals/DeleteAccount.tsx:229 2300 2331 msgid "Confirmation code" 2301 2332 msgstr "" 2302 2333 2303 - #: src/screens/Login/LoginForm.tsx:340 2334 + #: src/screens/Login/LoginForm.tsx:365 2304 2335 msgid "Connecting..." 2305 2336 msgstr "" 2306 2337 2307 - #: src/ageAssurance/components/RedirectOverlay.tsx:296 2338 + #: src/ageAssurance/components/RedirectOverlay.tsx:300 2308 2339 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207 2309 2340 msgid "Connection issue" 2310 2341 msgstr "" 2311 2342 2343 + #: src/screens/Settings/DeerSettings.tsx:494 2344 + msgid "Constellation Instance" 2345 + msgstr "" 2346 + 2347 + #: src/screens/Settings/DeerSettings.tsx:503 2348 + msgid "Constellation is used to supplement AppView responses for custom verifications and nuclear block bypass, via backlinks. Current instance: {constellationInstance}" 2349 + msgstr "" 2350 + 2351 + #: src/screens/Settings/DeerSettings.tsx:184 2352 + #: src/screens/Settings/DeerSettings.tsx:187 2353 + msgid "Constellations instance URL" 2354 + msgstr "" 2355 + 2312 2356 #: src/ageAssurance/components/NoAccessScreen.tsx:305 2313 2357 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:138 2314 2358 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:29 ··· 2316 2360 msgstr "" 2317 2361 2318 2362 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 2319 - #: src/screens/Signup/index.tsx:222 2320 - #: src/screens/Signup/index.tsx:225 2363 + #: src/screens/Signup/index.tsx:231 2321 2364 msgid "Contact support" 2322 2365 msgstr "" 2323 2366 ··· 2342 2385 msgid "Content & Media" 2343 2386 msgstr "" 2344 2387 2345 - #: src/screens/Settings/Settings.tsx:210 2346 - #: src/screens/Settings/Settings.tsx:213 2388 + #: src/screens/Settings/Settings.tsx:212 2389 + #: src/screens/Settings/Settings.tsx:215 2347 2390 msgid "Content and media" 2348 2391 msgstr "" 2349 2392 2350 - #: src/Navigation.tsx:518 2393 + #: src/Navigation.tsx:547 2351 2394 msgid "Content and Media" 2352 2395 msgstr "" 2353 2396 ··· 2378 2421 msgstr "" 2379 2422 2380 2423 #: src/components/moderation/ModerationDetailsDialog.tsx:52 2381 - #: src/components/moderation/ScreenHider.tsx:99 2424 + #: src/components/moderation/ScreenHider.tsx:102 2382 2425 #: src/lib/moderation/useGlobalLabelStrings.ts:22 2383 2426 #: src/lib/moderation/useModerationCauseDescription.ts:46 2384 2427 msgid "Content Warning" ··· 2388 2431 msgid "Content warnings" 2389 2432 msgstr "" 2390 2433 2391 - #: src/components/Menu/index.web.tsx:91 2434 + #: src/components/Menu/index.web.tsx:92 2392 2435 msgid "Context menu backdrop, click to close the menu." 2393 2436 msgstr "" 2394 2437 ··· 2401 2444 msgid "Continue" 2402 2445 msgstr "" 2403 2446 2404 - #: src/components/AccountList.tsx:135 2447 + #: src/components/AccountList.tsx:138 2405 2448 msgid "Continue as {0} (currently signed in)" 2406 2449 msgstr "" 2407 2450 ··· 2431 2474 msgid "Conversation deleted" 2432 2475 msgstr "" 2433 2476 2434 - #: src/screens/Messages/components/ChatListItem.tsx:198 2477 + #: src/screens/Messages/components/ChatListItem.tsx:202 2435 2478 msgid "Conversation deleted" 2436 2479 msgstr "" 2437 2480 2438 - #: src/screens/Settings/AboutSettings.tsx:151 2481 + #: src/screens/Settings/AboutSettings.tsx:149 2439 2482 msgid "Copied build version to clipboard" 2440 2483 msgstr "" 2441 2484 2442 2485 #: src/components/dms/MessageContextMenu.tsx:57 2443 2486 #: src/components/PostControls/DiscoverDebug.tsx:36 2444 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:249 2445 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:72 2487 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:419 2488 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:84 2489 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:97 2446 2490 #: src/lib/sharing.ts:25 2447 2491 #: src/lib/sharing.ts:41 2448 2492 msgid "Copied to clipboard" ··· 2453 2497 msgid "Copied!" 2454 2498 msgstr "" 2455 2499 2456 - #: src/screens/Settings/AboutSettings.tsx:127 2500 + #: src/screens/Settings/AboutSettings.tsx:125 2457 2501 msgid "Copies build version to clipboard" 2458 2502 msgstr "" 2459 2503 ··· 2465 2509 msgid "Copy App Password" 2466 2510 msgstr "" 2467 2511 2468 - #: src/view/com/profile/ProfileMenu.tsx:493 2469 - #: src/view/com/profile/ProfileMenu.tsx:496 2512 + #: src/view/com/profile/ProfileMenu.tsx:572 2513 + #: src/view/com/profile/ProfileMenu.tsx:575 2470 2514 msgid "Copy at:// URI" 2471 2515 msgstr "" 2472 2516 2473 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 2474 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 2517 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:212 2518 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:215 2475 2519 msgid "Copy author DID" 2476 2520 msgstr "" 2477 2521 ··· 2480 2524 msgid "Copy code" 2481 2525 msgstr "" 2482 2526 2483 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:502 2484 - #: src/view/com/profile/ProfileMenu.tsx:502 2485 - #: src/view/com/profile/ProfileMenu.tsx:505 2527 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:504 2528 + #: src/view/com/profile/ProfileMenu.tsx:581 2529 + #: src/view/com/profile/ProfileMenu.tsx:584 2486 2530 msgid "Copy DID" 2487 2531 msgstr "" 2488 2532 2489 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:434 2533 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:436 2490 2534 msgid "Copy host" 2491 2535 msgstr "" 2492 2536 2493 2537 #: src/components/StarterPack/ShareDialog.tsx:113 2494 - #: src/screens/StarterPack/StarterPackScreen.tsx:619 2538 + #: src/screens/StarterPack/StarterPackScreen.tsx:622 2495 2539 msgid "Copy link" 2496 2540 msgstr "" 2497 2541 ··· 2499 2543 msgid "Copy Link" 2500 2544 msgstr "" 2501 2545 2502 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165 2503 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:169 2546 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:168 2547 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:172 2504 2548 msgid "Copy link to list" 2505 2549 msgstr "" 2506 2550 2507 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:127 2508 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 2509 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 2510 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 2551 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:202 2552 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:205 2553 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:112 2554 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:115 2555 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:121 2511 2556 msgid "Copy link to post" 2512 2557 msgstr "" 2513 2558 2514 - #: src/view/com/profile/ProfileMenu.tsx:269 2515 - #: src/view/com/profile/ProfileMenu.tsx:280 2559 + #: src/view/com/profile/ProfileMenu.tsx:292 2560 + #: src/view/com/profile/ProfileMenu.tsx:303 2516 2561 msgid "Copy link to profile" 2517 2562 msgstr "" 2518 2563 2519 - #: src/screens/StarterPack/StarterPackScreen.tsx:612 2564 + #: src/screens/StarterPack/StarterPackScreen.tsx:615 2520 2565 msgid "Copy link to starter pack" 2521 2566 msgstr "" 2522 2567 ··· 2525 2570 msgid "Copy message text" 2526 2571 msgstr "" 2527 2572 2528 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 2529 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 2573 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:203 2574 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:206 2530 2575 msgid "Copy post at:// URI" 2531 2576 msgstr "" 2532 2577 2533 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 2534 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:512 2578 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 2579 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 2535 2580 msgid "Copy post text" 2536 2581 msgstr "" 2537 2582 ··· 2539 2584 msgid "Copy QR code" 2540 2585 msgstr "" 2541 2586 2542 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:455 2587 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:457 2543 2588 msgid "Copy TXT record value" 2544 2589 msgstr "" 2545 2590 2591 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:212 2592 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:215 2593 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 2594 + #: src/view/com/profile/ProfileMenu.tsx:316 2595 + #: src/view/com/profile/ProfileMenu.tsx:328 2596 + msgid "Copy via bsky.app" 2597 + msgstr "" 2598 + 2546 2599 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 2547 2600 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 2548 - #: src/Navigation.tsx:348 2601 + #: src/Navigation.tsx:369 2549 2602 #: src/view/screens/CopyrightPolicy.tsx:34 2550 2603 msgid "Copyright Policy" 2551 2604 msgstr "" ··· 2587 2640 msgid "Could not load list" 2588 2641 msgstr "" 2589 2642 2590 - #: src/components/dms/ConvoMenu.tsx:196 2643 + #: src/components/dms/ConvoMenu.tsx:199 2591 2644 msgid "Could not mute chat" 2592 2645 msgstr "" 2593 2646 ··· 2617 2670 2618 2671 #. Text on button to create a new starter pack 2619 2672 #. Text on button to create a new starter pack 2620 - #: src/components/dialogs/StarterPackDialog.tsx:112 2621 - #: src/components/dialogs/StarterPackDialog.tsx:201 2673 + #: src/components/dialogs/StarterPackDialog.tsx:113 2674 + #: src/components/dialogs/StarterPackDialog.tsx:204 2622 2675 #: src/components/StarterPack/ProfileStarterPacks.tsx:328 2623 2676 msgid "Create" 2624 2677 msgstr "" ··· 2634 2687 2635 2688 #: src/components/StarterPack/ProfileStarterPacks.tsx:206 2636 2689 #: src/components/StarterPack/ProfileStarterPacks.tsx:315 2637 - #: src/Navigation.tsx:599 2690 + #: src/Navigation.tsx:628 2638 2691 msgid "Create a starter pack" 2639 2692 msgstr "" 2640 2693 ··· 2649 2702 2650 2703 #: src/components/WelcomeModal.tsx:155 2651 2704 #: src/components/WelcomeModal.tsx:163 2652 - #: src/view/com/auth/SplashScreen.tsx:72 2705 + #: src/view/com/auth/SplashScreen.tsx:76 2653 2706 #: src/view/com/auth/SplashScreen.web.tsx:121 2654 - #: src/view/shell/bottom-bar/BottomBar.tsx:345 2655 - #: src/view/shell/bottom-bar/BottomBar.tsx:350 2707 + #: src/view/shell/bottom-bar/BottomBar.tsx:351 2708 + #: src/view/shell/bottom-bar/BottomBar.tsx:356 2656 2709 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 2657 2710 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 2658 2711 #: src/view/shell/NavSignupCard.tsx:47 ··· 2660 2713 msgid "Create account" 2661 2714 msgstr "" 2662 2715 2663 - #: src/screens/Signup/index.tsx:124 2716 + #: src/screens/Signup/index.tsx:130 2664 2717 msgid "Create Account" 2665 2718 msgstr "" 2666 2719 2667 2720 #: src/components/dialogs/Signin.tsx:86 2668 2721 #: src/components/dialogs/Signin.tsx:88 2669 - #: src/screens/Hashtag.tsx:247 2670 - #: src/screens/Search/SearchResults.tsx:303 2722 + #: src/screens/Hashtag.tsx:250 2723 + #: src/screens/Search/SearchResults.tsx:305 2671 2724 msgid "Create an account" 2672 2725 msgstr "" 2673 2726 ··· 2684 2737 msgid "Create another" 2685 2738 msgstr "" 2686 2739 2687 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:350 2740 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:354 2688 2741 msgid "Create moderation list" 2689 2742 msgstr "" 2690 2743 2691 - #: src/view/com/auth/SplashScreen.tsx:64 2744 + #: src/view/com/auth/SplashScreen.tsx:68 2692 2745 #: src/view/com/auth/SplashScreen.web.tsx:113 2693 2746 msgid "Create new account" 2694 2747 msgstr "" 2695 2748 2696 2749 #. Accessibility label for button to create a moderation report for the selected option 2697 - #: src/components/moderation/ReportDialog/index.tsx:702 2698 - #: src/components/moderation/ReportDialog/index.tsx:748 2750 + #: src/components/moderation/ReportDialog/index.tsx:706 2751 + #: src/components/moderation/ReportDialog/index.tsx:752 2699 2752 msgid "Create report for {0}" 2700 2753 msgstr "" 2701 2754 2702 - #: src/components/dialogs/StarterPackDialog.tsx:107 2703 - #: src/components/dialogs/StarterPackDialog.tsx:196 2755 + #: src/components/dialogs/StarterPackDialog.tsx:108 2756 + #: src/components/dialogs/StarterPackDialog.tsx:199 2704 2757 msgid "Create starter pack" 2705 2758 msgstr "" 2706 2759 2707 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:349 2760 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:353 2708 2761 msgid "Create user list" 2709 2762 msgstr "" 2710 2763 ··· 2718 2771 2719 2772 #: src/lib/interests.ts:57 2720 2773 msgid "Culture" 2721 - msgstr "" 2722 - 2723 - #: src/components/dialogs/ServerInput.tsx:155 2724 - #: src/components/dialogs/ServerInput.tsx:157 2725 - msgid "Custom" 2726 2774 msgstr "" 2727 2775 2728 2776 #: src/components/dialogs/Embed.tsx:144 ··· 2743 2791 2744 2792 #: src/components/dialogs/Embed.tsx:168 2745 2793 #: src/components/dialogs/Embed.tsx:170 2746 - #: src/screens/Settings/AppearanceSettings.tsx:93 2747 - #: src/screens/Settings/AppearanceSettings.tsx:114 2794 + #: src/screens/Settings/AppearanceSettings.tsx:145 2795 + #: src/screens/Settings/AppearanceSettings.tsx:166 2748 2796 msgid "Dark" 2749 2797 msgstr "" 2750 2798 ··· 2757 2805 msgid "Dark mode" 2758 2806 msgstr "" 2759 2807 2760 - #: src/screens/Settings/AppearanceSettings.tsx:106 2808 + #: src/screens/Settings/AppearanceSettings.tsx:158 2761 2809 msgid "Dark theme" 2762 2810 msgstr "" 2763 2811 2764 - #: src/screens/Signup/StepInfo/index.tsx:301 2812 + #: src/screens/Signup/StepInfo/index.tsx:373 2765 2813 msgid "Date of birth" 2766 2814 msgstr "" 2767 2815 ··· 2771 2819 msgid "Deactivate account" 2772 2820 msgstr "" 2773 2821 2774 - #: src/screens/Settings/Settings.tsx:473 2822 + #: src/screens/Settings/Settings.tsx:481 2775 2823 msgid "Debug Moderation" 2776 2824 msgstr "" 2777 2825 ··· 2783 2831 msgid "Deepfake adult content" 2784 2832 msgstr "" 2785 2833 2786 - #: src/screens/Settings/AppearanceSettings.tsx:156 2834 + #: src/screens/Settings/AppearanceSettings.tsx:112 2835 + #: src/screens/Settings/Settings.tsx:238 2836 + msgid "Deer" 2837 + msgstr "" 2838 + 2839 + #: src/screens/Settings/AppearanceSettings.tsx:249 2787 2840 msgid "Default" 2788 2841 msgstr "" 2789 2842 ··· 2792 2845 msgstr "" 2793 2846 2794 2847 #: src/components/dms/MessageContextMenu.tsx:202 2795 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:762 2848 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1039 2796 2849 #: src/screens/Messages/components/ChatStatusInfo.tsx:55 2797 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:280 2850 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:283 2798 2851 #: src/screens/Settings/AppPasswords.tsx:212 2799 - #: src/screens/StarterPack/StarterPackScreen.tsx:601 2800 - #: src/screens/StarterPack/StarterPackScreen.tsx:690 2801 - #: src/screens/StarterPack/StarterPackScreen.tsx:762 2852 + #: src/screens/StarterPack/StarterPackScreen.tsx:604 2853 + #: src/screens/StarterPack/StarterPackScreen.tsx:693 2854 + #: src/screens/StarterPack/StarterPackScreen.tsx:765 2802 2855 msgid "Delete" 2803 2856 msgstr "" 2804 2857 ··· 2824 2877 msgid "Delete chat" 2825 2878 msgstr "" 2826 2879 2827 - #: src/screens/Settings/Settings.tsx:480 2880 + #: src/screens/Settings/Settings.tsx:488 2828 2881 msgid "Delete chat declaration record" 2829 2882 msgstr "" 2830 2883 ··· 2847 2900 msgid "Delete for me" 2848 2901 msgstr "" 2849 2902 2850 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:204 2851 2903 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:207 2904 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:210 2852 2905 msgid "Delete list" 2853 2906 msgstr "" 2854 2907 ··· 2860 2913 msgid "Delete message for me" 2861 2914 msgstr "" 2862 2915 2863 - #: src/view/com/modals/DeleteAccount.tsx:267 2916 + #: src/view/com/modals/DeleteAccount.tsx:273 2864 2917 msgid "Delete my account" 2865 2918 msgstr "" 2866 2919 2867 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:743 2868 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 2869 - #: src/view/com/composer/Composer.tsx:969 2920 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1020 2921 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1022 2922 + #: src/view/com/composer/Composer.tsx:975 2870 2923 msgid "Delete post" 2871 2924 msgstr "" 2872 2925 2873 - #: src/screens/StarterPack/StarterPackScreen.tsx:595 2874 - #: src/screens/StarterPack/StarterPackScreen.tsx:753 2926 + #: src/screens/StarterPack/StarterPackScreen.tsx:598 2927 + #: src/screens/StarterPack/StarterPackScreen.tsx:756 2875 2928 msgid "Delete starter pack" 2876 2929 msgstr "" 2877 2930 2878 - #: src/screens/StarterPack/StarterPackScreen.tsx:656 2931 + #: src/screens/StarterPack/StarterPackScreen.tsx:659 2879 2932 msgid "Delete starter pack?" 2880 2933 msgstr "" 2881 2934 2882 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275 2935 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:278 2883 2936 msgid "Delete this list?" 2884 2937 msgstr "" 2885 2938 2886 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:757 2939 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1034 2887 2940 msgid "Delete this post?" 2888 2941 msgstr "" 2889 2942 2890 - #: src/components/Post/Embed/index.tsx:179 2943 + #: src/components/Post/Embed/index.tsx:196 2891 2944 msgid "Deleted" 2892 2945 msgstr "" 2893 2946 2894 2947 #: src/components/dms/MessagesListHeader.tsx:121 2895 - #: src/screens/Messages/components/ChatListItem.tsx:131 2948 + #: src/screens/Messages/components/ChatListItem.tsx:135 2896 2949 msgid "Deleted Account" 2897 2950 msgstr "" 2898 2951 ··· 2907 2960 msgid "Deleted list" 2908 2961 msgstr "" 2909 2962 2910 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:436 2911 - #: src/screens/Profile/Header/EditProfileDialog.tsx:363 2912 - #: src/screens/Profile/Header/EditProfileDialog.tsx:370 2963 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:440 2964 + #: src/screens/Profile/Header/EditProfileDialog.tsx:369 2965 + #: src/screens/Profile/Header/EditProfileDialog.tsx:376 2913 2966 msgid "Description" 2914 2967 msgstr "" 2915 2968 ··· 2918 2971 msgid "Descriptive alt text" 2919 2972 msgstr "" 2920 2973 2921 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:647 2922 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:657 2974 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:924 2975 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:934 2923 2976 msgid "Detach quote" 2924 2977 msgstr "" 2925 2978 2926 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:793 2979 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1070 2927 2980 msgid "Detach quote post?" 2928 2981 msgstr "" 2929 2982 2930 - #: src/screens/Settings/AboutSettings.tsx:140 2983 + #: src/screens/Settings/AboutSettings.tsx:138 2931 2984 msgctxt "toast" 2932 2985 msgid "Developer mode disabled" 2933 2986 msgstr "" 2934 2987 2935 - #: src/screens/Settings/AboutSettings.tsx:134 2988 + #: src/screens/Settings/AboutSettings.tsx:132 2936 2989 msgctxt "toast" 2937 2990 msgid "Developer mode enabled" 2938 2991 msgstr "" 2939 2992 2940 - #: src/screens/Settings/Settings.tsx:289 2941 - #: src/screens/Settings/Settings.tsx:292 2993 + #: src/screens/Settings/Settings.tsx:297 2994 + #: src/screens/Settings/Settings.tsx:300 2942 2995 msgid "Developer options" 2943 2996 msgstr "" 2944 2997 ··· 2946 2999 msgid "Dialog: adjust who can interact with this post" 2947 3000 msgstr "" 2948 3001 2949 - #: src/screens/Settings/AppearanceSettings.tsx:110 3002 + #: src/screens/Settings/AppearanceSettings.tsx:162 2950 3003 msgid "Dim" 2951 3004 msgstr "" 2952 3005 3006 + #: src/screens/Settings/DeerSettings.tsx:770 3007 + #: src/screens/Settings/DeerSettings.tsx:775 3008 + msgid "Disable \"followed by\" metrics" 3009 + msgstr "" 3010 + 2953 3011 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 2954 3012 #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 2955 3013 msgid "Disable 2FA" ··· 2963 3021 msgid "Disable Email 2FA" 2964 3022 msgstr "" 2965 3023 3024 + #: src/screens/Settings/DeerSettings.tsx:746 3025 + #: src/screens/Settings/DeerSettings.tsx:751 3026 + msgid "Disable followers metrics" 3027 + msgstr "" 3028 + 3029 + #: src/screens/Settings/DeerSettings.tsx:758 3030 + #: src/screens/Settings/DeerSettings.tsx:763 3031 + msgid "Disable following metrics" 3032 + msgstr "" 3033 + 2966 3034 #: src/screens/Settings/AccessibilitySettings.tsx:89 2967 3035 #: src/screens/Settings/AccessibilitySettings.tsx:94 2968 3036 msgid "Disable haptic feedback" 2969 3037 msgstr "" 2970 3038 3039 + #: src/screens/Settings/DeerSettings.tsx:686 3040 + #: src/screens/Settings/DeerSettings.tsx:691 3041 + msgid "Disable likes metrics" 3042 + msgstr "" 3043 + 3044 + #: src/screens/Settings/DeerSettings.tsx:782 3045 + #: src/screens/Settings/DeerSettings.tsx:787 3046 + msgid "Disable posts metrics" 3047 + msgstr "" 3048 + 2971 3049 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:622 2972 3050 msgid "Disable quote posts of this post" 2973 3051 msgstr "" 2974 3052 3053 + #: src/screens/Settings/DeerSettings.tsx:710 3054 + #: src/screens/Settings/DeerSettings.tsx:715 3055 + msgid "Disable quotes metrics" 3056 + msgstr "" 3057 + 2975 3058 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:459 2976 3059 msgid "Disable replies entirely" 2977 3060 msgstr "" 2978 3061 3062 + #: src/screens/Settings/DeerSettings.tsx:734 3063 + #: src/screens/Settings/DeerSettings.tsx:739 3064 + msgid "Disable reply metrics" 3065 + msgstr "" 3066 + 3067 + #: src/screens/Settings/DeerSettings.tsx:698 3068 + #: src/screens/Settings/DeerSettings.tsx:703 3069 + msgid "Disable Reposts Metrics" 3070 + msgstr "" 3071 + 3072 + #: src/screens/Settings/DeerSettings.tsx:722 3073 + #: src/screens/Settings/DeerSettings.tsx:727 3074 + msgid "Disable saves metrics" 3075 + msgstr "" 3076 + 2979 3077 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 2980 3078 msgid "Disable subtitles" 2981 3079 msgstr "" 2982 3080 3081 + #: src/screens/Settings/DeerSettings.tsx:660 3082 + #: src/screens/Settings/DeerSettings.tsx:665 3083 + msgid "Disable verify email reminder" 3084 + msgstr "" 3085 + 3086 + #: src/screens/Settings/DeerSettings.tsx:612 3087 + #: src/screens/Settings/DeerSettings.tsx:617 3088 + msgid "Disable via repost notifications" 3089 + msgstr "" 3090 + 2983 3091 #: src/lib/moderation/useLabelBehaviorDescription.ts:35 2984 3092 #: src/lib/moderation/useLabelBehaviorDescription.ts:45 2985 3093 #: src/lib/moderation/useLabelBehaviorDescription.ts:71 ··· 2989 3097 msgid "Disabled" 2990 3098 msgstr "" 2991 3099 2992 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:92 2993 - #: src/screens/Profile/Header/EditProfileDialog.tsx:82 2994 - #: src/view/com/composer/Composer.tsx:807 2995 - #: src/view/com/composer/Composer.tsx:1002 3100 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:93 3101 + #: src/screens/Profile/Header/EditProfileDialog.tsx:84 3102 + #: src/view/com/composer/Composer.tsx:811 3103 + #: src/view/com/composer/Composer.tsx:1008 2996 3104 msgid "Discard" 2997 3105 msgstr "" 2998 3106 2999 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:89 3000 - #: src/screens/Profile/Header/EditProfileDialog.tsx:79 3107 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:90 3108 + #: src/screens/Profile/Header/EditProfileDialog.tsx:81 3001 3109 msgid "Discard changes?" 3002 3110 msgstr "" 3003 3111 3004 - #: src/view/com/composer/Composer.tsx:804 3112 + #: src/view/com/composer/Composer.tsx:808 3005 3113 msgid "Discard draft?" 3006 3114 msgstr "" 3007 3115 3008 - #: src/view/com/composer/Composer.tsx:994 3116 + #: src/view/com/composer/Composer.tsx:1000 3009 3117 msgid "Discard post?" 3010 3118 msgstr "" 3011 3119 ··· 3020 3128 msgstr "" 3021 3129 3022 3130 #: src/screens/Search/Explore.tsx:436 3023 - #: src/view/screens/Feeds.tsx:730 3131 + #: src/view/screens/Feeds.tsx:735 3024 3132 msgid "Discover New Feeds" 3025 3133 msgstr "" 3026 3134 ··· 3032 3140 msgid "Dismiss banner" 3033 3141 msgstr "" 3034 3142 3035 - #: src/view/com/composer/Composer.tsx:1815 3143 + #: src/view/com/composer/Composer.tsx:1848 3036 3144 msgid "Dismiss error" 3037 3145 msgstr "" 3038 3146 ··· 3040 3148 msgid "Dismiss getting started guide" 3041 3149 msgstr "" 3042 3150 3043 - #: src/screens/Search/modules/ExploreInterestsCard.tsx:43 3151 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:46 3044 3152 msgid "Dismiss interests" 3045 3153 msgstr "" 3046 3154 3047 - #: src/components/interstitials/TrendingVideos.tsx:89 3155 + #: src/components/interstitials/TrendingVideos.tsx:90 3048 3156 msgid "Dismiss this section" 3049 3157 msgstr "" 3050 3158 3051 - #: src/components/FeedInterstitials.tsx:589 3159 + #: src/components/FeedInterstitials.tsx:593 3052 3160 msgid "Dismiss this suggestion" 3053 3161 msgstr "" 3054 3162 3163 + #: src/screens/Settings/DeerSettings.tsx:580 3164 + #: src/screens/Settings/DeerSettings.tsx:585 3165 + msgid "Display images in higher quality" 3166 + msgstr "" 3167 + 3055 3168 #: src/screens/Settings/AccessibilitySettings.tsx:69 3056 3169 #: src/screens/Settings/AccessibilitySettings.tsx:74 3057 3170 msgid "Display larger alt text badges" 3058 3171 msgstr "" 3059 3172 3060 - #: src/screens/Profile/Header/EditProfileDialog.tsx:313 3061 3173 #: src/screens/Profile/Header/EditProfileDialog.tsx:319 3174 + #: src/screens/Profile/Header/EditProfileDialog.tsx:325 3062 3175 msgid "Display name" 3063 3176 msgstr "" 3064 3177 ··· 3066 3179 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." 3067 3180 msgstr "" 3068 3181 3069 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:403 3182 + #: src/view/com/profile/ProfileMenu.tsx:360 3183 + #: src/view/com/profile/ProfileMenu.tsx:372 3184 + msgid "Divorce mutual" 3185 + msgstr "" 3186 + 3070 3187 #: src/screens/Settings/components/ChangeHandleDialog.tsx:405 3188 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:407 3071 3189 msgid "DNS Panel" 3072 3190 msgstr "" 3073 3191 3074 - #: src/components/dialogs/MutedWords.tsx:307 3192 + #: src/components/dialogs/MutedWords.tsx:308 3075 3193 msgid "Do not apply this mute word to users you follow" 3076 3194 msgstr "" 3077 3195 3196 + #: src/screens/Settings/DeerSettings.tsx:835 3197 + msgid "Do not declare any app labelers" 3198 + msgstr "" 3199 + 3200 + #: src/screens/Settings/DeerSettings.tsx:840 3201 + msgid "Do not declare any default app labelers" 3202 + msgstr "" 3203 + 3204 + #: src/screens/Settings/DeerSettings.tsx:529 3205 + #: src/screens/Settings/DeerSettings.tsx:534 3206 + #: src/screens/Settings/DeerSettings.tsx:568 3207 + #: src/screens/Settings/DeerSettings.tsx:573 3208 + msgid "Do not fall back to discover feed" 3209 + msgstr "" 3210 + 3078 3211 #: src/lib/moderation/useGlobalLabelStrings.ts:39 3079 3212 msgid "Does not include nudity." 3080 3213 msgstr "" 3081 3214 3082 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:523 3215 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:525 3083 3216 msgid "Domain verified!" 3084 3217 msgstr "" 3085 3218 3086 3219 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 3087 3220 msgid "Don't have a code or need a new one? <0>Click here.</0>" 3221 + msgstr "" 3222 + 3223 + #: src/screens/Signup/StepInfo/index.tsx:244 3224 + msgid "Don't have an account provider or an existing Bluesky account? To create a new account on a Bluesky-hosted PDS, sign up through <0>bsky.app</0> first, then return to Witchsky and log in with the account you created." 3088 3225 msgstr "" 3089 3226 3090 3227 #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 3091 3228 msgid "Don't see an email? <0>Click here to resend.</0>" 3092 3229 msgstr "" 3093 3230 3094 - #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:104 3095 - #: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:37 3231 + #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:107 3232 + #: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:39 3096 3233 msgid "Don't show again" 3097 3234 msgstr "" 3098 3235 ··· 3106 3243 #: src/components/contacts/screens/ViewMatches.tsx:409 3107 3244 #: src/components/dialogs/BirthDateSettings.tsx:196 3108 3245 #: src/components/dialogs/BirthDateSettings.tsx:203 3109 - #: src/components/dialogs/ServerInput.tsx:240 3110 - #: src/components/dialogs/ServerInput.tsx:242 3246 + #: src/components/dialogs/ServerInput.tsx:203 3247 + #: src/components/dialogs/ServerInput.tsx:205 3111 3248 #: src/components/dms/AfterReportDialog.tsx:142 3112 3249 #: src/components/forms/DateField/index.tsx:103 3113 3250 #: src/components/forms/DateField/index.tsx:109 ··· 3118 3255 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 3119 3256 #: src/view/com/composer/labels/LabelsBtn.tsx:218 3120 3257 #: src/view/com/composer/labels/LabelsBtn.tsx:225 3121 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:303 3122 - #: src/view/com/composer/videos/SubtitleDialog.tsx:188 3123 - #: src/view/com/composer/videos/SubtitleDialog.tsx:199 3258 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:306 3259 + #: src/view/com/composer/videos/SubtitleDialog.tsx:189 3260 + #: src/view/com/composer/videos/SubtitleDialog.tsx:200 3124 3261 msgid "Done" 3125 3262 msgstr "" 3126 3263 3127 - #: src/view/com/modals/UserAddRemoveLists.tsx:113 3128 - #: src/view/com/modals/UserAddRemoveLists.tsx:116 3264 + #: src/view/com/modals/UserAddRemoveLists.tsx:114 3265 + #: src/view/com/modals/UserAddRemoveLists.tsx:117 3129 3266 msgctxt "action" 3130 3267 msgid "Done" 3131 3268 msgstr "" ··· 3142 3279 msgid "Double tap to close the dialog" 3143 3280 msgstr "" 3144 3281 3145 - #: src/screens/VideoFeed/index.tsx:1123 3282 + #: src/screens/VideoFeed/index.tsx:1124 3146 3283 msgid "Double tap to like" 3147 3284 msgstr "" 3148 3285 ··· 3155 3292 msgid "Download CAR file" 3156 3293 msgstr "" 3157 3294 3295 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:764 3296 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:766 3297 + msgid "Download GIF" 3298 + msgstr "" 3299 + 3300 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 3301 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:751 3302 + msgid "Download Video" 3303 + msgstr "" 3304 + 3305 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 3306 + msgctxt "toast" 3307 + msgid "Downloading GIF..." 3308 + msgstr "" 3309 + 3310 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 3311 + msgctxt "toast" 3312 + msgid "Downloading video..." 3313 + msgstr "" 3314 + 3158 3315 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 3159 3316 msgid "Doxxing" 3160 3317 msgstr "" 3161 3318 3162 - #: src/view/com/composer/text-input/TextInput.web.tsx:375 3319 + #: src/view/com/composer/text-input/TextInput.web.tsx:429 3163 3320 msgid "Drop to add images" 3164 3321 msgstr "" 3165 3322 ··· 3167 3324 msgid "Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult." 3168 3325 msgstr "" 3169 3326 3170 - #: src/components/dialogs/MutedWords.tsx:158 3327 + #: src/components/dialogs/MutedWords.tsx:159 3171 3328 msgid "Duration:" 3172 3329 msgstr "" 3173 3330 3174 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:235 3331 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 3175 3332 msgid "e.g. alice" 3176 3333 msgstr "" 3177 3334 3178 - #: src/screens/Profile/Header/EditProfileDialog.tsx:320 3335 + #: src/screens/Profile/Header/EditProfileDialog.tsx:326 3179 3336 msgid "e.g. Alice Lastname" 3180 3337 msgstr "" 3181 3338 3182 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:386 3339 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:388 3183 3340 msgid "e.g. alice.com" 3184 3341 msgstr "" 3185 3342 ··· 3187 3344 msgid "E.g. artistic nudes." 3188 3345 msgstr "" 3189 3346 3190 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:353 3347 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:357 3191 3348 msgid "e.g. Great Posters" 3192 3349 msgstr "" 3193 3350 3194 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:354 3351 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:358 3195 3352 msgid "e.g. Spammers" 3196 3353 msgstr "" 3197 3354 3198 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:357 3355 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:361 3199 3356 msgid "e.g. The posters who never miss." 3200 3357 msgstr "" 3201 3358 3202 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:358 3359 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:362 3203 3360 msgid "e.g. Users that repeatedly reply with ads." 3204 3361 msgstr "" 3205 3362 ··· 3209 3366 3210 3367 #: src/screens/Settings/AccountSettings.tsx:145 3211 3368 #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:252 3212 - #: src/screens/StarterPack/StarterPackScreen.tsx:590 3213 - #: src/screens/StarterPack/Wizard/index.tsx:339 3214 - #: src/screens/StarterPack/Wizard/index.tsx:344 3369 + #: src/screens/StarterPack/StarterPackScreen.tsx:593 3370 + #: src/screens/StarterPack/Wizard/index.tsx:340 3371 + #: src/screens/StarterPack/Wizard/index.tsx:345 3215 3372 msgid "Edit" 3216 3373 msgstr "" 3217 3374 ··· 3221 3378 msgid "Edit" 3222 3379 msgstr "" 3223 3380 3224 - #: src/view/com/util/UserAvatar.tsx:439 3225 - #: src/view/com/util/UserBanner.tsx:121 3381 + #: src/view/com/util/UserAvatar.tsx:473 3382 + #: src/view/com/util/UserBanner.tsx:126 3226 3383 msgid "Edit avatar" 3227 3384 msgstr "" 3228 3385 ··· 3230 3387 msgid "Edit Feeds" 3231 3388 msgstr "" 3232 3389 3233 - #: src/view/com/composer/photos/EditImageDialog.web.tsx:85 3234 - #: src/view/com/composer/photos/EditImageDialog.web.tsx:89 3235 - #: src/view/com/composer/photos/Gallery.tsx:195 3390 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:88 3391 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:92 3392 + #: src/view/com/composer/photos/Gallery.tsx:198 3236 3393 msgid "Edit image" 3237 3394 msgstr "" 3238 3395 3239 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:724 3240 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:737 3396 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1001 3397 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1014 3241 3398 msgid "Edit interaction settings" 3242 3399 msgstr "" 3243 3400 3244 - #: src/screens/Search/modules/ExploreInterestsCard.tsx:98 3245 - #: src/screens/Search/modules/ExploreInterestsCard.tsx:105 3401 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:101 3402 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:108 3246 3403 msgid "Edit interests" 3247 3404 msgstr "" 3248 3405 3249 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:196 3250 3406 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199 3407 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:202 3251 3408 msgid "Edit list details" 3252 3409 msgstr "" 3253 3410 3254 - #: src/view/com/profile/ProfileMenu.tsx:356 3255 - #: src/view/com/profile/ProfileMenu.tsx:376 3411 + #: src/view/com/profile/ProfileMenu.tsx:435 3412 + #: src/view/com/profile/ProfileMenu.tsx:455 3256 3413 msgid "Edit live status" 3257 3414 msgstr "" 3258 3415 3259 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:347 3416 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:351 3260 3417 msgid "Edit moderation list" 3261 3418 msgstr "" 3262 3419 3263 - #: src/Navigation.tsx:358 3264 - #: src/view/screens/Feeds.tsx:518 3420 + #: src/Navigation.tsx:379 3421 + #: src/view/screens/Feeds.tsx:523 3265 3422 msgid "Edit My Feeds" 3266 3423 msgstr "" 3267 3424 ··· 3278 3435 msgid "Edit post interaction settings" 3279 3436 msgstr "" 3280 3437 3281 - #: src/screens/Profile/Header/EditProfileDialog.tsx:268 3282 3438 #: src/screens/Profile/Header/EditProfileDialog.tsx:274 3283 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:292 3284 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:321 3439 + #: src/screens/Profile/Header/EditProfileDialog.tsx:280 3440 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295 3441 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326 3285 3442 msgid "Edit profile" 3286 3443 msgstr "" 3287 3444 3288 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295 3289 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:323 3445 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298 3446 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:328 3290 3447 msgid "Edit Profile" 3291 3448 msgstr "" 3292 3449 3293 - #: src/screens/StarterPack/StarterPackScreen.tsx:582 3450 + #: src/screens/StarterPack/StarterPackScreen.tsx:585 3294 3451 msgid "Edit starter pack" 3295 3452 msgstr "" 3296 3453 3297 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:346 3454 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:350 3298 3455 msgid "Edit user list" 3299 3456 msgstr "" 3300 3457 ··· 3302 3459 msgid "Edit who can reply" 3303 3460 msgstr "" 3304 3461 3305 - #: src/Navigation.tsx:604 3462 + #: src/Navigation.tsx:633 3306 3463 msgid "Edit your starter pack" 3307 3464 msgstr "" 3308 3465 ··· 3315 3472 msgstr "" 3316 3473 3317 3474 #: src/screens/Settings/AccountSettings.tsx:66 3318 - #: src/screens/Signup/StepInfo/index.tsx:225 3475 + #: src/screens/Signup/StepInfo/index.tsx:297 3319 3476 msgid "Email" 3320 3477 msgstr "" 3321 3478 ··· 3354 3511 3355 3512 #: src/components/dialogs/Embed.tsx:104 3356 3513 #: src/components/dialogs/Embed.tsx:108 3357 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 3358 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 3514 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:178 3515 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:183 3359 3516 msgid "Embed post" 3360 3517 msgstr "" 3361 3518 ··· 3390 3547 msgid "Enable external media" 3391 3548 msgstr "" 3392 3549 3393 - #: src/screens/Settings/ExternalMediaPreferences.tsx:52 3550 + #: src/screens/Settings/AppearanceSettings.tsx:270 3551 + #: src/screens/Settings/AppearanceSettings.tsx:275 3552 + msgid "Enable kawaii logo" 3553 + msgstr "" 3554 + 3555 + #: src/screens/Settings/ExternalMediaPreferences.tsx:53 3394 3556 msgid "Enable media players for" 3395 3557 msgstr "" 3396 3558 ··· 3408 3570 msgid "Enable quote posts of this post" 3409 3571 msgstr "" 3410 3572 3573 + #: src/screens/Settings/AppearanceSettings.tsx:288 3574 + #: src/screens/Settings/AppearanceSettings.tsx:293 3575 + msgid "Enable square avatars" 3576 + msgstr "" 3577 + 3578 + #: src/screens/Settings/AppearanceSettings.tsx:300 3579 + #: src/screens/Settings/AppearanceSettings.tsx:305 3580 + msgid "Enable square buttons" 3581 + msgstr "" 3582 + 3411 3583 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388 3412 3584 msgid "Enable subtitles" 3413 3585 msgstr "" ··· 3436 3608 msgid "End of feed" 3437 3609 msgstr "" 3438 3610 3439 - #: src/view/com/composer/videos/SubtitleDialog.tsx:178 3611 + #: src/view/com/composer/videos/SubtitleDialog.tsx:179 3440 3612 msgid "Ensure you have selected a language for each subtitle file." 3441 3613 msgstr "" 3442 3614 ··· 3448 3620 msgid "Enter a password" 3449 3621 msgstr "" 3450 3622 3451 - #: src/components/dialogs/MutedWords.tsx:132 3452 3623 #: src/components/dialogs/MutedWords.tsx:133 3624 + #: src/components/dialogs/MutedWords.tsx:134 3453 3625 msgid "Enter a word or tag" 3454 3626 msgstr "" 3455 3627 ··· 3467 3639 msgid "Enter the 6-digit code sent to {prettyNumber}" 3468 3640 msgstr "" 3469 3641 3470 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:380 3642 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:382 3471 3643 msgid "Enter the domain you want to use" 3472 3644 msgstr "" 3473 3645 ··· 3475 3647 msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." 3476 3648 msgstr "" 3477 3649 3478 - #: src/screens/Login/LoginForm.tsx:219 3650 + #: src/screens/Login/LoginForm.tsx:244 3479 3651 msgid "Enter the username or email address you used when you created your account" 3480 3652 msgstr "" 3481 3653 ··· 3484 3656 msgstr "" 3485 3657 3486 3658 #: src/screens/Login/ForgotPasswordForm.tsx:99 3487 - #: src/screens/Signup/StepInfo/index.tsx:245 3659 + #: src/screens/Signup/StepInfo/index.tsx:317 3488 3660 msgid "Enter your email address" 3489 3661 msgstr "" 3490 3662 3491 - #: src/screens/Login/LoginForm.tsx:243 3663 + #: src/screens/Login/LoginForm.tsx:268 3492 3664 msgid "Enter your password" 3493 3665 msgstr "" 3494 3666 3495 - #: src/screens/Login/index.tsx:137 3667 + #: src/screens/Login/index.tsx:183 3496 3668 msgid "Enter your username and password" 3497 3669 msgstr "" 3498 3670 3499 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 3671 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:133 3500 3672 msgid "Enters full screen" 3501 3673 msgstr "" 3502 3674 3503 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:236 3675 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:240 3504 3676 msgid "Entertainment" 3505 3677 msgstr "" 3506 3678 3507 - #: src/view/com/composer/Composer.tsx:1900 3508 - #: src/view/com/util/error/ErrorScreen.tsx:42 3679 + #: src/view/com/composer/Composer.tsx:1933 3680 + #: src/view/com/util/error/ErrorScreen.tsx:44 3509 3681 msgid "Error" 3510 3682 msgstr "" 3511 3683 ··· 3529 3701 msgid "Error occurred while saving file" 3530 3702 msgstr "" 3531 3703 3532 - #: src/screens/Signup/StepCaptcha/index.tsx:125 3704 + #: src/screens/Signup/StepCaptcha/index.tsx:126 3533 3705 msgid "Error receiving captcha response." 3534 3706 msgstr "" 3535 3707 3536 - #: src/screens/Search/SearchResults.tsx:149 3708 + #: src/screens/Search/SearchResults.tsx:151 3537 3709 msgid "Error: {error}" 3538 3710 msgstr "" 3539 3711 ··· 3557 3729 msgid "Everything else" 3558 3730 msgstr "" 3559 3731 3560 - #: src/components/dialogs/MutedWords.tsx:316 3732 + #: src/components/dialogs/MutedWords.tsx:317 3561 3733 msgid "Exclude users you follow" 3562 3734 msgstr "" 3563 3735 3564 - #: src/components/dialogs/MutedWords.tsx:521 3736 + #: src/components/dialogs/MutedWords.tsx:524 3565 3737 msgid "Excludes users you follow" 3566 3738 msgstr "" 3567 3739 ··· 3569 3741 msgid "Exit fullscreen" 3570 3742 msgstr "" 3571 3743 3572 - #: src/view/com/modals/DeleteAccount.tsx:275 3744 + #: src/view/com/modals/DeleteAccount.tsx:281 3573 3745 msgid "Exits account deletion process" 3574 3746 msgstr "" 3575 3747 ··· 3581 3753 msgid "Expand alt text" 3582 3754 msgstr "" 3583 3755 3584 - #: src/view/com/notifications/NotificationFeedItem.tsx:602 3756 + #: src/view/com/notifications/NotificationFeedItem.tsx:607 3585 3757 msgid "Expand list of users" 3586 3758 msgstr "" 3587 3759 ··· 3593 3765 msgid "Expand post text" 3594 3766 msgstr "" 3595 3767 3596 - #: src/screens/VideoFeed/index.tsx:995 3768 + #: src/screens/VideoFeed/index.tsx:996 3597 3769 msgid "Expands or collapses post text" 3598 3770 msgstr "" 3599 3771 3600 - #: src/lib/api/index.ts:418 3772 + #: src/lib/api/index.ts:464 3601 3773 msgid "Expected uri to resolve to a record" 3602 3774 msgstr "" 3603 3775 ··· 3605 3777 msgid "Experimental" 3606 3778 msgstr "" 3607 3779 3608 - #: src/components/dialogs/MutedWords.tsx:507 3780 + #: src/Navigation.tsx:414 3781 + #: src/screens/Settings/DeerSettings.tsx:374 3782 + #: src/screens/Settings/Settings.tsx:241 3783 + msgid "Experiments" 3784 + msgstr "" 3785 + 3786 + #: src/components/dialogs/MutedWords.tsx:510 3609 3787 msgid "Expired" 3610 3788 msgstr "" 3611 3789 3612 - #: src/components/dialogs/MutedWords.tsx:509 3790 + #: src/components/dialogs/MutedWords.tsx:512 3613 3791 msgid "Expires {0}" 3614 3792 msgstr "" 3615 3793 ··· 3631 3809 msgid "Explicit sexual images." 3632 3810 msgstr "" 3633 3811 3634 - #: src/Navigation.tsx:788 3812 + #: src/Navigation.tsx:817 3635 3813 #: src/screens/Search/Shell.tsx:327 3636 - #: src/view/shell/desktop/LeftNav.tsx:690 3637 - #: src/view/shell/Drawer.tsx:414 3814 + #: src/view/shell/desktop/LeftNav.tsx:700 3815 + #: src/view/shell/Drawer.tsx:432 3638 3816 msgid "Explore" 3639 3817 msgstr "" 3640 3818 ··· 3663 3841 msgstr "" 3664 3842 3665 3843 #: src/components/dialogs/EmbedConsent.tsx:70 3666 - #: src/screens/Settings/ExternalMediaPreferences.tsx:43 3844 + #: src/screens/Settings/ExternalMediaPreferences.tsx:44 3667 3845 msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." 3668 3846 msgstr "" 3669 3847 3670 - #: src/Navigation.tsx:377 3671 - #: src/screens/Settings/ExternalMediaPreferences.tsx:34 3848 + #: src/Navigation.tsx:398 3849 + #: src/screens/Settings/ExternalMediaPreferences.tsx:35 3672 3850 msgid "External Media Preferences" 3673 3851 msgstr "" 3674 3852 ··· 3681 3859 msgid "Failed to accept chat" 3682 3860 msgstr "" 3683 3861 3684 - #: src/components/dms/ActionsWrapper.web.tsx:66 3862 + #: src/components/dms/ActionsWrapper.web.tsx:69 3685 3863 #: src/components/dms/MessageContextMenu.tsx:101 3686 3864 msgid "Failed to add emoji reaction" 3687 3865 msgstr "" 3688 3866 3689 - #: src/components/dialogs/StarterPackDialog.tsx:270 3867 + #: src/components/dialogs/StarterPackDialog.tsx:273 3690 3868 msgid "Failed to add to starter pack" 3691 3869 msgstr "" 3692 3870 3693 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:603 3871 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:605 3694 3872 msgid "Failed to change handle. Please try again." 3695 3873 msgstr "" 3696 3874 ··· 3698 3876 msgid "Failed to create app password. Please try again." 3699 3877 msgstr "" 3700 3878 3701 - #: src/components/dms/MessageProfileButton.tsx:36 3879 + #: src/components/dms/MessageProfileButton.tsx:39 3702 3880 msgid "Failed to create conversation" 3703 3881 msgstr "" 3704 3882 3705 - #: src/screens/StarterPack/Wizard/index.tsx:262 3706 - #: src/screens/StarterPack/Wizard/index.tsx:270 3883 + #: src/screens/StarterPack/Wizard/index.tsx:263 3884 + #: src/screens/StarterPack/Wizard/index.tsx:271 3707 3885 msgid "Failed to create starter pack" 3708 3886 msgstr "" 3709 3887 ··· 3717 3895 msgid "Failed to delete message" 3718 3896 msgstr "" 3719 3897 3720 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:206 3898 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:227 3721 3899 msgid "Failed to delete post, please try again" 3722 3900 msgstr "" 3723 3901 3724 - #: src/screens/StarterPack/StarterPackScreen.tsx:724 3902 + #: src/screens/StarterPack/StarterPackScreen.tsx:727 3725 3903 msgid "Failed to delete starter pack" 3726 3904 msgstr "" 3727 3905 ··· 3741 3919 msgid "Failed to launch SMS app" 3742 3920 msgstr "" 3743 3921 3744 - #: src/screens/Messages/ChatList.tsx:282 3922 + #: src/screens/Messages/ChatList.tsx:283 3745 3923 #: src/screens/Messages/Inbox.tsx:209 3746 3924 msgid "Failed to load conversations" 3747 3925 msgstr "" ··· 3753 3931 msgid "Failed to load feeds preferences" 3754 3932 msgstr "" 3755 3933 3756 - #: src/components/dialogs/GifSelect.tsx:213 3934 + #: src/components/dialogs/GifSelect.tsx:216 3757 3935 msgid "Failed to load GIFs" 3758 3936 msgstr "" 3759 3937 ··· 3807 3985 msgid "Failed to remove data. {0}" 3808 3986 msgstr "" 3809 3987 3810 - #: src/components/dms/ActionsWrapper.web.tsx:60 3988 + #: src/components/dms/ActionsWrapper.web.tsx:63 3811 3989 #: src/components/dms/MessageContextMenu.tsx:95 3812 3990 msgid "Failed to remove emoji reaction" 3813 3991 msgstr "" 3814 3992 3815 - #: src/components/dialogs/StarterPackDialog.tsx:289 3993 + #: src/components/dialogs/StarterPackDialog.tsx:292 3816 3994 msgid "Failed to remove from starter pack" 3817 3995 msgstr "" 3818 3996 ··· 3833 4011 msgid "Failed to save settings. Please try again." 3834 4012 msgstr "" 3835 4013 3836 - #: src/screens/Settings/InterestsSettings.tsx:136 4014 + #: src/screens/Settings/InterestsSettings.tsx:137 3837 4015 msgctxt "toast" 3838 4016 msgid "Failed to save your interests." 3839 4017 msgstr "" ··· 3853 4031 msgid "Failed to submit appeal, please try again." 3854 4032 msgstr "" 3855 4033 3856 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:238 4034 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:408 3857 4035 msgid "Failed to toggle thread mute, please try again" 3858 4036 msgstr "" 3859 4037 3860 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:104 4038 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 3861 4039 msgid "Failed to unpin list" 3862 4040 msgstr "" 3863 4041 ··· 3893 4071 msgid "Failed to verify email, please try again." 3894 4072 msgstr "" 3895 4073 3896 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:370 4074 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:372 3897 4075 msgid "Failed to verify handle. Please try again." 3898 4076 msgstr "" 3899 4077 ··· 3905 4083 msgid "False information about elections" 3906 4084 msgstr "" 3907 4085 3908 - #: src/Navigation.tsx:293 4086 + #: src/Navigation.tsx:314 3909 4087 msgid "Feed" 3910 4088 msgstr "" 3911 4089 ··· 3922 4100 msgid "Feed identifier" 3923 4101 msgstr "" 3924 4102 3925 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:355 4103 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:357 3926 4104 msgid "Feed menu" 3927 4105 msgstr "" 3928 4106 ··· 3936 4114 3937 4115 #: src/view/shell/desktop/RightNav.tsx:107 3938 4116 #: src/view/shell/desktop/RightNav.tsx:108 3939 - #: src/view/shell/Drawer.tsx:368 4117 + #: src/view/shell/Drawer.tsx:386 3940 4118 msgid "Feedback" 3941 4119 msgstr "" 3942 4120 3943 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:296 3944 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:320 4121 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 4122 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:490 3945 4123 msgctxt "toast" 3946 4124 msgid "Feedback sent to feed operator" 3947 4125 msgstr "" 3948 4126 3949 - #: src/Navigation.tsx:584 4127 + #: src/Navigation.tsx:613 3950 4128 #: src/screens/SavedFeeds.tsx:108 3951 4129 #: src/screens/Search/SearchResults.tsx:78 3952 - #: src/screens/StarterPack/StarterPackScreen.tsx:190 3953 - #: src/view/screens/Feeds.tsx:511 4130 + #: src/screens/StarterPack/StarterPackScreen.tsx:191 4131 + #: src/view/screens/Feeds.tsx:516 3954 4132 #: src/view/screens/Profile.tsx:239 3955 - #: src/view/shell/desktop/LeftNav.tsx:728 3956 - #: src/view/shell/Drawer.tsx:530 4133 + #: src/view/shell/desktop/LeftNav.tsx:738 4134 + #: src/view/shell/Drawer.tsx:548 3957 4135 msgid "Feeds" 3958 4136 msgstr "" 3959 4137 ··· 3971 4149 msgid "Feeds we think you might like." 3972 4150 msgstr "" 3973 4151 4152 + #: src/screens/Settings/DeerSettings.tsx:413 4153 + msgid "Fetch records directly from PDS to see contents of blocked and detatched quotes" 4154 + msgstr "" 4155 + 4156 + #: src/screens/Settings/DeerSettings.tsx:407 4157 + msgid "Fetch records directly from PDS to see through quote blocks" 4158 + msgstr "" 4159 + 3974 4160 #: src/screens/Settings/components/OTAInfo.tsx:58 3975 4161 msgid "Fetch update" 3976 4162 msgstr "" ··· 4017 4203 msgid "Find accounts to follow" 4018 4204 msgstr "" 4019 4205 4020 - #: src/Navigation.tsx:425 4021 - #: src/Navigation.tsx:626 4206 + #: src/Navigation.tsx:454 4207 + #: src/Navigation.tsx:655 4022 4208 msgid "Find Contacts" 4023 4209 msgstr "" 4024 4210 ··· 4026 4212 msgid "Find Friends" 4027 4213 msgstr "" 4028 4214 4029 - #: src/screens/Settings/Settings.tsx:221 4030 - #: src/screens/Settings/Settings.tsx:224 4215 + #: src/screens/Settings/Settings.tsx:223 4216 + #: src/screens/Settings/Settings.tsx:226 4031 4217 msgid "Find friends from contacts" 4032 4218 msgstr "" 4033 4219 ··· 4037 4223 msgstr "" 4038 4224 4039 4225 #. Starter packs suggested to the user for them to follow 4040 - #: src/components/ProgressGuide/FollowDialog.tsx:78 4041 - #: src/components/ProgressGuide/FollowDialog.tsx:86 4042 - #: src/components/ProgressGuide/FollowDialog.tsx:431 4226 + #: src/components/ProgressGuide/FollowDialog.tsx:79 4227 + #: src/components/ProgressGuide/FollowDialog.tsx:87 4228 + #: src/components/ProgressGuide/FollowDialog.tsx:432 4043 4229 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42 4044 4230 msgid "Find people to follow" 4045 4231 msgstr "" ··· 4065 4251 msgid "Finding friends..." 4066 4252 msgstr "" 4067 4253 4068 - #: src/screens/StarterPack/Wizard/index.tsx:218 4254 + #: src/screens/StarterPack/Wizard/index.tsx:219 4069 4255 msgid "Finish" 4070 4256 msgstr "" 4071 4257 4072 - #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 4073 - msgctxt "Name of app icon variant" 4074 - msgid "Flat Black" 4075 - msgstr "" 4076 - 4077 - #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 4078 - msgctxt "Name of app icon variant" 4079 - msgid "Flat Blue" 4080 - msgstr "" 4081 - 4082 - #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 4083 - msgctxt "Name of app icon variant" 4084 - msgid "Flat White" 4085 - msgstr "" 4086 - 4087 4258 #: src/components/contacts/components/OTPInput.tsx:55 4088 4259 msgid "Focus code input" 4089 4260 msgstr "" 4090 4261 4091 4262 #. User is not following this account, click to follow 4092 - #: src/components/ProfileCard.tsx:559 4093 - #: src/components/ProfileHoverCard/index.web.tsx:497 4094 - #: src/components/ProfileHoverCard/index.web.tsx:508 4095 - #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:140 4096 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:378 4097 - #: src/screens/VideoFeed/index.tsx:879 4098 - #: src/view/com/notifications/NotificationFeedItem.tsx:841 4099 - #: src/view/com/notifications/NotificationFeedItem.tsx:848 4263 + #: src/components/ProfileCard.tsx:566 4264 + #: src/components/ProfileHoverCard/index.web.tsx:512 4265 + #: src/components/ProfileHoverCard/index.web.tsx:527 4266 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:143 4267 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:387 4268 + #: src/screens/VideoFeed/index.tsx:880 4269 + #: src/view/com/notifications/NotificationFeedItem.tsx:846 4270 + #: src/view/com/notifications/NotificationFeedItem.tsx:853 4100 4271 msgid "Follow" 4101 4272 msgstr "" 4102 4273 4103 - #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:127 4104 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:366 4274 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 4275 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:371 4105 4276 msgid "Follow {0}" 4106 4277 msgstr "" 4107 4278 4108 - #: src/screens/VideoFeed/index.tsx:856 4279 + #: src/screens/VideoFeed/index.tsx:857 4109 4280 msgid "Follow {handle}" 4110 4281 msgstr "" 4111 4282 ··· 4121 4292 msgid "Follow 7 accounts" 4122 4293 msgstr "" 4123 4294 4124 - #: src/view/com/profile/ProfileMenu.tsx:312 4125 - #: src/view/com/profile/ProfileMenu.tsx:323 4295 + #: src/view/com/profile/ProfileMenu.tsx:362 4296 + #: src/view/com/profile/ProfileMenu.tsx:377 4126 4297 msgid "Follow account" 4127 4298 msgstr "" 4128 4299 ··· 4133 4304 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163 4134 4305 #: src/screens/Settings/FindContactsSettings.tsx:438 4135 4306 #: src/screens/Settings/FindContactsSettings.tsx:448 4136 - #: src/screens/StarterPack/StarterPackScreen.tsx:438 4137 - #: src/screens/StarterPack/StarterPackScreen.tsx:446 4307 + #: src/screens/StarterPack/StarterPackScreen.tsx:439 4308 + #: src/screens/StarterPack/StarterPackScreen.tsx:447 4138 4309 msgid "Follow all" 4139 4310 msgstr "" 4140 4311 ··· 4143 4314 msgstr "" 4144 4315 4145 4316 #. User is not following this account, click to follow back 4146 - #: src/components/ProfileCard.tsx:553 4147 - #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:138 4148 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:376 4149 - #: src/view/com/notifications/NotificationFeedItem.tsx:841 4150 - #: src/view/com/notifications/NotificationFeedItem.tsx:848 4317 + #: src/components/ProfileCard.tsx:560 4318 + #: src/components/ProfileHoverCard/index.web.tsx:511 4319 + #: src/components/ProfileHoverCard/index.web.tsx:526 4320 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:141 4321 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 4322 + #: src/view/com/notifications/NotificationFeedItem.tsx:846 4323 + #: src/view/com/notifications/NotificationFeedItem.tsx:853 4151 4324 msgid "Follow back" 4152 4325 msgstr "" 4153 4326 ··· 4175 4348 msgid "Followed by <0>{0}</0>, <1>{1}</1>, and {2, plural, one {# other} other {# others}}" 4176 4349 msgstr "" 4177 4350 4178 - #: src/Navigation.tsx:247 4351 + #: src/Navigation.tsx:268 4352 + #: src/screens/Profile/KnownFollowers.tsx:76 4179 4353 msgid "Followers of @{0} that you know" 4180 4354 msgstr "" 4181 4355 4182 - #: src/screens/Profile/KnownFollowers.tsx:107 4183 - #: src/screens/Profile/KnownFollowers.tsx:124 4356 + #: src/screens/Profile/KnownFollowers.tsx:116 4357 + #: src/screens/Profile/KnownFollowers.tsx:133 4184 4358 msgid "Followers you know" 4185 4359 msgstr "" 4186 4360 4187 4361 #. User is following this account, click to unfollow 4188 4362 #. User is following this account, click to unfollow 4189 - #: src/components/ProfileCard.tsx:546 4190 - #: src/components/ProfileHoverCard/index.web.tsx:496 4191 - #: src/components/ProfileHoverCard/index.web.tsx:507 4192 - #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:143 4193 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:374 4194 - #: src/screens/VideoFeed/index.tsx:877 4195 - #: src/view/com/notifications/NotificationFeedItem.tsx:819 4196 - #: src/view/com/notifications/NotificationFeedItem.tsx:836 4363 + #: src/components/ProfileCard.tsx:553 4364 + #: src/components/ProfileHoverCard/index.web.tsx:509 4365 + #: src/components/ProfileHoverCard/index.web.tsx:524 4366 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:148 4367 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:382 4368 + #: src/screens/VideoFeed/index.tsx:878 4369 + #: src/view/com/notifications/NotificationFeedItem.tsx:824 4370 + #: src/view/com/notifications/NotificationFeedItem.tsx:841 4197 4371 msgid "Following" 4198 4372 msgstr "" 4199 4373 4200 4374 #: src/screens/SavedFeeds.tsx:410 4201 - #: src/view/screens/Feeds.tsx:603 4375 + #: src/view/screens/Feeds.tsx:608 4202 4376 msgctxt "feed-name" 4203 4377 msgid "Following" 4204 4378 msgstr "" 4205 4379 4206 4380 #: src/components/ProfileCard.tsx:509 4207 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:244 4208 - #: src/view/com/notifications/NotificationFeedItem.tsx:772 4381 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:249 4382 + #: src/view/com/notifications/NotificationFeedItem.tsx:777 4209 4383 msgid "Following {0}" 4210 4384 msgstr "" 4211 4385 4212 - #: src/screens/VideoFeed/index.tsx:855 4386 + #: src/screens/VideoFeed/index.tsx:856 4213 4387 msgid "Following {handle}" 4214 4388 msgstr "" 4215 4389 ··· 4218 4392 msgid "Following feed preferences" 4219 4393 msgstr "" 4220 4394 4221 - #: src/Navigation.tsx:364 4395 + #: src/Navigation.tsx:385 4222 4396 #: src/screens/Settings/FollowingFeedPreferences.tsx:56 4223 4397 msgid "Following Feed Preferences" 4224 4398 msgstr "" 4225 4399 4226 - #: src/screens/Profile/Header/Handle.tsx:32 4227 - msgid "Follows you" 4228 - msgstr "" 4229 - 4230 - #: src/components/Pills.tsx:175 4231 - msgid "Follows You" 4232 - msgstr "" 4233 - 4234 - #: src/screens/Settings/AppearanceSettings.tsx:128 4400 + #: src/screens/Settings/AppearanceSettings.tsx:221 4235 4401 msgid "Font" 4236 4402 msgstr "" 4237 4403 4238 - #: src/screens/Settings/AppearanceSettings.tsx:148 4404 + #: src/screens/Settings/AppearanceSettings.tsx:241 4239 4405 msgid "Font size" 4240 4406 msgstr "" 4241 4407 ··· 4255 4421 msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." 4256 4422 msgstr "" 4257 4423 4258 - #: src/screens/Settings/AppearanceSettings.tsx:130 4424 + #: src/screens/Settings/AppearanceSettings.tsx:223 4259 4425 msgid "For the best experience, we recommend using the theme font." 4260 4426 msgstr "" 4261 4427 ··· 4264 4430 msgid "For You" 4265 4431 msgstr "" 4266 4432 4267 - #: src/components/dialogs/MutedWords.tsx:183 4433 + #: src/screens/Settings/DeerSettings.tsx:622 4434 + msgid "Forcefully disables the notifications other people receive when you like/repost a post someone else has reposted for privacy." 4435 + msgstr "" 4436 + 4437 + #: src/components/dialogs/MutedWords.tsx:184 4268 4438 msgid "Forever" 4269 4439 msgstr "" 4270 4440 ··· 4272 4442 msgid "Forget the noise" 4273 4443 msgstr "" 4274 4444 4275 - #: src/screens/Login/index.tsx:167 4276 - #: src/screens/Login/index.tsx:182 4445 + #: src/screens/Login/index.tsx:215 4446 + #: src/screens/Login/index.tsx:230 4277 4447 msgid "Forgot Password" 4278 4448 msgstr "" 4279 4449 4280 - #: src/screens/Login/LoginForm.tsx:258 4450 + #: src/screens/Login/LoginForm.tsx:283 4281 4451 msgid "Forgot password?" 4282 4452 msgstr "" 4283 4453 4284 - #: src/screens/Login/LoginForm.tsx:269 4454 + #: src/screens/Login/LoginForm.tsx:294 4285 4455 msgid "Forgot?" 4286 4456 msgstr "" 4287 4457 ··· 4293 4463 msgid "From" 4294 4464 msgstr "" 4295 4465 4296 - #: src/screens/Hashtag.tsx:136 4466 + #: src/screens/Hashtag.tsx:139 4297 4467 msgid "From @{sanitizedAuthor}" 4298 4468 msgstr "" 4299 4469 ··· 4302 4472 msgid "From <0/>" 4303 4473 msgstr "" 4304 4474 4475 + #: src/screens/Settings/DeerSettings.tsx:796 4476 + msgid "Gates" 4477 + msgstr "" 4478 + 4305 4479 #: src/components/StarterPack/ProfileStarterPacks.tsx:335 4306 4480 msgid "Generate a starter pack" 4307 4481 msgstr "" 4308 4482 4309 - #: src/view/shell/Drawer.tsx:372 4310 - msgid "Get help" 4311 - msgstr "" 4312 - 4313 4483 #: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 4314 4484 msgid "Get notifications when people follow you." 4315 4485 msgstr "" ··· 4342 4512 msgid "Get notifications when people repost your posts." 4343 4513 msgstr "" 4344 4514 4345 - #: src/components/activity-notifications/SubscribeProfileButton.tsx:93 4515 + #: src/components/activity-notifications/SubscribeProfileButton.tsx:96 4346 4516 msgid "Get notified about new posts" 4347 4517 msgstr "" 4348 4518 ··· 4358 4528 msgid "Get notified of this accountโ€™s activity" 4359 4529 msgstr "" 4360 4530 4361 - #: src/components/activity-notifications/SubscribeProfileButton.tsx:86 4531 + #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 4362 4532 msgid "Get notified when {name} posts" 4363 4533 msgstr "" 4364 4534 4365 - #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:137 4535 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:140 4366 4536 msgid "Get notified when someone posts" 4367 4537 msgstr "" 4368 4538 4369 - #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:76 4370 - #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 4539 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 4540 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 4371 4541 msgid "Get started" 4372 4542 msgstr "" 4373 4543 4374 - #: src/components/MediaPreview.tsx:114 4544 + #: src/components/MediaPreview.tsx:123 4375 4545 msgid "GIF" 4376 4546 msgstr "" 4377 4547 ··· 4386 4556 #: src/components/dialogs/LinkWarning.tsx:111 4387 4557 #: src/components/dialogs/LinkWarning.tsx:117 4388 4558 #: src/components/Layout/Header/index.tsx:128 4389 - #: src/components/moderation/ScreenHider.tsx:160 4390 - #: src/components/moderation/ScreenHider.tsx:169 4559 + #: src/components/moderation/ScreenHider.tsx:163 4560 + #: src/components/moderation/ScreenHider.tsx:172 4391 4561 #: src/screens/Messages/Inbox.tsx:251 4392 4562 #: src/screens/Profile/ProfileFeed/index.tsx:93 4393 4563 #: src/screens/ProfileList/components/ErrorScreen.tsx:34 4394 4564 #: src/screens/ProfileList/components/ErrorScreen.tsx:40 4395 - #: src/screens/VideoFeed/components/Header.tsx:163 4396 - #: src/screens/VideoFeed/index.tsx:1184 4397 - #: src/screens/VideoFeed/index.tsx:1188 4565 + #: src/screens/VideoFeed/components/Header.tsx:166 4566 + #: src/screens/VideoFeed/index.tsx:1186 4567 + #: src/screens/VideoFeed/index.tsx:1190 4398 4568 #: src/view/com/auth/LoggedOut.tsx:72 4399 4569 #: src/view/com/profile/ProfileFollowers.tsx:180 4400 4570 #: src/view/com/profile/ProfileFollowers.tsx:181 ··· 4407 4577 #: src/screens/Profile/ErrorState.tsx:62 4408 4578 #: src/screens/Profile/ErrorState.tsx:66 4409 4579 #: src/screens/Profile/ProfileFeed/index.tsx:98 4410 - #: src/screens/StarterPack/StarterPackScreen.tsx:775 4580 + #: src/screens/StarterPack/StarterPackScreen.tsx:778 4411 4581 #: src/view/screens/NotFound.tsx:56 4412 4582 msgid "Go Back" 4413 4583 msgstr "" ··· 4433 4603 msgid "Go Home" 4434 4604 msgstr "" 4435 4605 4436 - #: src/view/com/profile/ProfileMenu.tsx:357 4437 - #: src/view/com/profile/ProfileMenu.tsx:378 4606 + #: src/view/com/profile/ProfileMenu.tsx:436 4607 + #: src/view/com/profile/ProfileMenu.tsx:457 4438 4608 msgid "Go live" 4439 4609 msgstr "" 4440 4610 ··· 4445 4615 msgid "Go Live" 4446 4616 msgstr "" 4447 4617 4448 - #: src/view/com/profile/ProfileMenu.tsx:354 4449 - #: src/view/com/profile/ProfileMenu.tsx:374 4618 + #: src/view/com/profile/ProfileMenu.tsx:433 4619 + #: src/view/com/profile/ProfileMenu.tsx:453 4450 4620 msgid "Go live (disabled)" 4451 4621 msgstr "" 4452 4622 ··· 4454 4624 msgid "Go live for" 4455 4625 msgstr "" 4456 4626 4457 - #: src/view/com/notifications/NotificationFeedItem.tsx:247 4627 + #: src/view/com/notifications/NotificationFeedItem.tsx:249 4458 4628 msgid "Go to {firstAuthorName}'s profile" 4459 4629 msgstr "" 4460 4630 4461 - #: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:91 4631 + #: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:93 4462 4632 #: src/components/ageAssurance/AgeRestrictedScreen.tsx:71 4463 4633 #: src/components/ageAssurance/AgeRestrictedScreen.tsx:80 4464 4634 #: src/screens/Moderation/index.tsx:219 4465 4635 msgid "Go to account settings" 4466 4636 msgstr "" 4467 4637 4468 - #: src/screens/Messages/components/ChatListItem.tsx:363 4638 + #: src/screens/Messages/components/ChatListItem.tsx:367 4469 4639 msgid "Go to conversation with {0}" 4470 4640 msgstr "" 4471 4641 ··· 4477 4647 msgid "Go to next" 4478 4648 msgstr "" 4479 4649 4480 - #: src/components/dms/ConvoMenu.tsx:241 4481 - #: src/view/shell/desktop/LeftNav.tsx:317 4482 - #: src/view/shell/desktop/LeftNav.tsx:323 4650 + #: src/components/dms/ConvoMenu.tsx:244 4651 + #: src/view/shell/desktop/LeftNav.tsx:320 4652 + #: src/view/shell/desktop/LeftNav.tsx:326 4483 4653 msgid "Go to profile" 4484 4654 msgstr "" 4485 4655 4486 - #: src/components/dms/ConvoMenu.tsx:238 4656 + #: src/components/dms/ConvoMenu.tsx:241 4487 4657 msgid "Go to user's profile" 4488 4658 msgstr "" 4489 4659 ··· 4520 4690 msgid "Handle" 4521 4691 msgstr "" 4522 4692 4523 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:607 4693 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:609 4524 4694 msgid "Handle already taken. Please try a different one." 4525 4695 msgstr "" 4526 4696 4527 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:195 4528 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:354 4697 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:197 4698 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:356 4529 4699 msgid "Handle changed!" 4530 4700 msgstr "" 4531 4701 4532 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 4702 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:613 4533 4703 msgid "Handle too long. Please try a shorter one." 4534 4704 msgstr "" 4535 4705 ··· 4554 4724 msgid "Harming or endangering minors" 4555 4725 msgstr "" 4556 4726 4557 - #: src/Navigation.tsx:549 4727 + #: src/Navigation.tsx:578 4558 4728 msgid "Hashtag" 4559 4729 msgstr "" 4560 4730 ··· 4571 4741 msgid "Have a code? <0>Click here.</0>" 4572 4742 msgstr "" 4573 4743 4574 - #: src/screens/Signup/StepInfo/index.tsx:332 4744 + #: src/screens/Signup/StepInfo/index.tsx:404 4575 4745 msgid "Have we got your location wrong? <0>Tap here to confirm your location with GPS.</0>" 4576 4746 msgstr "" 4577 4747 4578 - #: src/screens/Signup/index.tsx:220 4748 + #: src/screens/Signup/index.tsx:229 4579 4749 msgid "Having trouble?" 4580 4750 msgstr "" 4581 4751 4582 4752 #: src/components/contacts/screens/PhoneInput.tsx:287 4583 4753 msgid "Held by Bluesky for 7 days to prevent abuse, then deleted" 4584 - msgstr "" 4585 - 4586 - #: src/screens/Settings/Settings.tsx:254 4587 - #: src/screens/Settings/Settings.tsx:258 4588 - #: src/view/shell/desktop/RightNav.tsx:128 4589 - #: src/view/shell/desktop/RightNav.tsx:131 4590 - #: src/view/shell/Drawer.tsx:381 4591 - msgid "Help" 4592 4754 msgstr "" 4593 4755 4594 4756 #: src/screens/Onboarding/StepProfile/index.tsx:245 ··· 4617 4779 msgid "Hidden" 4618 4780 msgstr "" 4619 4781 4620 - #: src/screens/VideoFeed/index.tsx:653 4782 + #: src/screens/VideoFeed/index.tsx:654 4621 4783 msgid "Hidden by your moderation settings." 4622 4784 msgstr "" 4623 4785 ··· 4625 4787 msgid "Hidden list" 4626 4788 msgstr "" 4627 4789 4628 - #: src/components/interstitials/Trending.tsx:130 4629 - #: src/components/interstitials/TrendingVideos.tsx:138 4790 + #: src/components/interstitials/Trending.tsx:133 4791 + #: src/components/interstitials/TrendingVideos.tsx:139 4630 4792 #: src/components/moderation/ContentHider.tsx:208 4631 4793 #: src/components/moderation/LabelPreference.tsx:140 4632 4794 #: src/components/moderation/PostHider.tsx:137 4633 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:773 4795 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1050 4634 4796 #: src/lib/moderation/useLabelBehaviorDescription.ts:18 4635 4797 #: src/lib/moderation/useLabelBehaviorDescription.ts:23 4636 4798 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 4637 4799 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 4638 - #: src/view/shell/desktop/SidebarTrendingTopics.tsx:129 4800 + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:132 4639 4801 msgid "Hide" 4640 4802 msgstr "" 4641 4803 4642 - #: src/view/com/notifications/NotificationFeedItem.tsx:933 4804 + #: src/view/com/notifications/NotificationFeedItem.tsx:938 4643 4805 msgctxt "action" 4644 4806 msgid "Hide" 4807 + msgstr "" 4808 + 4809 + #: src/screens/Settings/DeerSettings.tsx:598 4810 + #: src/screens/Settings/DeerSettings.tsx:603 4811 + msgid "Hide \"Feeds โœจ\" tab when only one feed is selected" 4645 4812 msgstr "" 4646 4813 4647 4814 #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:138 ··· 4657 4824 msgid "Hide lists" 4658 4825 msgstr "" 4659 4826 4660 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 4661 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:610 4827 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:881 4828 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:887 4662 4829 msgid "Hide post for me" 4663 4830 msgstr "" 4664 4831 4665 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 4666 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:631 4832 + #: src/screens/Settings/DeerSettings.tsx:642 4833 + #: src/screens/Settings/DeerSettings.tsx:647 4834 + msgid "Hide posts that cannot be replied to from feeds" 4835 + msgstr "" 4836 + 4837 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:898 4838 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:908 4667 4839 msgid "Hide reply for everyone" 4668 4840 msgstr "" 4669 4841 4670 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:603 4671 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 4842 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:880 4843 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:886 4672 4844 msgid "Hide reply for me" 4673 4845 msgstr "" 4674 4846 4675 - #: src/screens/Search/modules/ExploreInterestsCard.tsx:110 4847 + #: src/screens/Settings/DeerSettings.tsx:630 4848 + #: src/screens/Settings/DeerSettings.tsx:635 4849 + msgid "Hide similar accounts recommendations" 4850 + msgstr "" 4851 + 4852 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:113 4676 4853 msgid "Hide this card" 4677 4854 msgstr "" 4678 4855 ··· 4681 4858 msgid "Hide this event" 4682 4859 msgstr "" 4683 4860 4684 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 4861 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1045 4685 4862 msgid "Hide this post?" 4686 4863 msgstr "" 4687 4864 4688 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 4689 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 4865 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1045 4866 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1080 4690 4867 msgid "Hide this reply?" 4691 4868 msgstr "" 4692 4869 4693 - #: src/components/interstitials/Trending.tsx:112 4870 + #: src/components/interstitials/Trending.tsx:115 4694 4871 msgid "Hide trending topics" 4695 4872 msgstr "" 4696 4873 4697 - #: src/components/interstitials/Trending.tsx:128 4698 - #: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 4874 + #: src/components/interstitials/Trending.tsx:131 4875 + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:130 4699 4876 msgid "Hide trending topics?" 4700 4877 msgstr "" 4701 4878 4702 - #: src/components/interstitials/TrendingVideos.tsx:136 4879 + #: src/components/interstitials/TrendingVideos.tsx:137 4703 4880 msgid "Hide trending videos?" 4704 4881 msgstr "" 4705 4882 4706 - #: src/view/com/notifications/NotificationFeedItem.tsx:924 4883 + #: src/view/com/notifications/NotificationFeedItem.tsx:929 4707 4884 msgid "Hide user list" 4708 4885 msgstr "" 4709 4886 4710 4887 #: src/screens/Moderation/VerificationSettings.tsx:90 4711 4888 #: src/screens/Moderation/VerificationSettings.tsx:99 4712 4889 msgid "Hide verification badges" 4890 + msgstr "" 4891 + 4892 + #: src/screens/Settings/DeerSettings.tsx:652 4893 + msgid "Hides posts from feeds where replies are disabled (e.g. due to postgates or other restrictions). Does not affect thread views." 4713 4894 msgstr "" 4714 4895 4715 4896 #: src/components/moderation/ContentHider.tsx:159 ··· 4749 4930 msgid "Hmmmm, we couldn't load that moderation service." 4750 4931 msgstr "" 4751 4932 4752 - #: src/view/com/composer/state/video.ts:414 4933 + #: src/view/com/composer/state/video.ts:450 4753 4934 msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" 4754 4935 msgstr "" 4755 4936 4756 - #: src/Navigation.tsx:783 4757 - #: src/Navigation.tsx:803 4758 - #: src/view/shell/bottom-bar/BottomBar.tsx:178 4759 - #: src/view/shell/desktop/LeftNav.tsx:672 4760 - #: src/view/shell/Drawer.tsx:440 4937 + #: src/Navigation.tsx:812 4938 + #: src/Navigation.tsx:832 4939 + #: src/view/shell/bottom-bar/BottomBar.tsx:182 4940 + #: src/view/shell/desktop/LeftNav.tsx:682 4941 + #: src/view/shell/Drawer.tsx:458 4761 4942 msgid "Home" 4762 4943 msgstr "" 4763 4944 4764 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:428 4945 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:430 4765 4946 msgid "Host:" 4766 4947 msgstr "" 4767 4948 4768 4949 #: src/screens/Login/ForgotPasswordForm.tsx:83 4769 - #: src/screens/Login/LoginForm.tsx:184 4950 + #: src/screens/Login/LoginForm.tsx:193 4770 4951 msgid "Hosting provider" 4771 4952 msgstr "" 4772 4953 4773 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 4954 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:195 4774 4955 msgid "Hot" 4775 4956 msgstr "" 4776 4957 ··· 4787 4968 msgid "How we use your number:" 4788 4969 msgstr "" 4789 4970 4971 + #: src/screens/Settings/AppearanceSettings.tsx:204 4972 + msgid "Hue shift the colors:" 4973 + msgstr "" 4974 + 4790 4975 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:150 4791 4976 msgid "Human trafficking" 4792 4977 msgstr "" ··· 4800 4985 msgid "I have a code" 4801 4986 msgstr "" 4802 4987 4803 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:290 4804 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:296 4988 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:292 4989 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:298 4805 4990 msgid "I have my own domain" 4806 4991 msgstr "" 4807 4992 ··· 4818 5003 msgid "If alt text is long, toggles alt text expanded state" 4819 5004 msgstr "" 4820 5005 4821 - #: src/screens/Signup/StepInfo/index.tsx:351 5006 + #: src/screens/Signup/StepInfo/index.tsx:423 4822 5007 msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." 4823 5008 msgstr "" 4824 5009 ··· 4834 5019 msgid "If you choose to hide all events, you can always re-enable them from <0>Settings โ†’ Content & Media</0>." 4835 5020 msgstr "" 4836 5021 4837 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:277 5022 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:280 4838 5023 msgid "If you delete this list, you won't be able to recover it." 4839 5024 msgstr "" 4840 5025 4841 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:272 5026 + #: src/screens/Signup/StepInfo/index.tsx:214 5027 + msgid "If you have one, sign in with an existing Bluesky account." 5028 + msgstr "" 5029 + 5030 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:274 4842 5031 msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.</0>" 4843 5032 msgstr "" 4844 5033 ··· 4846 5035 msgid "If you need to update your email, <0>click here</0>." 4847 5036 msgstr "" 4848 5037 4849 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:759 5038 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1036 4850 5039 msgid "If you remove this post, you won't be able to recover it." 4851 5040 msgstr "" 4852 5041 ··· 4863 5052 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security</0>." 4864 5053 msgstr "" 4865 5054 4866 - #: src/components/dialogs/ServerInput.tsx:213 5055 + #: src/components/dialogs/ServerInput.tsx:176 4867 5056 msgid "If you're a developer, you can host your own server." 4868 5057 msgstr "" 4869 5058 ··· 4871 5060 msgid "If you're trying to change your handle or email, do so before you deactivate." 4872 5061 msgstr "" 4873 5062 4874 - #: src/components/images/Gallery.tsx:75 5063 + #: src/components/images/Gallery.tsx:80 4875 5064 msgid "Image" 4876 5065 msgstr "" 4877 5066 4878 - #: src/screens/Settings/AboutSettings.tsx:64 5067 + #: src/screens/Settings/AboutSettings.tsx:62 4879 5068 msgid "Image cache cleared" 4880 5069 msgstr "" 4881 5070 4882 5071 #. Android-only toast message which includes amount of space freed using localized number formatting 4883 - #: src/screens/Settings/AboutSettings.tsx:50 5072 + #: src/screens/Settings/AboutSettings.tsx:48 4884 5073 msgid "Image cache cleared, freed {0}" 4885 5074 msgstr "" 4886 5075 ··· 4891 5080 4892 5081 #: src/lib/media/save-image.ts:51 4893 5082 msgid "Images cannot be saved unless permission is granted to access your photo library." 5083 + msgstr "" 5084 + 5085 + #: src/screens/Settings/DeerSettings.tsx:590 5086 + msgid "Images will be served as PNG instead of JPEG. Images will take longer to load and use more bandwidth." 4894 5087 msgstr "" 4895 5088 4896 5089 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:51 ··· 4955 5148 msgid "Inbox zero!" 4956 5149 msgstr "" 4957 5150 4958 - #: src/screens/Login/LoginForm.tsx:164 5151 + #: src/screens/Login/LoginForm.tsx:173 4959 5152 msgid "Incorrect username or password" 4960 5153 msgstr "" 4961 5154 ··· 4963 5156 msgid "Input code sent to your email for password reset" 4964 5157 msgstr "" 4965 5158 4966 - #: src/view/com/modals/DeleteAccount.tsx:228 5159 + #: src/view/com/modals/DeleteAccount.tsx:231 4967 5160 msgid "Input confirmation code for account deletion" 4968 5161 msgstr "" 4969 5162 ··· 4971 5164 msgid "Input new password" 4972 5165 msgstr "" 4973 5166 4974 - #: src/view/com/modals/DeleteAccount.tsx:247 5167 + #: src/view/com/modals/DeleteAccount.tsx:253 4975 5168 msgid "Input password for account deletion" 4976 5169 msgstr "" 4977 5170 4978 - #: src/screens/Login/LoginForm.tsx:296 5171 + #: src/screens/Login/LoginForm.tsx:321 4979 5172 msgid "Input the code which has been emailed to you" 4980 5173 msgstr "" 4981 5174 5175 + #: src/screens/Settings/DeerSettings.tsx:203 5176 + msgid "Input the url of the constellations instance to use" 5177 + msgstr "" 5178 + 4982 5179 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135 4983 5180 msgid "Interaction limited" 4984 5181 msgstr "" ··· 4987 5184 msgid "Interaction settings" 4988 5185 msgstr "" 4989 5186 4990 - #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 5187 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:35 4991 5188 msgid "Introducing activity notifications" 4992 5189 msgstr "" 4993 5190 ··· 4999 5196 msgid "Introducing saved posts AKA bookmarks" 5000 5197 msgstr "" 5001 5198 5002 - #: src/screens/Login/LoginForm.tsx:156 5199 + #: src/screens/Login/LoginForm.tsx:165 5003 5200 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 5004 5201 msgid "Invalid 2FA confirmation code." 5005 5202 msgstr "" 5006 5203 5007 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:613 5204 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 5008 5205 msgid "Invalid handle. Please try a different one." 5009 5206 msgstr "" 5010 5207 5011 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:391 5208 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:561 5012 5209 msgctxt "toast" 5013 5210 msgid "Invalid interaction settings." 5014 5211 msgstr "" ··· 5018 5215 msgid "Invalid phone number" 5019 5216 msgstr "" 5020 5217 5021 - #: src/components/moderation/ReportDialog/index.tsx:92 5218 + #: src/components/moderation/ReportDialog/index.tsx:93 5022 5219 msgid "Invalid report subject" 5023 5220 msgstr "" 5024 5221 ··· 5034 5231 msgid "Invite {name} to join Bluesky" 5035 5232 msgstr "" 5036 5233 5037 - #: src/screens/Signup/StepInfo/index.tsx:195 5234 + #: src/screens/Signup/StepInfo/index.tsx:267 5038 5235 msgid "Invite code" 5039 5236 msgstr "" 5040 5237 ··· 5072 5269 msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide." 5073 5270 msgstr "" 5074 5271 5075 - #: src/screens/Signup/StepInfo/index.tsx:384 5272 + #: src/screens/Signup/StepInfo/index.tsx:456 5076 5273 msgid "It's correct" 5077 5274 msgstr "" 5078 5275 5079 - #: src/screens/StarterPack/Wizard/index.tsx:491 5276 + #: src/screens/StarterPack/Wizard/index.tsx:493 5080 5277 msgid "It's just <0>{0} </0>right now! Add more people to your starter pack by searching above." 5081 5278 msgstr "" 5082 5279 5083 - #: src/screens/StarterPack/Wizard/index.tsx:486 5280 + #: src/screens/StarterPack/Wizard/index.tsx:488 5084 5281 msgid "It's just you right now! Add more people to your starter pack by searching above." 5085 5282 msgstr "" 5086 5283 5087 - #: src/view/com/composer/Composer.tsx:1834 5284 + #: src/view/com/composer/Composer.tsx:1867 5088 5285 msgid "Job ID: {0}" 5089 5286 msgstr "" 5090 5287 5091 - #. Link to a page with job openings at Bluesky 5092 - #: src/view/com/auth/SplashScreen.web.tsx:184 5093 - msgid "Jobs" 5094 - msgstr "" 5095 - 5096 5288 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:209 5097 5289 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 5098 - #: src/screens/StarterPack/StarterPackScreen.tsx:464 5099 - #: src/screens/StarterPack/StarterPackScreen.tsx:475 5290 + #: src/screens/StarterPack/StarterPackScreen.tsx:465 5291 + #: src/screens/StarterPack/StarterPackScreen.tsx:476 5100 5292 msgid "Join Bluesky" 5101 5293 msgstr "" 5102 5294 ··· 5107 5299 5108 5300 #: src/lib/interests.ts:63 5109 5301 msgid "Journalism" 5302 + msgstr "" 5303 + 5304 + #: src/view/shell/desktop/RightNav.tsx:137 5305 + #: src/view/shell/Drawer.tsx:728 5306 + msgid "Kawaii logo by <0>ovvie</0>" 5110 5307 msgstr "" 5111 5308 5112 5309 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 5113 5310 msgid "Keep me posted" 5114 5311 msgstr "" 5115 5312 5313 + #: src/screens/Settings/AppearanceSettings.tsx:114 5314 + msgid "Kitty" 5315 + msgstr "" 5316 + 5116 5317 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:199 5117 5318 msgid "KWS website" 5118 5319 msgstr "" ··· 5125 5326 msgid "Labeled by the author." 5126 5327 msgstr "" 5127 5328 5329 + #: src/screens/Settings/DeerSettings.tsx:831 5330 + msgid "Labelers" 5331 + msgstr "" 5332 + 5128 5333 #: src/view/com/composer/labels/LabelsBtn.tsx:69 5129 5334 #: src/view/screens/Profile.tsx:232 5130 5335 msgid "Labels" ··· 5146 5351 msgid "Labels on your content" 5147 5352 msgstr "" 5148 5353 5149 - #: src/Navigation.tsx:220 5354 + #: src/Navigation.tsx:241 5150 5355 msgid "Language Settings" 5151 5356 msgstr "" 5152 5357 5153 5358 #: src/screens/Settings/LanguageSettings.tsx:78 5154 - #: src/screens/Settings/Settings.tsx:246 5155 - #: src/screens/Settings/Settings.tsx:249 5359 + #: src/screens/Settings/Settings.tsx:254 5360 + #: src/screens/Settings/Settings.tsx:257 5156 5361 msgid "Languages" 5157 5362 msgstr "" 5158 5363 5159 - #: src/screens/Settings/AppearanceSettings.tsx:160 5364 + #: src/screens/Settings/AppearanceSettings.tsx:253 5160 5365 msgid "Larger" 5161 5366 msgstr "" 5162 5367 ··· 5170 5375 msgid "Last initiated just now" 5171 5376 msgstr "" 5172 5377 5173 - #: src/screens/Hashtag.tsx:111 5378 + #: src/screens/Hashtag.tsx:114 5174 5379 #: src/screens/Search/SearchResults.tsx:62 5175 - #: src/screens/Topic.tsx:78 5380 + #: src/screens/Topic.tsx:81 5176 5381 msgid "Latest" 5177 5382 msgstr "" 5178 5383 5179 - #: src/components/verification/VerificationsDialog.tsx:170 5180 - #: src/components/verification/VerifierDialog.tsx:138 5384 + #: src/components/verification/VerificationsDialog.tsx:171 5385 + #: src/components/verification/VerifierDialog.tsx:143 5181 5386 #: src/screens/Moderation/VerificationSettings.tsx:48 5182 - #: src/screens/Profile/Header/EditProfileDialog.tsx:349 5183 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:213 5184 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:277 5387 + #: src/screens/Profile/Header/EditProfileDialog.tsx:355 5388 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:215 5389 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:279 5185 5390 msgctxt "english-only-resource" 5186 5391 msgid "Learn more" 5187 5392 msgstr "" 5188 5393 5189 - #: src/components/moderation/ScreenHider.tsx:146 5394 + #: src/components/moderation/ScreenHider.tsx:149 5190 5395 msgid "Learn More" 5191 5396 msgstr "" 5192 5397 5193 - #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:65 5398 + #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:68 5194 5399 msgid "Learn more about age assurance" 5195 5400 msgstr "" 5196 5401 5197 - #: src/view/com/auth/SplashScreen.web.tsx:172 5198 - msgid "Learn more about Bluesky" 5199 - msgstr "" 5200 - 5201 5402 #: src/components/contacts/components/InviteInfo.tsx:32 5202 5403 msgid "Learn more about how inviting friends works" 5203 5404 msgstr "" ··· 5209 5410 msgid "Learn more about importing contacts" 5210 5411 msgstr "" 5211 5412 5212 - #: src/components/dialogs/ServerInput.tsx:223 5413 + #: src/components/dialogs/ServerInput.tsx:186 5213 5414 msgid "Learn more about self hosting your PDS." 5214 5415 msgstr "" 5215 5416 ··· 5227 5428 msgstr "" 5228 5429 5229 5430 #: src/components/moderation/PostHider.tsx:113 5230 - #: src/components/moderation/ScreenHider.tsx:133 5431 + #: src/components/moderation/ScreenHider.tsx:136 5231 5432 msgid "Learn more about this warning" 5232 5433 msgstr "" 5233 5434 5234 - #: src/components/verification/VerificationsDialog.tsx:151 5235 - #: src/components/verification/VerifierDialog.tsx:119 5435 + #: src/components/verification/VerificationsDialog.tsx:152 5436 + #: src/components/verification/VerifierDialog.tsx:124 5236 5437 msgctxt "english-only-resource" 5237 5438 msgid "Learn more about verification on Bluesky" 5238 5439 msgstr "" ··· 5242 5443 msgid "Learn more about what is public on Bluesky." 5243 5444 msgstr "" 5244 5445 5245 - #: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:88 5446 + #: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 5246 5447 msgid "Learn more in your <0>account settings.</0>" 5247 5448 msgstr "" 5248 5449 5249 - #: src/components/dialogs/ServerInput.tsx:225 5450 + #: src/components/dialogs/ServerInput.tsx:188 5250 5451 #: src/components/moderation/ContentHider.tsx:247 5251 5452 msgid "Learn more." 5252 5453 msgstr "" ··· 5260 5461 msgid "Leave chat" 5261 5462 msgstr "" 5262 5463 5263 - #: src/components/dms/ConvoMenu.tsx:217 5264 5464 #: src/components/dms/ConvoMenu.tsx:220 5265 - #: src/components/dms/ConvoMenu.tsx:280 5465 + #: src/components/dms/ConvoMenu.tsx:223 5266 5466 #: src/components/dms/ConvoMenu.tsx:283 5467 + #: src/components/dms/ConvoMenu.tsx:286 5267 5468 #: src/components/dms/LeaveConvoPrompt.tsx:42 5268 5469 msgid "Leave conversation" 5269 5470 msgstr "" ··· 5274 5475 5275 5476 #: src/components/dialogs/LinkWarning.tsx:67 5276 5477 #: src/components/dialogs/LinkWarning.tsx:75 5277 - msgid "Leaving Bluesky" 5478 + msgid "Leaving Witchsky" 5278 5479 msgstr "" 5279 5480 5280 5481 #: src/screens/SignupQueued.tsx:155 ··· 5285 5486 msgid "Let me choose" 5286 5487 msgstr "" 5287 5488 5288 - #: src/screens/Login/index.tsx:168 5289 - #: src/screens/Login/index.tsx:183 5489 + #: src/screens/Login/index.tsx:216 5490 + #: src/screens/Login/index.tsx:231 5290 5491 msgid "Let's get your password reset!" 5291 5492 msgstr "" 5292 5493 ··· 5296 5497 5297 5498 #: src/components/dialogs/Embed.tsx:163 5298 5499 #: src/components/dialogs/Embed.tsx:165 5299 - #: src/screens/Settings/AppearanceSettings.tsx:89 5500 + #: src/screens/Settings/AppearanceSettings.tsx:141 5300 5501 msgid "Light" 5301 5502 msgstr "" 5302 5503 ··· 5305 5506 msgid "Light" 5306 5507 msgstr "" 5307 5508 5308 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:515 5509 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:519 5309 5510 msgid "Like" 5310 5511 msgstr "" 5311 5512 5312 5513 #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form 5313 - #: src/components/PostControls/index.tsx:286 5514 + #: src/components/PostControls/index.tsx:300 5314 5515 msgid "Like ({0, plural, one {# like} other {# likes}})" 5315 5516 msgstr "" 5316 5517 ··· 5323 5524 msgid "Like 10 posts to train the Discover feed" 5324 5525 msgstr "" 5325 5526 5326 - #: src/Navigation.tsx:462 5527 + #: src/Navigation.tsx:491 5327 5528 msgid "Like notifications" 5328 5529 msgstr "" 5329 5530 5330 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:502 5531 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:506 5331 5532 msgid "Like this feed" 5332 5533 msgstr "" 5333 5534 5334 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:146 5535 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:149 5335 5536 msgid "Like this labeler" 5336 5537 msgstr "" 5337 5538 5338 - #: src/Navigation.tsx:298 5339 - #: src/Navigation.tsx:303 5539 + #: src/Navigation.tsx:319 5540 + #: src/Navigation.tsx:324 5340 5541 msgid "Liked by" 5341 5542 msgstr "" 5342 5543 5343 - #: src/screens/Post/PostLikedBy.tsx:41 5544 + #: src/screens/Post/PostLikedBy.tsx:51 5344 5545 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:32 5345 5546 #: src/view/screens/ProfileFeedLikedBy.tsx:32 5346 5547 msgid "Liked By" ··· 5352 5553 msgstr "" 5353 5554 5354 5555 #: src/components/LabelingServiceCard/index.tsx:96 5355 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:490 5356 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:166 5357 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:180 5556 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:494 5557 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 5558 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 5358 5559 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" 5359 5560 msgstr "" 5360 5561 ··· 5371 5572 msgid "Likes of your reposts" 5372 5573 msgstr "" 5373 5574 5374 - #: src/Navigation.tsx:486 5575 + #: src/Navigation.tsx:515 5375 5576 msgid "Likes of your reposts notifications" 5376 5577 msgstr "" 5377 5578 5378 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:482 5579 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:498 5379 5580 msgid "Likes on this post" 5380 5581 msgstr "" 5381 5582 5382 - #: src/screens/PostThread/components/HeaderDropdown.tsx:47 5383 - #: src/screens/PostThread/components/HeaderDropdown.tsx:52 5583 + #: src/screens/PostThread/components/HeaderDropdown.tsx:51 5584 + #: src/screens/PostThread/components/HeaderDropdown.tsx:56 5384 5585 msgid "Linear" 5385 5586 msgstr "" 5386 5587 5387 - #: src/Navigation.tsx:253 5588 + #: src/Navigation.tsx:274 5388 5589 msgid "List" 5389 5590 msgstr "" 5390 5591 5391 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:380 5592 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:384 5392 5593 msgid "List avatar" 5393 5594 msgstr "" 5394 5595 5395 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:50 5596 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:53 5396 5597 msgctxt "toast" 5397 5598 msgid "List blocked" 5398 5599 msgstr "" ··· 5414 5615 msgid "List creator" 5415 5616 msgstr "" 5416 5617 5417 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:90 5618 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93 5418 5619 msgctxt "toast" 5419 5620 msgid "List deleted" 5420 5621 msgstr "" 5421 5622 5422 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:429 5623 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:433 5423 5624 msgid "List description" 5424 5625 msgstr "" 5425 5626 5426 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:449 5627 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:453 5427 5628 msgid "List description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" 5428 5629 msgstr "" 5429 5630 ··· 5435 5636 msgid "List Hidden" 5436 5637 msgstr "" 5437 5638 5438 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:421 5639 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:425 5439 5640 msgid "List must have a name." 5440 5641 msgstr "" 5441 5642 5442 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:31 5643 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:34 5443 5644 msgctxt "toast" 5444 5645 msgid "List muted" 5445 5646 msgstr "" 5446 5647 5447 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:393 5648 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:397 5448 5649 msgid "List name" 5449 5650 msgstr "" 5450 5651 5451 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:413 5652 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:417 5452 5653 msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" 5453 5654 msgstr "" 5454 5655 5455 - #: src/screens/ProfileList/components/Header.tsx:116 5456 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:131 5656 + #: src/screens/ProfileList/components/Header.tsx:119 5657 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:134 5457 5658 msgctxt "toast" 5458 5659 msgid "List unblocked" 5459 5660 msgstr "" 5460 5661 5461 - #: src/screens/ProfileList/components/Header.tsx:98 5462 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:113 5662 + #: src/screens/ProfileList/components/Header.tsx:101 5663 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:116 5463 5664 msgctxt "toast" 5464 5665 msgid "List unmuted" 5465 5666 msgstr "" 5466 5667 5467 - #: src/Navigation.tsx:174 5668 + #: src/Navigation.tsx:195 5468 5669 #: src/view/screens/Lists.tsx:67 5469 5670 #: src/view/screens/Profile.tsx:233 5470 5671 #: src/view/screens/Profile.tsx:241 5471 - #: src/view/shell/desktop/LeftNav.tsx:746 5472 - #: src/view/shell/Drawer.tsx:545 5672 + #: src/view/shell/desktop/LeftNav.tsx:756 5673 + #: src/view/shell/Drawer.tsx:563 5473 5674 msgid "Lists" 5474 5675 msgstr "" 5475 5676 5476 - #: src/view/com/lists/MyLists.tsx:72 5677 + #: src/view/com/lists/MyLists.tsx:74 5477 5678 msgid "Lists allow you to see content from your favorite people." 5478 5679 msgstr "" 5479 5680 ··· 5499 5700 msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." 5500 5701 msgstr "" 5501 5702 5502 - #: src/components/live/LiveStatusDialog.tsx:235 5703 + #: src/components/live/LiveStatusDialog.tsx:264 5503 5704 msgid "Live feature is in beta" 5504 5705 msgstr "" 5505 5706 ··· 5519 5720 msgid "Load more suggested feeds" 5520 5721 msgstr "" 5521 5722 5522 - #: src/view/screens/Notifications.tsx:278 5723 + #: src/view/screens/Notifications.tsx:281 5523 5724 msgid "Load new notifications" 5524 5725 msgstr "" 5525 5726 ··· 5542 5743 msgid "Loading..." 5543 5744 msgstr "" 5544 5745 5545 - #: src/Navigation.tsx:323 5746 + #: src/Navigation.tsx:344 5546 5747 msgid "Log" 5547 5748 msgstr "" 5548 5749 5549 - #: src/components/AccountList.tsx:191 5750 + #: src/components/AccountList.tsx:194 5550 5751 msgid "Logged out" 5551 5752 msgstr "" 5552 5753 ··· 5554 5755 msgid "Logged-out visibility" 5555 5756 msgstr "" 5556 5757 5557 - #: src/view/shell/desktop/RightNav.tsx:140 5558 - msgid "Logo by @sawaratsuki.bsky.social" 5758 + #: src/screens/Settings/AppearanceSettings.tsx:266 5759 + msgid "Logo" 5559 5760 msgstr "" 5560 5761 5561 - #: src/view/shell/desktop/RightNav.tsx:137 5562 - #: src/view/shell/Drawer.tsx:709 5563 - msgid "Logo by <0>@sawaratsuki.bsky.social</0>" 5762 + #: src/view/shell/desktop/RightNav.tsx:140 5763 + msgid "Logo by ovvie" 5564 5764 msgstr "" 5565 5765 5566 5766 #: src/components/RichTextTag.tsx:54 ··· 5604 5804 msgid "Manage verification settings" 5605 5805 msgstr "" 5606 5806 5607 - #: src/components/dialogs/MutedWords.tsx:108 5807 + #: src/components/dialogs/MutedWords.tsx:109 5608 5808 msgid "Manage your muted words and tags" 5609 5809 msgstr "" 5610 5810 ··· 5614 5814 msgid "Mark all as read" 5615 5815 msgstr "" 5616 5816 5617 - #: src/components/dms/ConvoMenu.tsx:229 5618 5817 #: src/components/dms/ConvoMenu.tsx:232 5818 + #: src/components/dms/ConvoMenu.tsx:235 5619 5819 msgid "Mark as read" 5620 5820 msgstr "" 5621 5821 ··· 5624 5824 msgid "Marked all as read" 5625 5825 msgstr "" 5626 5826 5627 - #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:90 5628 - #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:97 5827 + #: src/screens/Settings/DeerSettings.tsx:469 5828 + msgid "May slow down the client or fail to find all labels. Revoke and grant trust in the meatball menu on a profile. {0} trust the following verifiers:" 5829 + msgstr "" 5830 + 5831 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:95 5832 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:102 5629 5833 msgid "Maybe later" 5630 5834 msgstr "" 5631 5835 ··· 5637 5841 msgid "Media that may be disturbing or inappropriate for some audiences." 5638 5842 msgstr "" 5639 5843 5640 - #: src/Navigation.tsx:446 5844 + #: src/Navigation.tsx:475 5641 5845 msgid "Mention notifications" 5642 5846 msgstr "" 5643 5847 ··· 5648 5852 #: src/lib/hooks/useNotificationHandler.ts:147 5649 5853 #: src/screens/Settings/NotificationSettings/index.tsx:159 5650 5854 #: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 5651 - #: src/view/screens/Notifications.tsx:101 5855 + #: src/view/screens/Notifications.tsx:104 5652 5856 msgid "Mentions" 5653 5857 msgstr "" 5654 5858 5655 - #: src/components/Menu/index.tsx:111 5859 + #: src/components/Menu/index.tsx:112 5656 5860 msgid "Menu" 5657 5861 msgstr "" 5658 5862 5659 - #: src/components/dms/MessageProfileButton.tsx:97 5863 + #: src/components/dms/MessageProfileButton.tsx:100 5660 5864 msgid "Message {0}" 5661 5865 msgstr "" 5662 5866 ··· 5665 5869 msgid "Message deleted" 5666 5870 msgstr "" 5667 5871 5668 - #: src/screens/Messages/components/ChatListItem.tsx:199 5872 + #: src/screens/Messages/components/ChatListItem.tsx:203 5669 5873 msgid "Message deleted" 5670 5874 msgstr "" 5671 5875 ··· 5677 5881 msgid "Message from server: {0}" 5678 5882 msgstr "" 5679 5883 5680 - #: src/screens/Messages/components/MessageInput.tsx:152 5884 + #: src/screens/Messages/components/MessageInput.tsx:155 5681 5885 msgid "Message input field" 5682 5886 msgstr "" 5683 5887 5684 - #: src/screens/Messages/components/MessageInput.tsx:79 5685 - #: src/screens/Messages/components/MessageInput.web.tsx:60 5888 + #: src/screens/Messages/components/MessageInput.tsx:82 5889 + #: src/screens/Messages/components/MessageInput.web.tsx:63 5686 5890 msgid "Message is too long" 5687 5891 msgstr "" 5688 5892 ··· 5690 5894 msgid "Message options" 5691 5895 msgstr "" 5692 5896 5693 - #: src/Navigation.tsx:798 5897 + #: src/Navigation.tsx:827 5694 5898 msgid "Messages" 5695 5899 msgstr "" 5696 5900 5697 - #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 5698 - msgctxt "Name of app icon variant" 5699 - msgid "Midnight" 5901 + #: src/screens/Settings/DeerSettings.tsx:681 5902 + msgid "Metrics" 5700 5903 msgstr "" 5701 5904 5702 5905 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:177 5703 5906 msgid "Minor harassment or bullying" 5704 5907 msgstr "" 5705 5908 5706 - #: src/Navigation.tsx:510 5909 + #: src/Navigation.tsx:539 5707 5910 msgid "Miscellaneous notifications" 5708 5911 msgstr "" 5709 5912 ··· 5711 5914 msgid "Misleading" 5712 5915 msgstr "" 5713 5916 5714 - #: src/Navigation.tsx:179 5917 + #: src/Navigation.tsx:200 5715 5918 #: src/screens/Moderation/index.tsx:99 5716 - #: src/screens/Settings/Settings.tsx:194 5717 - #: src/screens/Settings/Settings.tsx:197 5919 + #: src/screens/Settings/Settings.tsx:196 5920 + #: src/screens/Settings/Settings.tsx:199 5718 5921 msgid "Moderation" 5719 5922 msgstr "" 5720 5923 ··· 5723 5926 msgstr "" 5724 5927 5725 5928 #: src/components/ListCard.tsx:151 5726 - #: src/view/com/modals/UserAddRemoveLists.tsx:222 5929 + #: src/view/com/modals/UserAddRemoveLists.tsx:224 5727 5930 msgid "Moderation list by {0}" 5728 5931 msgstr "" 5729 5932 ··· 5731 5934 msgid "Moderation list by <0/>" 5732 5935 msgstr "" 5733 5936 5734 - #: src/view/com/modals/UserAddRemoveLists.tsx:220 5937 + #: src/view/com/modals/UserAddRemoveLists.tsx:222 5735 5938 #: src/view/com/profile/ProfileSubpageHeader.tsx:171 5736 5939 msgid "Moderation list by you" 5737 5940 msgstr "" 5738 5941 5739 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:239 5942 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:242 5740 5943 msgctxt "toast" 5741 5944 msgid "Moderation list created" 5742 5945 msgstr "" 5743 5946 5744 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:225 5947 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:228 5745 5948 msgctxt "toast" 5746 5949 msgid "Moderation list updated" 5747 5950 msgstr "" ··· 5750 5953 msgid "Moderation lists" 5751 5954 msgstr "" 5752 5955 5753 - #: src/Navigation.tsx:184 5956 + #: src/Navigation.tsx:205 5754 5957 #: src/view/screens/ModerationModlists.tsx:67 5755 5958 msgid "Moderation Lists" 5756 5959 msgstr "" ··· 5759 5962 msgid "moderation settings" 5760 5963 msgstr "" 5761 5964 5762 - #: src/Navigation.tsx:313 5965 + #: src/Navigation.tsx:334 5763 5966 msgid "Moderation states" 5764 5967 msgstr "" 5765 5968 ··· 5782 5985 msgid "More languages..." 5783 5986 msgstr "" 5784 5987 5785 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:149 5786 - #: src/view/com/profile/ProfileMenu.tsx:241 5787 - #: src/view/com/profile/ProfileMenu.tsx:248 5988 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:152 5989 + #: src/view/com/profile/ProfileMenu.tsx:258 5990 + #: src/view/com/profile/ProfileMenu.tsx:265 5788 5991 msgid "More options" 5789 5992 msgstr "" 5790 5993 ··· 5804 6007 msgid "Music" 5805 6008 msgstr "" 5806 6009 5807 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 6010 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:154 5808 6011 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97 5809 6012 msgctxt "video" 5810 6013 msgid "Mute" ··· 5815 6018 msgid "Mute {tag}" 5816 6019 msgstr "" 5817 6020 5818 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:686 5819 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:692 5820 - #: src/view/com/profile/ProfileMenu.tsx:435 5821 - #: src/view/com/profile/ProfileMenu.tsx:442 6021 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:963 6022 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:969 6023 + #: src/view/com/profile/ProfileMenu.tsx:514 6024 + #: src/view/com/profile/ProfileMenu.tsx:521 5822 6025 msgid "Mute account" 5823 6026 msgstr "" 5824 6027 5825 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:89 5826 6028 #: src/screens/ProfileList/components/SubscribeMenu.tsx:92 6029 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:95 5827 6030 msgid "Mute accounts" 5828 6031 msgstr "" 5829 6032 5830 - #: src/components/dms/ConvoMenu.tsx:246 5831 - #: src/components/dms/ConvoMenu.tsx:252 6033 + #: src/components/dms/ConvoMenu.tsx:249 6034 + #: src/components/dms/ConvoMenu.tsx:255 5832 6035 msgid "Mute conversation" 5833 6036 msgstr "" 5834 6037 5835 - #: src/components/dialogs/MutedWords.tsx:258 6038 + #: src/components/dialogs/MutedWords.tsx:259 5836 6039 msgid "Mute in:" 5837 6040 msgstr "" 5838 6041 5839 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:115 6042 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:118 5840 6043 msgid "Mute list" 5841 6044 msgstr "" 5842 6045 5843 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:110 6046 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:113 5844 6047 msgid "Mute these accounts?" 5845 6048 msgstr "" 5846 6049 5847 - #: src/components/dialogs/MutedWords.tsx:190 6050 + #: src/components/dialogs/MutedWords.tsx:191 5848 6051 msgid "Mute this word for 24 hours" 5849 6052 msgstr "" 5850 6053 5851 - #: src/components/dialogs/MutedWords.tsx:229 6054 + #: src/components/dialogs/MutedWords.tsx:230 5852 6055 msgid "Mute this word for 30 days" 5853 6056 msgstr "" 5854 6057 5855 - #: src/components/dialogs/MutedWords.tsx:214 6058 + #: src/components/dialogs/MutedWords.tsx:215 5856 6059 msgid "Mute this word for 7 days" 5857 6060 msgstr "" 5858 6061 5859 - #: src/components/dialogs/MutedWords.tsx:263 6062 + #: src/components/dialogs/MutedWords.tsx:264 5860 6063 msgid "Mute this word in post text and tags" 5861 6064 msgstr "" 5862 6065 5863 - #: src/components/dialogs/MutedWords.tsx:279 6066 + #: src/components/dialogs/MutedWords.tsx:280 5864 6067 msgid "Mute this word in tags only" 5865 6068 msgstr "" 5866 6069 5867 - #: src/components/dialogs/MutedWords.tsx:175 6070 + #: src/components/dialogs/MutedWords.tsx:176 5868 6071 msgid "Mute this word until you unmute it" 5869 6072 msgstr "" 5870 6073 5871 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 5872 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:574 6074 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:847 6075 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 5873 6076 msgid "Mute thread" 5874 6077 msgstr "" 5875 6078 5876 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:584 5877 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:586 6079 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:861 6080 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:863 5878 6081 msgid "Mute words & tags" 5879 6082 msgstr "" 5880 6083 ··· 5882 6085 msgid "Muted accounts" 5883 6086 msgstr "" 5884 6087 5885 - #: src/Navigation.tsx:189 6088 + #: src/Navigation.tsx:210 5886 6089 #: src/view/screens/ModerationMutedAccounts.tsx:116 5887 6090 msgid "Muted Accounts" 5888 6091 msgstr "" ··· 5899 6102 msgid "Muted words & tags" 5900 6103 msgstr "" 5901 6104 5902 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:112 6105 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:115 5903 6106 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." 5904 6107 msgstr "" 5905 6108 6109 + #. User is following this account, click to unfollow 6110 + #: src/components/ProfileCard.tsx:547 6111 + #: src/components/ProfileHoverCard/index.web.tsx:508 6112 + #: src/components/ProfileHoverCard/index.web.tsx:523 6113 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:146 6114 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:380 6115 + #: src/view/com/notifications/NotificationFeedItem.tsx:841 6116 + msgid "Mutuals" 6117 + msgstr "" 6118 + 5906 6119 #: src/components/dialogs/BirthDateSettings.tsx:47 5907 6120 #: src/components/dialogs/BirthDateSettings.tsx:51 5908 6121 msgid "My Birthdate" 5909 6122 msgstr "" 5910 6123 5911 - #: src/view/screens/Feeds.tsx:704 6124 + #: src/view/screens/Feeds.tsx:709 5912 6125 msgid "My Feeds" 5913 6126 msgstr "" 5914 6127 5915 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:399 6128 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:403 5916 6129 msgid "Name" 5917 6130 msgstr "" 5918 6131 ··· 5930 6143 msgstr "" 5931 6144 5932 6145 #: src/screens/Login/ForgotPasswordForm.tsx:166 5933 - #: src/screens/Login/LoginForm.tsx:347 6146 + #: src/screens/Login/LoginForm.tsx:372 5934 6147 msgid "Navigates to the next screen" 5935 6148 msgstr "" 5936 6149 5937 - #: src/view/shell/Drawer.tsx:78 6150 + #: src/view/shell/Drawer.tsx:85 5938 6151 msgid "Navigates to your profile" 5939 6152 msgstr "" 5940 6153 5941 - #: src/components/moderation/ReportDialog/index.tsx:333 5942 - #: src/components/moderation/ReportDialog/index.tsx:350 6154 + #: src/components/moderation/ReportDialog/index.tsx:336 6155 + #: src/components/moderation/ReportDialog/index.tsx:353 5943 6156 msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" 5944 6157 msgstr "" 5945 6158 5946 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:583 6159 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:585 5947 6160 msgid "Nevermind, create a handle for me" 5948 6161 msgstr "" 5949 6162 5950 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 5951 - #: src/view/com/profile/ProfileMenu.tsx:390 6163 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 6164 + #: src/view/com/profile/ProfileMenu.tsx:469 5952 6165 msgid "New" 5953 6166 msgstr "" 5954 6167 ··· 5958 6171 msgid "New" 5959 6172 msgstr "" 5960 6173 5961 - #: src/view/com/notifications/NotificationFeedItem.tsx:563 6174 + #: src/view/com/notifications/NotificationFeedItem.tsx:568 5962 6175 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" 5963 6176 msgstr "" 5964 6177 5965 - #: src/view/com/notifications/NotificationFeedItem.tsx:546 6178 + #: src/view/com/notifications/NotificationFeedItem.tsx:551 5966 6179 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" 5967 6180 msgstr "" 5968 6181 5969 6182 #: src/components/dms/dialogs/NewChatDialog.tsx:67 5970 - #: src/screens/Messages/ChatList.tsx:403 5971 - #: src/screens/Messages/ChatList.tsx:410 6183 + #: src/screens/Messages/ChatList.tsx:406 6184 + #: src/screens/Messages/ChatList.tsx:413 5972 6185 msgid "New chat" 5973 6186 msgstr "" 5974 6187 ··· 5976 6189 msgid "New email address" 5977 6190 msgstr "" 5978 6191 5979 - #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:74 6192 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:77 5980 6193 #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73 5981 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:63 6194 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:66 5982 6195 msgid "New Feature" 5983 6196 msgstr "" 5984 6197 5985 - #: src/Navigation.tsx:478 6198 + #: src/Navigation.tsx:507 5986 6199 msgid "New follower notifications" 5987 6200 msgstr "" 5988 6201 ··· 5992 6205 msgid "New followers" 5993 6206 msgstr "" 5994 6207 5995 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:226 5996 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:234 5997 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:385 6208 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:228 6209 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:236 6210 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:387 5998 6211 msgid "New handle" 5999 6212 msgstr "" 6000 6213 ··· 6003 6216 msgid "New list" 6004 6217 msgstr "" 6005 6218 6006 - #: src/components/dms/NewMessagesPill.tsx:92 6219 + #: src/components/dms/NewMessagesPill.tsx:95 6007 6220 msgid "New messages" 6008 6221 msgstr "" 6009 6222 ··· 6016 6229 #: src/screens/Profile/ProfileFeed/index.tsx:248 6017 6230 #: src/screens/ProfileList/index.tsx:246 6018 6231 #: src/screens/ProfileList/index.tsx:284 6019 - #: src/view/screens/Feeds.tsx:552 6020 - #: src/view/screens/Notifications.tsx:167 6232 + #: src/view/screens/Feeds.tsx:557 6233 + #: src/view/screens/Notifications.tsx:170 6021 6234 #: src/view/screens/Profile.tsx:591 6022 6235 msgid "New post" 6023 6236 msgstr "" ··· 6027 6240 msgid "New post" 6028 6241 msgstr "" 6029 6242 6030 - #: src/view/shell/desktop/LeftNav.tsx:581 6243 + #: src/view/shell/desktop/LeftNav.tsx:591 6031 6244 msgctxt "action" 6032 6245 msgid "New Post" 6033 6246 msgstr "" 6034 6247 6035 - #: src/view/com/notifications/NotificationFeedItem.tsx:552 6248 + #: src/view/com/notifications/NotificationFeedItem.tsx:557 6036 6249 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0>" 6037 6250 msgstr "" 6038 6251 6039 - #: src/view/com/notifications/NotificationFeedItem.tsx:537 6252 + #: src/view/com/notifications/NotificationFeedItem.tsx:542 6040 6253 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 6041 6254 msgstr "" 6042 6255 6043 - #: src/components/dialogs/StarterPackDialog.tsx:193 6256 + #: src/components/dialogs/StarterPackDialog.tsx:196 6044 6257 msgid "New starter pack" 6045 6258 msgstr "" 6046 6259 ··· 6048 6261 msgid "New user info dialog" 6049 6262 msgstr "" 6050 6263 6051 - #: src/screens/PostThread/components/HeaderDropdown.tsx:93 6052 - #: src/screens/PostThread/components/HeaderDropdown.tsx:98 6264 + #: src/screens/PostThread/components/HeaderDropdown.tsx:97 6265 + #: src/screens/PostThread/components/HeaderDropdown.tsx:102 6053 6266 #: src/screens/Settings/ThreadPreferences.tsx:72 6054 6267 #: src/screens/Settings/ThreadPreferences.tsx:75 6055 6268 msgid "Newest replies first" 6056 6269 msgstr "" 6057 6270 6058 6271 #: src/lib/interests.ts:67 6059 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:238 6272 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:242 6060 6273 msgid "News" 6061 6274 msgstr "" 6062 6275 ··· 6064 6277 #: src/components/contacts/screens/ViewMatches.tsx:407 6065 6278 #: src/screens/Login/ForgotPasswordForm.tsx:137 6066 6279 #: src/screens/Login/ForgotPasswordForm.tsx:143 6067 - #: src/screens/Login/LoginForm.tsx:346 6068 - #: src/screens/Login/LoginForm.tsx:353 6280 + #: src/screens/Login/LoginForm.tsx:371 6281 + #: src/screens/Login/LoginForm.tsx:378 6069 6282 #: src/screens/Login/SetNewPasswordForm.tsx:182 6070 6283 #: src/screens/Login/SetNewPasswordForm.tsx:188 6071 6284 #: src/screens/Onboarding/StepFinished/index.tsx:329 ··· 6073 6286 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 6074 6287 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 6075 6288 #: src/screens/Signup/BackNextButtons.tsx:67 6076 - #: src/screens/StarterPack/Wizard/index.tsx:210 6077 - #: src/screens/StarterPack/Wizard/index.tsx:214 6078 - #: src/screens/StarterPack/Wizard/index.tsx:392 6079 - #: src/screens/StarterPack/Wizard/index.tsx:399 6289 + #: src/screens/StarterPack/Wizard/index.tsx:211 6290 + #: src/screens/StarterPack/Wizard/index.tsx:215 6291 + #: src/screens/StarterPack/Wizard/index.tsx:393 6292 + #: src/screens/StarterPack/Wizard/index.tsx:400 6080 6293 msgid "Next" 6081 6294 msgstr "" 6082 6295 ··· 6104 6317 msgid "No custom feeds yet" 6105 6318 msgstr "" 6106 6319 6107 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:408 6108 6320 #: src/screens/Settings/components/ChangeHandleDialog.tsx:410 6321 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:412 6109 6322 msgid "No DNS Panel" 6110 6323 msgstr "" 6111 6324 ··· 6113 6326 msgid "No expiry set" 6114 6327 msgstr "" 6115 6328 6116 - #: src/components/dialogs/GifSelect.tsx:219 6329 + #: src/components/dialogs/GifSelect.tsx:222 6117 6330 msgid "No featured GIFs found. There may be an issue with Tenor." 6118 6331 msgstr "" 6119 6332 ··· 6140 6353 msgstr "" 6141 6354 6142 6355 #: src/components/ProfileCard.tsx:531 6143 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 6144 - #: src/view/com/notifications/NotificationFeedItem.tsx:792 6356 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 6357 + #: src/view/com/notifications/NotificationFeedItem.tsx:797 6145 6358 msgid "No longer following {0}" 6146 6359 msgstr "" 6147 6360 ··· 6149 6362 msgid "No media yet" 6150 6363 msgstr "" 6151 6364 6152 - #: src/screens/Messages/components/ChatListItem.tsx:141 6365 + #: src/screens/Messages/components/ChatListItem.tsx:145 6153 6366 msgid "No messages yet" 6154 6367 msgstr "" 6155 6368 ··· 6161 6374 msgid "No name" 6162 6375 msgstr "" 6163 6376 6164 - #: src/view/com/notifications/NotificationFeed.tsx:125 6377 + #: src/view/com/notifications/NotificationFeed.tsx:127 6165 6378 msgid "No notifications yet!" 6166 6379 msgstr "" 6167 6380 ··· 6203 6416 msgid "No result" 6204 6417 msgstr "" 6205 6418 6206 - #: src/components/dialogs/SearchablePeopleList.tsx:223 6207 - #: src/components/ProgressGuide/FollowDialog.tsx:229 6419 + #: src/components/dialogs/SearchablePeopleList.tsx:226 6420 + #: src/components/ProgressGuide/FollowDialog.tsx:230 6208 6421 msgid "No results" 6209 6422 msgstr "" 6210 6423 ··· 6217 6430 msgid "No results found" 6218 6431 msgstr "" 6219 6432 6220 - #: src/view/screens/Feeds.tsx:473 6433 + #: src/view/screens/Feeds.tsx:477 6221 6434 msgid "No results found for \"{query}\"" 6222 6435 msgstr "" 6223 6436 6224 - #: src/screens/Search/SearchResults.tsx:168 6437 + #: src/screens/Search/SearchResults.tsx:170 6225 6438 msgid "No results found for \"<0>{query}</0>\"." 6226 6439 msgstr "" 6227 6440 ··· 6229 6442 msgid "No results." 6230 6443 msgstr "" 6231 6444 6232 - #: src/components/dialogs/GifSelect.tsx:217 6445 + #: src/components/dialogs/GifSelect.tsx:220 6233 6446 msgid "No search results found for \"{search}\"." 6234 6447 msgstr "" 6235 6448 ··· 6288 6501 msgid "Not followed by anyone you're following" 6289 6502 msgstr "" 6290 6503 6291 - #: src/Navigation.tsx:169 6504 + #: src/Navigation.tsx:190 6292 6505 #: src/view/screens/Profile.tsx:132 6293 6506 msgid "Not Found" 6294 6507 msgstr "" 6295 6508 6296 - #: src/view/com/profile/ProfileMenu.tsx:557 6509 + #: src/view/com/profile/ProfileMenu.tsx:636 6297 6510 msgid "Note about sharing" 6298 6511 msgstr "" 6299 6512 ··· 6301 6514 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." 6302 6515 msgstr "" 6303 6516 6304 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 6517 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:193 6305 6518 msgid "Note: This post is only visible to logged-in users." 6306 6519 msgstr "" 6307 6520 6308 - #: src/screens/Messages/ChatList.tsx:304 6521 + #: src/screens/Messages/ChatList.tsx:305 6309 6522 msgid "Nothing here" 6310 6523 msgstr "" 6311 6524 ··· 6314 6527 msgid "Nothing saved yet" 6315 6528 msgstr "" 6316 6529 6317 - #: src/Navigation.tsx:432 6318 - #: src/Navigation.tsx:579 6319 - #: src/view/screens/Notifications.tsx:136 6530 + #: src/Navigation.tsx:461 6531 + #: src/Navigation.tsx:608 6532 + #: src/view/screens/Notifications.tsx:139 6320 6533 msgid "Notification settings" 6321 6534 msgstr "" 6322 6535 ··· 6328 6541 msgid "Notification Sounds" 6329 6542 msgstr "" 6330 6543 6331 - #: src/Navigation.tsx:574 6332 - #: src/Navigation.tsx:793 6544 + #: src/Navigation.tsx:603 6545 + #: src/Navigation.tsx:822 6333 6546 #: src/screens/Notifications/ActivityList.tsx:30 6334 6547 #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 6335 6548 #: src/screens/Settings/NotificationSettings/index.tsx:92 ··· 6342 6555 #: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 6343 6556 #: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 6344 6557 #: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 6345 - #: src/screens/Settings/Settings.tsx:202 6346 - #: src/screens/Settings/Settings.tsx:205 6347 - #: src/view/screens/Notifications.tsx:130 6348 - #: src/view/shell/bottom-bar/BottomBar.tsx:252 6349 - #: src/view/shell/desktop/LeftNav.tsx:709 6350 - #: src/view/shell/Drawer.tsx:493 6558 + #: src/screens/Settings/Settings.tsx:204 6559 + #: src/screens/Settings/Settings.tsx:207 6560 + #: src/view/screens/Notifications.tsx:133 6561 + #: src/view/shell/bottom-bar/BottomBar.tsx:256 6562 + #: src/view/shell/desktop/LeftNav.tsx:719 6563 + #: src/view/shell/Drawer.tsx:511 6351 6564 msgid "Notifications" 6352 6565 msgstr "" 6353 6566 ··· 6377 6590 msgid "Off" 6378 6591 msgstr "" 6379 6592 6380 - #: src/components/dialogs/GifSelect.tsx:256 6381 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:323 6593 + #: src/components/dialogs/GifSelect.tsx:259 6594 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:326 6382 6595 #: src/view/com/util/ErrorBoundary.tsx:57 6383 6596 msgid "Oh no!" 6384 6597 msgstr "" 6385 6598 6386 6599 #. Confirm button text. 6387 6600 #: src/components/contacts/screens/GetContacts.tsx:314 6388 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:222 6389 - #: src/screens/Search/modules/ExploreInterestsCard.tsx:48 6601 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225 6602 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:51 6390 6603 #: src/screens/Settings/AppIconSettings/index.tsx:48 6391 6604 #: src/screens/Settings/AppIconSettings/index.tsx:234 6392 6605 msgid "OK" 6393 6606 msgstr "" 6394 6607 6395 6608 #: src/screens/Login/PasswordUpdatedForm.tsx:37 6396 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:705 6609 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:724 6397 6610 msgid "Okay" 6398 6611 msgstr "" 6399 6612 6400 - #: src/screens/PostThread/components/HeaderDropdown.tsx:83 6401 - #: src/screens/PostThread/components/HeaderDropdown.tsx:88 6613 + #: src/screens/PostThread/components/HeaderDropdown.tsx:87 6614 + #: src/screens/PostThread/components/HeaderDropdown.tsx:92 6402 6615 #: src/screens/Settings/ThreadPreferences.tsx:64 6403 6616 #: src/screens/Settings/ThreadPreferences.tsx:67 6404 6617 msgid "Oldest replies first" 6618 + msgstr "" 6619 + 6620 + #: src/screens/Settings/DeerSettings.tsx:541 6621 + #: src/screens/Settings/DeerSettings.tsx:547 6622 + msgid "On non-bsky.social handles, show a link to that URL" 6405 6623 msgstr "" 6406 6624 6407 6625 #: src/components/StarterPack/QrCode.tsx:87 6408 6626 msgid "on<0><1/><2><3/></2></0>" 6409 6627 msgstr "" 6410 6628 6411 - #: src/screens/Settings/Settings.tsx:406 6629 + #: src/screens/Settings/Settings.tsx:414 6412 6630 msgid "Onboarding reset" 6413 6631 msgstr "" 6414 6632 6415 - #: src/view/com/composer/Composer.tsx:398 6633 + #: src/view/com/composer/Composer.tsx:400 6416 6634 msgid "One or more GIFs is missing alt text." 6417 6635 msgstr "" 6418 6636 6419 - #: src/view/com/composer/Composer.tsx:395 6637 + #: src/view/com/composer/Composer.tsx:397 6420 6638 msgid "One or more images is missing alt text." 6421 6639 msgstr "" 6422 6640 6423 - #: src/view/com/composer/SelectMediaButton.tsx:393 6641 + #: src/view/com/composer/SelectMediaButton.tsx:394 6424 6642 msgid "One or more of your selected files are not supported." 6425 6643 msgstr "" 6426 6644 6427 - #: src/view/com/composer/SelectMediaButton.tsx:416 6645 + #: src/view/com/composer/SelectMediaButton.tsx:417 6428 6646 msgid "One or more of your selected files are too large. Maximum size is 100ย MB." 6429 6647 msgstr "" 6430 6648 6431 - #: src/view/com/composer/Composer.tsx:405 6649 + #: src/view/com/composer/Composer.tsx:407 6432 6650 msgid "One or more videos is missing alt text." 6433 6651 msgstr "" 6434 6652 ··· 6462 6680 #: src/components/StarterPack/ProfileStarterPacks.tsx:360 6463 6681 #: src/components/StarterPack/ProfileStarterPacks.tsx:369 6464 6682 #: src/screens/Settings/AppPasswords.tsx:58 6465 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:106 6683 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 6466 6684 #: src/view/screens/Profile.tsx:132 6467 6685 msgid "Oops!" 6468 6686 msgstr "" 6469 6687 6688 + #: src/screens/Signup/index.tsx:234 6689 + msgid "Open a Tangled Issue" 6690 + msgstr "" 6691 + 6470 6692 #: src/screens/Onboarding/StepProfile/index.tsx:294 6471 6693 msgid "Open avatar creator" 6472 6694 msgstr "" ··· 6475 6697 msgid "Open camera" 6476 6698 msgstr "" 6477 6699 6478 - #: src/screens/Messages/components/ChatListItem.tsx:373 6479 6700 #: src/screens/Messages/components/ChatListItem.tsx:377 6701 + #: src/screens/Messages/components/ChatListItem.tsx:381 6480 6702 msgid "Open conversation options" 6481 6703 msgstr "" 6482 6704 ··· 6484 6706 msgid "Open drawer menu" 6485 6707 msgstr "" 6486 6708 6487 - #: src/screens/Messages/components/MessageInput.web.tsx:181 6488 - #: src/view/com/composer/Composer.tsx:1481 6709 + #: src/screens/Messages/components/MessageInput.web.tsx:184 6710 + #: src/view/com/composer/Composer.tsx:1512 6489 6711 msgid "Open emoji picker" 6490 6712 msgstr "" 6491 6713 6492 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:191 6714 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:193 6493 6715 msgid "Open feed info screen" 6494 6716 msgstr "" 6495 6717 6496 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:292 6497 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:297 6718 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:294 6719 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:299 6498 6720 msgid "Open feed options menu" 6499 6721 msgstr "" 6500 6722 6501 - #: src/components/dms/EmojiPopup.android.tsx:27 6723 + #: src/components/dms/EmojiPopup.android.tsx:30 6502 6724 msgid "Open full emoji list" 6503 6725 msgstr "" 6504 6726 ··· 6510 6732 msgid "Open message options" 6511 6733 msgstr "" 6512 6734 6513 - #: src/screens/Settings/Settings.tsx:471 6735 + #: src/screens/Settings/Settings.tsx:479 6514 6736 msgid "Open moderation debug page" 6515 6737 msgstr "" 6516 6738 ··· 6518 6740 msgid "Open muted words and tags settings" 6519 6741 msgstr "" 6520 6742 6521 - #: src/screens/Search/components/StarterPackCard.tsx:119 6743 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 6744 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 6745 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:139 6746 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 6747 + msgid "Open original post" 6748 + msgstr "" 6749 + 6750 + #: src/screens/Search/components/StarterPackCard.tsx:120 6522 6751 msgid "Open pack" 6523 6752 msgstr "" 6524 6753 6754 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:169 6755 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:172 6756 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 6757 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 6758 + msgid "Open post in PDSls" 6759 + msgstr "" 6760 + 6525 6761 #: src/components/PostControls/PostMenu/index.tsx:66 6526 6762 msgid "Open post options menu" 6527 6763 msgstr "" 6528 6764 6529 - #: src/components/live/LiveStatusDialog.tsx:205 6530 - #: src/components/live/LiveStatusDialog.tsx:219 6765 + #: src/components/live/LiveStatusDialog.tsx:220 6766 + #: src/components/live/LiveStatusDialog.tsx:247 6531 6767 msgid "Open profile" 6532 6768 msgstr "" 6533 6769 ··· 6535 6771 msgid "Open share menu" 6536 6772 msgstr "" 6537 6773 6538 - #: src/screens/StarterPack/StarterPackScreen.tsx:568 6774 + #: src/screens/StarterPack/StarterPackScreen.tsx:571 6539 6775 msgid "Open starter pack menu" 6540 6776 msgstr "" 6541 6777 6542 - #: src/screens/Settings/Settings.tsx:464 6543 - #: src/screens/Settings/Settings.tsx:478 6778 + #: src/screens/Settings/Settings.tsx:472 6779 + #: src/screens/Settings/Settings.tsx:486 6544 6780 msgid "Open storybook page" 6545 6781 msgstr "" 6546 6782 6547 - #: src/screens/Settings/Settings.tsx:457 6783 + #: src/screens/Settings/Settings.tsx:465 6548 6784 msgid "Open system log" 6549 6785 msgstr "" 6550 6786 ··· 6564 6800 msgid "Opens additional details for a debug entry" 6565 6801 msgstr "" 6566 6802 6567 - #: src/view/com/composer/videos/SubtitleDialog.tsx:44 6803 + #: src/view/com/composer/videos/SubtitleDialog.tsx:45 6568 6804 msgid "Opens alt text dialog" 6569 6805 msgstr "" 6570 6806 6571 - #: src/view/com/composer/photos/OpenCameraBtn.tsx:71 6807 + #: src/view/com/composer/photos/OpenCameraBtn.tsx:74 6572 6808 msgid "Opens camera on device" 6573 6809 msgstr "" 6574 6810 6575 - #: src/view/com/composer/videos/SubtitleDialog.tsx:43 6811 + #: src/view/com/composer/videos/SubtitleDialog.tsx:44 6576 6812 msgid "Opens captions and alt text dialog" 6577 6813 msgstr "" 6578 6814 ··· 6580 6816 msgid "Opens change handle dialog" 6581 6817 msgstr "" 6582 6818 6583 - #: src/screens/PostThread/components/ThreadComposePrompt.tsx:63 6819 + #: src/screens/Settings/Settings.tsx:263 6820 + msgid "Opens code repository in browser" 6821 + msgstr "" 6822 + 6823 + #: src/screens/PostThread/components/ThreadComposePrompt.tsx:65 6584 6824 msgid "Opens composer" 6585 6825 msgstr "" 6586 6826 ··· 6589 6829 msgstr "" 6590 6830 6591 6831 #. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. 6592 - #: src/view/com/composer/SelectMediaButton.tsx:487 6832 + #: src/view/com/composer/SelectMediaButton.tsx:490 6593 6833 msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." 6594 6834 msgstr "" 6595 6835 6596 - #: src/view/com/composer/Composer.tsx:1482 6836 + #: src/view/com/composer/Composer.tsx:1513 6597 6837 msgid "Opens emoji picker" 6598 6838 msgstr "" 6599 6839 6600 - #: src/view/com/auth/SplashScreen.tsx:66 6840 + #: src/view/com/auth/SplashScreen.tsx:70 6601 6841 #: src/view/com/auth/SplashScreen.web.tsx:115 6602 6842 msgid "Opens flow to create a new Bluesky account" 6603 6843 msgstr "" 6604 6844 6605 - #: src/view/com/auth/SplashScreen.tsx:83 6845 + #: src/screens/Signup/StepInfo/index.tsx:224 6846 + msgid "Opens flow to sign in to your existing ATmosphere account" 6847 + msgstr "" 6848 + 6849 + #: src/view/com/auth/SplashScreen.tsx:87 6606 6850 #: src/view/com/auth/SplashScreen.web.tsx:129 6607 6851 msgid "Opens flow to sign in to your existing Bluesky account" 6608 6852 msgstr "" 6609 6853 6610 - #: src/view/com/composer/photos/SelectGifBtn.tsx:36 6854 + #: src/view/com/composer/photos/SelectGifBtn.tsx:39 6611 6855 msgid "Opens GIF select dialog" 6612 6856 msgstr "" 6613 6857 6614 - #: src/screens/Settings/Settings.tsx:255 6615 - msgid "Opens helpdesk in browser" 6616 - msgstr "" 6617 - 6618 6858 #: src/view/com/feeds/ComposerPrompt.tsx:221 6619 6859 msgid "Opens image picker" 6620 6860 msgstr "" ··· 6623 6863 msgid "Opens link {0}" 6624 6864 msgstr "" 6625 6865 6626 - #: src/view/com/util/UserAvatar.tsx:581 6866 + #: src/view/com/util/UserAvatar.tsx:617 6627 6867 msgid "Opens live status dialog" 6628 6868 msgstr "" 6629 6869 6630 - #: src/screens/Login/LoginForm.tsx:259 6870 + #: src/screens/Login/LoginForm.tsx:284 6631 6871 msgid "Opens password reset form" 6632 6872 msgstr "" 6633 6873 ··· 6639 6879 msgid "Opens the post composer" 6640 6880 msgstr "" 6641 6881 6642 - #: src/view/com/notifications/NotificationFeedItem.tsx:1027 6643 - #: src/view/com/util/UserAvatar.tsx:599 6882 + #: src/view/com/notifications/NotificationFeedItem.tsx:1032 6883 + #: src/view/com/util/UserAvatar.tsx:635 6644 6884 msgid "Opens this profile" 6645 6885 msgstr "" 6646 6886 6647 - #: src/components/dialogs/MutedWords.tsx:304 6887 + #: src/components/dialogs/MutedWords.tsx:305 6648 6888 msgid "Options:" 6649 6889 msgstr "" 6650 6890 ··· 6678 6918 msgid "Other" 6679 6919 msgstr "" 6680 6920 6681 - #: src/components/AccountList.tsx:93 6921 + #: src/components/AccountList.tsx:95 6682 6922 msgid "Other account" 6683 6923 msgstr "" 6684 6924 ··· 6733 6973 msgid "Page Not Found" 6734 6974 msgstr "" 6735 6975 6736 - #: src/screens/Login/LoginForm.tsx:229 6976 + #: src/screens/Login/LoginForm.tsx:254 6737 6977 #: src/screens/Settings/AccountSettings.tsx:121 6738 6978 #: src/screens/Settings/AccountSettings.tsx:125 6739 - #: src/screens/Signup/StepInfo/index.tsx:260 6740 - #: src/view/com/modals/DeleteAccount.tsx:239 6741 - #: src/view/com/modals/DeleteAccount.tsx:246 6979 + #: src/screens/Signup/StepInfo/index.tsx:332 6980 + #: src/view/com/modals/DeleteAccount.tsx:242 6981 + #: src/view/com/modals/DeleteAccount.tsx:252 6742 6982 msgid "Password" 6743 6983 msgstr "" 6744 6984 ··· 6750 6990 msgid "Password must be at least 8 characters long." 6751 6991 msgstr "" 6752 6992 6753 - #: src/screens/Login/index.tsx:195 6993 + #: src/screens/Login/index.tsx:243 6754 6994 msgid "Password updated" 6755 6995 msgstr "" 6756 6996 ··· 6759 6999 msgstr "" 6760 7000 6761 7001 #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44 6762 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 7002 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 6763 7003 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368 6764 7004 msgid "Pause" 6765 7005 msgstr "" ··· 6770 7010 6771 7011 #: src/screens/ProfileList/index.tsx:166 6772 7012 #: src/screens/Search/SearchResults.tsx:72 6773 - #: src/screens/StarterPack/StarterPackScreen.tsx:189 7013 + #: src/screens/StarterPack/StarterPackScreen.tsx:190 6774 7014 msgid "People" 6775 7015 msgstr "" 6776 7016 6777 - #: src/Navigation.tsx:240 7017 + #: src/Navigation.tsx:261 7018 + #: src/screens/Profile/ProfileFollows.tsx:30 6778 7019 msgid "People followed by @{0}" 6779 7020 msgstr "" 6780 7021 6781 - #: src/Navigation.tsx:233 7022 + #: src/Navigation.tsx:254 7023 + #: src/screens/Profile/ProfileFollowers.tsx:29 6782 7024 msgid "People following @{0}" 6783 7025 msgstr "" 6784 7026 ··· 6828 7070 msgid "Pictures meant for adults." 6829 7071 msgstr "" 6830 7072 6831 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:520 6832 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:527 7073 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:524 7074 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:531 6833 7075 #: src/screens/SavedFeeds.tsx:351 6834 7076 msgid "Pin feed" 6835 7077 msgstr "" ··· 6838 7080 msgid "Pin Feed" 6839 7081 msgstr "" 6840 7082 6841 - #: src/screens/ProfileList/components/Header.tsx:156 6842 - #: src/screens/ProfileList/components/Header.tsx:163 7083 + #: src/screens/ProfileList/components/Header.tsx:159 7084 + #: src/screens/ProfileList/components/Header.tsx:166 6843 7085 msgid "Pin to home" 6844 7086 msgstr "" 6845 7087 6846 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:338 7088 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:340 6847 7089 msgid "Pin to Home" 6848 7090 msgstr "" 6849 7091 6850 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:478 6851 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:485 7092 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:718 7093 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:725 6852 7094 msgid "Pin to your profile" 6853 7095 msgstr "" 6854 7096 ··· 6856 7098 msgid "Pinned" 6857 7099 msgstr "" 6858 7100 6859 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:160 6860 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:174 7101 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:162 7102 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:176 6861 7103 msgid "Pinned {0} to Home" 6862 7104 msgstr "" 6863 7105 ··· 6865 7107 msgid "Pinned Feeds" 6866 7108 msgstr "" 6867 7109 6868 - #: src/screens/ProfileList/components/Header.tsx:74 7110 + #: src/screens/ProfileList/components/Header.tsx:77 6869 7111 msgid "Pinned to your feeds" 6870 7112 msgstr "" 6871 7113 6872 7114 #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44 6873 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:137 7115 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 6874 7116 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 6875 7117 msgid "Play" 6876 7118 msgstr "" ··· 6879 7121 msgid "Play {0}" 6880 7122 msgstr "" 6881 7123 6882 - #: src/components/Post/Embed/VideoEmbed/index.tsx:115 7124 + #: src/components/Post/Embed/VideoEmbed/index.tsx:118 6883 7125 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 6884 7126 msgid "Play video" 6885 7127 msgstr "" ··· 6892 7134 msgid "Plays or pauses the GIF" 6893 7135 msgstr "" 6894 7136 6895 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 7137 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:139 6896 7138 msgid "Plays or pauses the video" 6897 7139 msgstr "" 6898 7140 ··· 6910 7152 6911 7153 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 6912 7154 msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." 7155 + msgstr "" 7156 + 7157 + #: src/screens/Signup/StepInfo/index.tsx:124 7158 + msgid "Please choose a 3rd party service host, or sign up on bsky.app." 6913 7159 msgstr "" 6914 7160 6915 7161 #: src/screens/Signup/state.ts:289 ··· 6917 7163 msgstr "" 6918 7164 6919 7165 #: src/screens/Signup/state.ts:281 6920 - #: src/screens/Signup/StepInfo/index.tsx:151 7166 + #: src/screens/Signup/StepInfo/index.tsx:168 6921 7167 msgid "Please choose your password." 6922 7168 msgstr "" 6923 7169 ··· 6930 7176 msgstr "" 6931 7177 6932 7178 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 6933 - #: src/screens/Signup/StepInfo/index.tsx:140 7179 + #: src/screens/Signup/StepInfo/index.tsx:157 6934 7180 msgid "Please double-check that you have entered your email address correctly." 6935 7181 msgstr "" 6936 7182 ··· 6957 7203 msgid "Please enter a valid email address." 6958 7204 msgstr "" 6959 7205 6960 - #: src/components/dialogs/MutedWords.tsx:86 7206 + #: src/components/dialogs/MutedWords.tsx:87 6961 7207 msgid "Please enter a valid word, tag, or phrase to mute" 6962 7208 msgstr "" 6963 7209 ··· 6965 7211 msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." 6966 7212 msgstr "" 6967 7213 7214 + #: src/screens/Login/LoginForm.tsx:108 7215 + msgid "Please enter hosting provider URL" 7216 + msgstr "" 7217 + 6968 7218 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 6969 7219 msgid "Please enter the code we sent to <0>{0}</0> below." 6970 7220 msgstr "" ··· 6978 7228 msgstr "" 6979 7229 6980 7230 #: src/screens/Signup/state.ts:265 6981 - #: src/screens/Signup/StepInfo/index.tsx:122 7231 + #: src/screens/Signup/StepInfo/index.tsx:139 6982 7232 msgid "Please enter your email." 6983 7233 msgstr "" 6984 7234 6985 - #: src/screens/Signup/StepInfo/index.tsx:115 7235 + #: src/screens/Signup/StepInfo/index.tsx:132 6986 7236 msgid "Please enter your invite code." 6987 7237 msgstr "" 6988 7238 ··· 6990 7240 msgid "Please enter your new email address." 6991 7241 msgstr "" 6992 7242 6993 - #: src/screens/Login/LoginForm.tsx:99 7243 + #: src/screens/Login/LoginForm.tsx:103 6994 7244 msgid "Please enter your password" 6995 7245 msgstr "" 6996 7246 6997 - #: src/view/com/modals/DeleteAccount.tsx:235 7247 + #: src/view/com/modals/DeleteAccount.tsx:238 6998 7248 msgid "Please enter your password as well:" 6999 7249 msgstr "" 7000 7250 7001 - #: src/screens/Login/LoginForm.tsx:94 7251 + #: src/screens/Login/LoginForm.tsx:98 7002 7252 msgid "Please enter your username" 7003 7253 msgstr "" 7004 7254 ··· 7035 7285 msgid "Please select a reason for this report" 7036 7286 msgstr "" 7037 7287 7038 - #: src/lib/hooks/useAccountSwitcher.ts:45 7039 - #: src/lib/hooks/useAccountSwitcher.ts:55 7288 + #: src/lib/hooks/useAccountSwitcher.ts:39 7289 + #: src/lib/hooks/useAccountSwitcher.ts:49 7040 7290 msgid "Please sign in as @{0}" 7041 7291 msgstr "" 7042 7292 ··· 7048 7298 msgid "Please use the native app to sync your contacts." 7049 7299 msgstr "" 7050 7300 7051 - #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 7301 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:67 7052 7302 msgid "Please verify your email" 7053 7303 msgstr "" 7054 7304 ··· 7057 7307 msgstr "" 7058 7308 7059 7309 #: src/lib/interests.ts:70 7060 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:232 7310 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:236 7061 7311 msgid "Politics" 7062 7312 msgstr "" 7063 7313 ··· 7070 7320 msgid "Post" 7071 7321 msgstr "" 7072 7322 7073 - #: src/view/com/composer/Composer.tsx:1121 7323 + #: src/view/com/composer/Composer.tsx:1138 7074 7324 msgctxt "action" 7075 7325 msgid "Post" 7076 7326 msgstr "" ··· 7085 7335 msgid "Post a video" 7086 7336 msgstr "" 7087 7337 7088 - #: src/view/com/composer/Composer.tsx:1119 7338 + #: src/view/com/composer/Composer.tsx:1136 7089 7339 msgctxt "action" 7090 7340 msgid "Post All" 7091 7341 msgstr "" ··· 7094 7344 msgid "Post blocked" 7095 7345 msgstr "" 7096 7346 7097 - #: src/Navigation.tsx:266 7098 - #: src/Navigation.tsx:273 7099 - #: src/Navigation.tsx:280 7100 7347 #: src/Navigation.tsx:287 7348 + #: src/Navigation.tsx:294 7349 + #: src/Navigation.tsx:301 7350 + #: src/Navigation.tsx:308 7351 + #: src/screens/Post/PostLikedBy.tsx:30 7352 + #: src/screens/Post/PostQuotes.tsx:30 7353 + #: src/screens/Post/PostRepostedBy.tsx:30 7354 + #: src/view/screens/PostThread.tsx:29 7101 7355 msgid "Post by @{0}" 7102 7356 msgstr "" 7103 7357 7104 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:186 7358 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:207 7105 7359 msgctxt "toast" 7106 7360 msgid "Post deleted" 7107 7361 msgstr "" 7108 7362 7109 - #: src/lib/api/index.ts:186 7363 + #: src/lib/api/index.ts:190 7110 7364 msgid "Post failed to upload. Please check your Internet connection and try again." 7111 7365 msgstr "" 7112 7366 7113 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:134 7367 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:139 7114 7368 #: src/screens/PostThread/components/ThreadItemPost.tsx:112 7115 7369 #: src/screens/PostThread/components/ThreadItemTreePost.tsx:108 7116 - #: src/screens/VideoFeed/index.tsx:557 7370 + #: src/screens/VideoFeed/index.tsx:558 7117 7371 msgid "Post has been deleted" 7118 7372 msgstr "" 7119 7373 ··· 7131 7385 msgid "Post interaction settings" 7132 7386 msgstr "" 7133 7387 7134 - #: src/Navigation.tsx:200 7388 + #: src/Navigation.tsx:221 7135 7389 #: src/screens/ModerationInteractionSettings/index.tsx:34 7136 7390 msgid "Post Interaction Settings" 7137 7391 msgstr "" ··· 7164 7418 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 7165 7419 #: src/screens/ProfileList/index.tsx:166 7166 7420 #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 7167 - #: src/screens/StarterPack/StarterPackScreen.tsx:191 7421 + #: src/screens/StarterPack/StarterPackScreen.tsx:192 7168 7422 #: src/view/screens/Profile.tsx:234 7169 7423 msgid "Posts" 7170 7424 msgstr "" 7171 7425 7172 - #: src/components/dialogs/MutedWords.tsx:120 7426 + #: src/components/dialogs/MutedWords.tsx:121 7173 7427 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." 7174 7428 msgstr "" 7175 7429 ··· 7229 7483 msgid "Privacy" 7230 7484 msgstr "" 7231 7485 7232 - #: src/screens/Settings/Settings.tsx:188 7233 - #: src/screens/Settings/Settings.tsx:191 7486 + #: src/screens/Settings/Settings.tsx:190 7487 + #: src/screens/Settings/Settings.tsx:193 7234 7488 msgid "Privacy and security" 7235 7489 msgstr "" 7236 7490 7237 - #: src/Navigation.tsx:409 7238 - #: src/Navigation.tsx:417 7491 + #: src/Navigation.tsx:438 7492 + #: src/Navigation.tsx:446 7239 7493 #: src/screens/Settings/ActivityPrivacySettings.tsx:40 7240 7494 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:44 7241 7495 msgid "Privacy and Security" ··· 7248 7502 7249 7503 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 7250 7504 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 7251 - #: src/Navigation.tsx:333 7252 - #: src/screens/Settings/AboutSettings.tsx:92 7253 - #: src/screens/Settings/AboutSettings.tsx:95 7505 + #: src/Navigation.tsx:354 7506 + #: src/screens/Settings/AboutSettings.tsx:90 7507 + #: src/screens/Settings/AboutSettings.tsx:93 7254 7508 #: src/view/screens/PrivacyPolicy.tsx:34 7255 - #: src/view/shell/Drawer.tsx:704 7256 - #: src/view/shell/Drawer.tsx:705 7509 + #: src/view/shell/Drawer.tsx:723 7510 + #: src/view/shell/Drawer.tsx:724 7257 7511 msgid "Privacy Policy" 7258 7512 msgstr "" 7259 7513 ··· 7261 7515 msgid "Privacy violation of a minor" 7262 7516 msgstr "" 7263 7517 7264 - #: src/view/com/composer/Composer.tsx:1897 7518 + #: src/view/com/composer/Composer.tsx:1930 7265 7519 msgid "Processing video..." 7266 7520 msgstr "" 7267 7521 7268 - #: src/lib/api/index.ts:60 7522 + #: src/lib/api/index.ts:64 7269 7523 #: src/screens/Login/ForgotPasswordForm.tsx:149 7270 7524 msgid "Processing..." 7271 7525 msgstr "" 7272 7526 7273 - #: src/view/screens/DebugMod.tsx:936 7527 + #: src/view/screens/DebugMod.tsx:940 7274 7528 #: src/view/screens/Profile.tsx:384 7275 7529 msgid "profile" 7276 7530 msgstr "" 7277 7531 7278 - #: src/view/shell/bottom-bar/BottomBar.tsx:316 7279 - #: src/view/shell/desktop/LeftNav.tsx:787 7280 - #: src/view/shell/Drawer.tsx:77 7281 - #: src/view/shell/Drawer.tsx:596 7532 + #: src/view/shell/bottom-bar/BottomBar.tsx:322 7533 + #: src/view/shell/desktop/LeftNav.tsx:797 7534 + #: src/view/shell/Drawer.tsx:84 7535 + #: src/view/shell/Drawer.tsx:614 7282 7536 msgid "Profile" 7283 7537 msgstr "" 7284 7538 7285 - #: src/screens/Profile/Header/EditProfileDialog.tsx:189 7539 + #: src/screens/Profile/Header/EditProfileDialog.tsx:194 7286 7540 msgctxt "toast" 7287 7541 msgid "Profile updated" 7288 7542 msgstr "" ··· 7295 7549 msgid "Psst! You can edit who can interact with this post." 7296 7550 msgstr "" 7297 7551 7298 - #: src/view/com/lists/MyLists.tsx:77 7552 + #: src/view/com/lists/MyLists.tsx:79 7299 7553 msgid "Public, sharable lists of users to mute or block in bulk." 7300 7554 msgstr "" 7301 7555 7302 7556 #. Accessibility label for button to publish a single post 7303 - #: src/view/com/composer/Composer.tsx:1101 7557 + #: src/view/com/composer/Composer.tsx:1115 7304 7558 msgid "Publish post" 7305 7559 msgstr "" 7306 7560 7307 7561 #. Accessibility label for button to publish multiple posts in a thread 7308 - #: src/view/com/composer/Composer.tsx:1094 7562 + #: src/view/com/composer/Composer.tsx:1108 7309 7563 msgid "Publish posts" 7310 7564 msgstr "" 7311 7565 7312 7566 #. Accessibility label for button to publish multiple replies in a thread 7313 - #: src/view/com/composer/Composer.tsx:1079 7567 + #: src/view/com/composer/Composer.tsx:1093 7314 7568 msgid "Publish replies" 7315 7569 msgstr "" 7316 7570 7317 7571 #. Accessibility label for button to publish a single reply 7318 - #: src/view/com/composer/Composer.tsx:1086 7572 + #: src/view/com/composer/Composer.tsx:1100 7319 7573 msgid "Publish reply" 7320 7574 msgstr "" 7321 7575 ··· 7347 7601 msgid "QR code saved to your camera roll!" 7348 7602 msgstr "" 7349 7603 7350 - #: src/Navigation.tsx:454 7604 + #: src/Navigation.tsx:483 7351 7605 msgid "Quote notifications" 7352 7606 msgstr "" 7353 7607 ··· 7358 7612 msgid "Quote post" 7359 7613 msgstr "" 7360 7614 7361 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:340 7615 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 7362 7616 msgid "Quote post was re-attached" 7363 7617 msgstr "" 7364 7618 7365 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:339 7619 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 7366 7620 msgid "Quote post was successfully detached" 7367 7621 msgstr "" 7368 7622 ··· 7374 7628 msgstr "" 7375 7629 7376 7630 #: src/lib/hooks/useNotificationHandler.ts:154 7377 - #: src/screens/Post/PostQuotes.tsx:41 7631 + #: src/screens/Post/PostQuotes.tsx:51 7378 7632 #: src/screens/Settings/NotificationSettings/index.tsx:170 7379 7633 #: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 7380 7634 msgid "Quotes" 7381 7635 msgstr "" 7382 7636 7383 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 7637 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:480 7384 7638 msgid "Quotes of this post" 7385 7639 msgstr "" 7386 7640 7387 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:616 7641 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:618 7388 7642 msgid "Rate limit exceeded โ€“ you've tried to change your handle too many times in a short period. Please wait a minute before trying again." 7389 7643 msgstr "" 7390 7644 ··· 7392 7646 msgid "Rate limit exceeded. Please try again later." 7393 7647 msgstr "" 7394 7648 7395 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:646 7396 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:656 7649 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:923 7650 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:933 7397 7651 msgid "Re-attach quote" 7398 7652 msgstr "" 7399 7653 7400 - #: src/components/dms/EmojiReactionPicker.tsx:85 7654 + #: src/components/dms/EmojiReactionPicker.tsx:88 7401 7655 msgid "React with {emoji}" 7402 7656 msgstr "" 7403 7657 ··· 7409 7663 msgid "Read {0, plural, one {# more reply} other {# more replies}}" 7410 7664 msgstr "" 7411 7665 7412 - #: src/screens/Search/SearchResults.tsx:180 7666 + #: src/screens/Search/SearchResults.tsx:182 7413 7667 msgctxt "english-only-resource" 7414 7668 msgid "read about how to use search filters" 7415 7669 msgstr "" 7416 7670 7417 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:158 7418 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 7671 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:161 7672 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 7419 7673 msgid "Read blog post" 7420 7674 msgstr "" 7421 7675 7422 - #: src/screens/VideoFeed/index.tsx:996 7676 + #: src/screens/VideoFeed/index.tsx:997 7423 7677 msgid "Read less" 7424 7678 msgstr "" 7425 7679 7426 - #: src/screens/VideoFeed/index.tsx:996 7680 + #: src/screens/VideoFeed/index.tsx:997 7427 7681 msgid "Read more" 7428 7682 msgstr "" 7429 7683 ··· 7433 7687 7434 7688 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 7435 7689 msgid "Read our blog post" 7436 - msgstr "" 7437 - 7438 - #: src/view/com/auth/SplashScreen.web.tsx:177 7439 - msgid "Read the Bluesky blog" 7440 7690 msgstr "" 7441 7691 7442 7692 #: src/screens/Signup/StepInfo/Policies.tsx:52 ··· 7449 7699 msgid "Read the Bluesky Terms of Service" 7450 7700 msgstr "" 7451 7701 7702 + #: src/view/com/auth/SplashScreen.web.tsx:172 7703 + msgid "Read the patches and contribute" 7704 + msgstr "" 7705 + 7452 7706 #: src/components/WelcomeModal.tsx:146 7453 - msgid "Real conversations." 7707 + msgid "Real creatures." 7454 7708 msgstr "" 7455 7709 7456 7710 #: src/components/WelcomeModal.tsx:144 7457 - msgid "Real people." 7711 + msgid "Real talk." 7458 7712 msgstr "" 7459 7713 7460 7714 #: src/screens/Takendown.tsx:160 ··· 7470 7724 msgid "Receive push notifications" 7471 7725 msgstr "" 7472 7726 7473 - #: src/screens/Search/components/SearchHistory.tsx:49 7727 + #: src/screens/Search/components/SearchHistory.tsx:52 7474 7728 msgid "Recent Searches" 7475 7729 msgstr "" 7476 7730 7477 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:232 7731 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:235 7478 7732 msgid "Recently used" 7479 7733 msgstr "" 7480 7734 ··· 7486 7740 msgid "Reconnect" 7487 7741 msgstr "" 7488 7742 7743 + #: src/screens/Settings/AppearanceSettings.tsx:115 7744 + msgid "Red Dwarf" 7745 + msgstr "" 7746 + 7747 + #: src/screens/Settings/DeerSettings.tsx:388 7748 + #: src/screens/Settings/DeerSettings.tsx:393 7749 + msgid "Redirect through go.bsky.app" 7750 + msgstr "" 7751 + 7752 + #: src/screens/Settings/DeerSettings.tsx:384 7753 + msgid "Redirects" 7754 + msgstr "" 7755 + 7756 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:706 7757 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:734 7758 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 7759 + msgid "Redraft" 7760 + msgstr "" 7761 + 7762 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 7763 + msgid "Redraft this post?" 7764 + msgstr "" 7765 + 7489 7766 #. Reject a chat request, this opens a menu with options 7490 7767 #: src/screens/Messages/components/RequestButtons.tsx:124 7491 7768 msgid "Reject" ··· 7495 7772 msgid "Reject chat request" 7496 7773 msgstr "" 7497 7774 7498 - #: src/screens/Messages/ChatList.tsx:286 7775 + #: src/screens/Messages/ChatList.tsx:287 7499 7776 #: src/screens/Messages/Inbox.tsx:213 7500 7777 msgid "Reload conversations" 7501 7778 msgstr "" 7502 7779 7503 7780 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 7504 - #: src/components/dialogs/MutedWords.tsx:443 7505 - #: src/components/dialogs/StarterPackDialog.tsx:374 7506 - #: src/components/dialogs/StarterPackDialog.tsx:380 7781 + #: src/components/dialogs/MutedWords.tsx:446 7782 + #: src/components/dialogs/StarterPackDialog.tsx:377 7783 + #: src/components/dialogs/StarterPackDialog.tsx:383 7507 7784 #: src/components/FeedCard.tsx:375 7508 7785 #: src/components/StarterPack/Wizard/WizardListCard.tsx:105 7509 7786 #: src/components/StarterPack/Wizard/WizardListCard.tsx:112 7510 7787 #: src/screens/Bookmarks/index.tsx:266 7511 - #: src/screens/Settings/Settings.tsx:684 7512 - #: src/view/com/modals/UserAddRemoveLists.tsx:235 7788 + #: src/screens/Settings/Settings.tsx:694 7789 + #: src/view/com/modals/UserAddRemoveLists.tsx:237 7513 7790 #: src/view/com/posts/PostFeedErrorMessage.tsx:220 7514 7791 msgid "Remove" 7515 7792 msgstr "" ··· 7518 7795 msgid "Remove {displayName} from starter pack" 7519 7796 msgstr "" 7520 7797 7521 - #: src/screens/Search/components/SearchHistory.tsx:94 7798 + #: src/screens/Search/components/SearchHistory.tsx:97 7522 7799 msgid "Remove {historyItem}" 7523 7800 msgstr "" 7524 7801 7525 - #: src/screens/Settings/Settings.tsx:663 7526 - #: src/screens/Settings/Settings.tsx:666 7802 + #: src/screens/Settings/Settings.tsx:673 7803 + #: src/screens/Settings/Settings.tsx:676 7527 7804 msgid "Remove account" 7528 7805 msgstr "" 7529 7806 ··· 7532 7809 msgid "Remove all contacts" 7533 7810 msgstr "" 7534 7811 7535 - #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 7812 + #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:22 7536 7813 msgid "Remove attachment" 7537 7814 msgstr "" 7538 7815 7539 - #: src/view/com/util/UserAvatar.tsx:498 7540 - #: src/view/com/util/UserAvatar.tsx:501 7816 + #: src/view/com/util/UserAvatar.tsx:534 7817 + #: src/view/com/util/UserAvatar.tsx:537 7541 7818 msgid "Remove Avatar" 7542 7819 msgstr "" 7543 7820 7544 - #: src/view/com/util/UserBanner.tsx:188 7545 - #: src/view/com/util/UserBanner.tsx:191 7821 + #: src/view/com/util/UserBanner.tsx:198 7822 + #: src/view/com/util/UserBanner.tsx:201 7546 7823 msgid "Remove Banner" 7547 7824 msgstr "" 7548 7825 7549 - #: src/screens/Messages/components/MessageInputEmbed.tsx:212 7826 + #: src/screens/Messages/components/MessageInputEmbed.tsx:215 7550 7827 msgid "Remove embed" 7551 7828 msgstr "" 7552 7829 ··· 7560 7837 msgid "Remove feed?" 7561 7838 msgstr "" 7562 7839 7563 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:320 7564 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:326 7565 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:181 7840 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:322 7841 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:328 7566 7842 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:184 7843 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:187 7567 7844 #: src/screens/SavedFeeds.tsx:340 7568 7845 msgid "Remove from my feeds" 7569 7846 msgstr "" 7570 7847 7571 - #: src/screens/Settings/Settings.tsx:676 7848 + #: src/screens/Settings/Settings.tsx:686 7572 7849 msgid "Remove from quick access?" 7573 7850 msgstr "" 7574 7851 ··· 7586 7863 msgid "Remove from your feeds?" 7587 7864 msgstr "" 7588 7865 7589 - #: src/view/com/composer/photos/Gallery.tsx:204 7866 + #: src/view/com/composer/photos/Gallery.tsx:211 7590 7867 msgid "Remove image" 7591 7868 msgstr "" 7592 7869 ··· 7595 7872 msgid "Remove live status" 7596 7873 msgstr "" 7597 7874 7598 - #: src/components/dialogs/MutedWords.tsx:530 7875 + #: src/components/dialogs/MutedWords.tsx:533 7599 7876 msgid "Remove mute word from your list" 7600 7877 msgstr "" 7601 7878 7602 - #: src/screens/Search/components/SearchHistory.tsx:167 7879 + #: src/screens/Search/components/SearchHistory.tsx:172 7603 7880 msgid "Remove profile" 7604 7881 msgstr "" 7605 7882 ··· 7608 7885 msgid "Remove repost" 7609 7886 msgstr "" 7610 7887 7611 - #: src/view/com/composer/videos/SubtitleDialog.tsx:282 7888 + #: src/view/com/composer/videos/SubtitleDialog.tsx:285 7612 7889 msgid "Remove subtitle file" 7613 7890 msgstr "" 7614 7891 ··· 7621 7898 msgid "Remove this feed from your saved feeds" 7622 7899 msgstr "" 7623 7900 7901 + #: src/view/com/profile/ProfileMenu.tsx:408 7902 + #: src/view/com/profile/ProfileMenu.tsx:413 7903 + msgid "Remove trust" 7904 + msgstr "" 7905 + 7624 7906 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 7625 7907 msgid "Remove user from list" 7626 7908 msgstr "" 7627 7909 7628 7910 #: src/components/verification/VerificationRemovePrompt.tsx:46 7629 - #: src/components/verification/VerificationsDialog.tsx:252 7630 - #: src/view/com/profile/ProfileMenu.tsx:408 7631 - #: src/view/com/profile/ProfileMenu.tsx:411 7911 + #: src/components/verification/VerificationsDialog.tsx:255 7912 + #: src/view/com/profile/ProfileMenu.tsx:487 7913 + #: src/view/com/profile/ProfileMenu.tsx:490 7632 7914 msgid "Remove verification" 7633 7915 msgstr "" 7634 7916 ··· 7636 7918 msgid "Remove your verification for this account?" 7637 7919 msgstr "" 7638 7920 7639 - #: src/components/Post/Embed/index.tsx:214 7921 + #: src/components/Post/Embed/index.tsx:225 7922 + #: src/components/Post/Embed/index.tsx:299 7640 7923 msgid "Removed by author" 7641 7924 msgstr "" 7642 7925 7643 - #: src/components/Post/Embed/index.tsx:212 7926 + #: src/components/Post/Embed/index.tsx:297 7644 7927 msgid "Removed by you" 7645 7928 msgstr "" 7646 7929 7647 7930 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117 7648 - #: src/view/com/modals/UserAddRemoveLists.tsx:170 7931 + #: src/view/com/modals/UserAddRemoveLists.tsx:172 7649 7932 msgid "Removed from list" 7650 7933 msgstr "" 7651 7934 ··· 7658 7941 msgid "Removed from saved posts" 7659 7942 msgstr "" 7660 7943 7661 - #: src/components/dialogs/StarterPackDialog.tsx:277 7944 + #: src/components/dialogs/StarterPackDialog.tsx:280 7662 7945 msgid "Removed from starter pack" 7663 7946 msgstr "" 7664 7947 7665 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:122 7666 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:74 7948 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:124 7949 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 7667 7950 #: src/view/com/posts/FeedShutdownMsg.tsx:44 7668 7951 msgid "Removed from your feeds" 7669 7952 msgstr "" ··· 7715 7998 msgid "Replies to this post are disabled." 7716 7999 msgstr "" 7717 8000 7718 - #: src/view/com/composer/Composer.tsx:1117 8001 + #: src/view/com/composer/Composer.tsx:1134 7719 8002 msgctxt "action" 7720 8003 msgid "Reply" 7721 8004 msgstr "" 7722 8005 7723 8006 #. Accessibility label for the reply button, verb form followed by number of replies and noun form 7724 - #: src/components/PostControls/index.tsx:240 8007 + #: src/components/PostControls/index.tsx:248 7725 8008 msgid "Reply ({0, plural, one {# reply} other {# replies}})" 7726 8009 msgstr "" 7727 8010 ··· 7735 8018 msgid "Reply Hidden by You" 7736 8019 msgstr "" 7737 8020 7738 - #: src/Navigation.tsx:438 8021 + #: src/Navigation.tsx:467 7739 8022 msgid "Reply notifications" 7740 8023 msgstr "" 7741 8024 ··· 7743 8026 msgid "Reply settings are chosen by the author of the thread" 7744 8027 msgstr "" 7745 8028 7746 - #: src/screens/PostThread/components/HeaderDropdown.tsx:69 8029 + #: src/screens/PostThread/components/HeaderDropdown.tsx:73 7747 8030 msgid "Reply sorting" 7748 8031 msgstr "" 7749 8032 7750 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:377 8033 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 7751 8034 msgctxt "toast" 7752 8035 msgid "Reply visibility updated" 7753 8036 msgstr "" 7754 8037 7755 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:376 8038 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 7756 8039 msgid "Reply was successfully hidden" 7757 8040 msgstr "" 7758 8041 7759 8042 #: src/components/dms/MessageContextMenu.tsx:168 7760 8043 #: src/components/dms/MessagesListBlockedFooter.tsx:85 7761 8044 #: src/components/dms/MessagesListBlockedFooter.tsx:92 7762 - #: src/components/live/LiveStatusDialog.tsx:257 8045 + #: src/components/live/LiveStatusDialog.tsx:286 7763 8046 msgid "Report" 7764 8047 msgstr "" 7765 8048 7766 - #: src/view/com/profile/ProfileMenu.tsx:475 7767 - #: src/view/com/profile/ProfileMenu.tsx:478 8049 + #: src/view/com/profile/ProfileMenu.tsx:554 8050 + #: src/view/com/profile/ProfileMenu.tsx:557 7768 8051 msgid "Report account" 7769 8052 msgstr "" 7770 8053 7771 - #: src/components/dms/ConvoMenu.tsx:269 7772 8054 #: src/components/dms/ConvoMenu.tsx:272 8055 + #: src/components/dms/ConvoMenu.tsx:275 7773 8056 #: src/components/dms/ReportConversationPrompt.tsx:17 7774 8057 #: src/screens/Messages/components/RequestButtons.tsx:155 7775 8058 #: src/screens/Messages/components/RequestButtons.tsx:158 7776 8059 msgid "Report conversation" 7777 8060 msgstr "" 7778 8061 7779 - #: src/components/moderation/ReportDialog/index.tsx:90 7780 - #: src/components/moderation/ReportDialog/index.tsx:253 8062 + #: src/components/moderation/ReportDialog/index.tsx:91 8063 + #: src/components/moderation/ReportDialog/index.tsx:256 7781 8064 msgid "Report dialog" 7782 8065 msgstr "" 7783 8066 7784 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:543 7785 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:549 8067 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:547 8068 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:553 7786 8069 msgid "Report feed" 7787 8070 msgstr "" 7788 8071 7789 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:215 7790 8072 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:218 8073 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:221 7791 8074 msgid "Report list" 7792 8075 msgstr "" 7793 8076 ··· 7795 8078 msgid "Report message" 7796 8079 msgstr "" 7797 8080 7798 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:712 7799 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:714 8081 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:989 8082 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:991 7800 8083 msgid "Report post" 7801 8084 msgstr "" 7802 8085 7803 - #: src/screens/StarterPack/StarterPackScreen.tsx:632 7804 8086 #: src/screens/StarterPack/StarterPackScreen.tsx:635 8087 + #: src/screens/StarterPack/StarterPackScreen.tsx:638 7805 8088 msgid "Report starter pack" 7806 8089 msgstr "" 7807 8090 ··· 7822 8105 msgid "Report this list" 7823 8106 msgstr "" 7824 8107 7825 - #: src/components/live/LiveStatusDialog.tsx:240 8108 + #: src/components/live/LiveStatusDialog.tsx:269 7826 8109 #: src/components/moderation/ReportDialog/copy.ts:19 7827 8110 msgid "Report this livestream" 7828 8111 msgstr "" ··· 7856 8139 msgid "Repost ({0, plural, one {# repost} other {# reposts}})" 7857 8140 msgstr "" 7858 8141 7859 - #: src/Navigation.tsx:470 8142 + #: src/Navigation.tsx:499 7860 8143 msgid "Repost notifications" 7861 8144 msgstr "" 7862 8145 7863 8146 #: src/components/PostControls/RepostButton.tsx:145 7864 8147 #: src/components/PostControls/RepostButton.web.tsx:44 7865 8148 #: src/components/PostControls/RepostButton.web.tsx:104 7866 - #: src/screens/StarterPack/StarterPackScreen.tsx:563 8149 + #: src/screens/StarterPack/StarterPackScreen.tsx:566 7867 8150 msgid "Repost or quote post" 7868 8151 msgstr "" 7869 8152 7870 - #: src/screens/Post/PostRepostedBy.tsx:41 8153 + #: src/screens/Post/PostRepostedBy.tsx:51 7871 8154 msgid "Reposted By" 7872 8155 msgstr "" 7873 8156 ··· 7887 8170 msgid "Reposts" 7888 8171 msgstr "" 7889 8172 7890 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 8173 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 7891 8174 msgid "Reposts of this post" 7892 8175 msgstr "" 7893 8176 ··· 7897 8180 msgid "Reposts of your reposts" 7898 8181 msgstr "" 7899 8182 7900 - #: src/Navigation.tsx:494 8183 + #: src/Navigation.tsx:523 7901 8184 msgid "Reposts of your reposts notifications" 7902 8185 msgstr "" 7903 8186 ··· 7915 8198 msgid "Require an email code to sign in to your account." 7916 8199 msgstr "" 7917 8200 7918 - #: src/screens/Signup/StepInfo/index.tsx:209 8201 + #: src/screens/Signup/StepInfo/index.tsx:281 7919 8202 msgid "Required for this provider" 7920 8203 msgstr "" 7921 8204 ··· 7949 8232 msgid "Resend Verification Email" 7950 8233 msgstr "" 7951 8234 7952 - #: src/screens/Settings/Settings.tsx:500 7953 - #: src/screens/Settings/Settings.tsx:502 8235 + #: src/screens/Settings/Settings.tsx:508 8236 + #: src/screens/Settings/Settings.tsx:510 7954 8237 msgid "Reset activity subscription nudge" 7955 8238 msgstr "" 7956 8239 ··· 7958 8241 msgid "Reset code" 7959 8242 msgstr "" 7960 8243 7961 - #: src/screens/Settings/Settings.tsx:485 7962 - #: src/screens/Settings/Settings.tsx:487 8244 + #: src/screens/Settings/DeerSettings.tsx:811 8245 + msgid "Reset gates" 8246 + msgstr "" 8247 + 8248 + #: src/screens/Settings/Settings.tsx:493 8249 + #: src/screens/Settings/Settings.tsx:495 7963 8250 msgid "Reset onboarding state" 7964 8251 msgstr "" 7965 8252 ··· 7967 8254 msgid "Reset password" 7968 8255 msgstr "" 7969 8256 8257 + #: src/screens/Settings/DeerSettings.tsx:848 8258 + msgid "Restart the app after changing this setting." 8259 + msgstr "" 8260 + 7970 8261 #: src/screens/Settings/FindContactsSettings.tsx:516 7971 8262 #: src/screens/Settings/FindContactsSettings.tsx:532 7972 8263 msgid "Resync contacts" 7973 8264 msgstr "" 7974 8265 7975 - #: src/screens/Login/LoginForm.tsx:327 8266 + #: src/screens/Login/LoginForm.tsx:352 7976 8267 msgid "Retries signing in" 7977 8268 msgstr "" 7978 8269 7979 8270 #: src/view/com/util/error/ErrorMessage.tsx:62 7980 - #: src/view/com/util/error/ErrorScreen.tsx:99 8271 + #: src/view/com/util/error/ErrorScreen.tsx:101 7981 8272 msgid "Retries the last action, which errored out" 7982 8273 msgstr "" 7983 8274 ··· 7988 8279 #: src/components/dms/MessageItem.tsx:322 7989 8280 #: src/components/Error.tsx:65 7990 8281 #: src/components/Lists.tsx:114 7991 - #: src/components/moderation/ReportDialog/index.tsx:287 8282 + #: src/components/moderation/ReportDialog/index.tsx:290 7992 8283 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 7993 8284 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58 7994 8285 #: src/components/StarterPack/ProfileStarterPacks.tsx:374 7995 - #: src/screens/Login/LoginForm.tsx:326 7996 - #: src/screens/Login/LoginForm.tsx:333 7997 - #: src/screens/Messages/ChatList.tsx:292 8286 + #: src/screens/Login/LoginForm.tsx:351 8287 + #: src/screens/Login/LoginForm.tsx:358 8288 + #: src/screens/Messages/ChatList.tsx:293 7998 8289 #: src/screens/Messages/components/MessageListError.tsx:25 7999 8290 #: src/screens/Messages/Inbox.tsx:219 8000 8291 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239 ··· 8005 8296 #: src/screens/PostThread/components/ThreadError.tsx:86 8006 8297 #: src/screens/Signup/BackNextButtons.tsx:53 8007 8298 #: src/view/com/util/error/ErrorMessage.tsx:60 8008 - #: src/view/com/util/error/ErrorScreen.tsx:97 8299 + #: src/view/com/util/error/ErrorScreen.tsx:99 8009 8300 #: src/view/screens/Storybook/Admonitions.tsx:63 8010 8301 msgid "Retry" 8011 8302 msgstr "" 8012 8303 8013 - #: src/components/moderation/ReportDialog/index.tsx:284 8304 + #: src/components/moderation/ReportDialog/index.tsx:287 8014 8305 #: src/view/screens/Storybook/Admonitions.tsx:60 8015 8306 msgid "Retry loading report options" 8016 8307 msgstr "" 8017 8308 8018 8309 #: src/components/Error.tsx:73 8019 8310 #: src/screens/List/ListHiddenScreen.tsx:219 8020 - #: src/screens/StarterPack/StarterPackScreen.tsx:769 8311 + #: src/screens/StarterPack/StarterPackScreen.tsx:772 8021 8312 msgid "Return to previous page" 8022 8313 msgstr "" 8023 8314 ··· 8027 8318 8028 8319 #: src/screens/Profile/ProfileFeed/index.tsx:94 8029 8320 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 8030 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:575 8031 - #: src/screens/VideoFeed/index.tsx:1185 8321 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 8322 + #: src/screens/VideoFeed/index.tsx:1187 8032 8323 #: src/view/screens/NotFound.tsx:60 8033 8324 msgid "Returns to previous page" 8034 8325 msgstr "" 8035 8326 8036 - #: src/screens/StarterPack/Wizard/index.tsx:324 8327 + #: src/screens/StarterPack/Wizard/index.tsx:325 8037 8328 msgid "Returns to the previous step" 8038 8329 msgstr "" 8039 8330 8040 8331 #: src/components/dialogs/BirthDateSettings.tsx:203 8041 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:292 8042 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:307 8332 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:295 8333 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:310 8043 8334 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:662 8044 8335 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:667 8045 8336 #: src/components/live/EditLiveDialog.tsx:202 8046 8337 #: src/components/live/EditLiveDialog.tsx:209 8047 8338 #: src/components/StarterPack/QrCodeDialog.tsx:204 8048 - #: src/screens/Profile/Header/EditProfileDialog.tsx:236 8049 - #: src/screens/Profile/Header/EditProfileDialog.tsx:250 8339 + #: src/screens/Profile/Header/EditProfileDialog.tsx:241 8340 + #: src/screens/Profile/Header/EditProfileDialog.tsx:255 8050 8341 #: src/screens/SavedFeeds.tsx:120 8051 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:267 8342 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:269 8343 + #: src/screens/Settings/DeerSettings.tsx:209 8344 + #: src/screens/Settings/DeerSettings.tsx:216 8052 8345 #: src/view/com/composer/GifAltText.tsx:193 8053 8346 #: src/view/com/composer/GifAltText.tsx:202 8054 - #: src/view/com/composer/photos/EditImageDialog.web.tsx:62 8055 - #: src/view/com/composer/photos/EditImageDialog.web.tsx:75 8347 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:65 8348 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:78 8056 8349 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:152 8057 8350 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:162 8058 8351 msgid "Save" ··· 8079 8372 msgid "Save image" 8080 8373 msgstr "" 8081 8374 8082 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:253 8375 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:255 8083 8376 msgid "Save new handle" 8084 8377 msgstr "" 8085 8378 ··· 8092 8385 msgid "Save these options for next time" 8093 8386 msgstr "" 8094 8387 8095 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:321 8096 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:327 8388 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:323 8389 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:329 8097 8390 msgid "Save to my feeds" 8098 8391 msgstr "" 8099 8392 8100 - #: src/view/shell/desktop/LeftNav.tsx:765 8101 - #: src/view/shell/Drawer.tsx:571 8393 + #: src/view/shell/desktop/LeftNav.tsx:775 8394 + #: src/view/shell/Drawer.tsx:589 8102 8395 msgctxt "link to bookmarks screen" 8103 8396 msgid "Saved" 8104 8397 msgstr "" ··· 8108 8401 msgstr "" 8109 8402 8110 8403 #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:143 8111 - #: src/Navigation.tsx:618 8404 + #: src/Navigation.tsx:647 8112 8405 #: src/screens/Bookmarks/index.tsx:60 8113 8406 msgid "Saved Posts" 8114 8407 msgstr "" 8115 8408 8116 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:132 8117 - #: src/screens/ProfileList/components/Header.tsx:85 8409 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:134 8410 + #: src/screens/ProfileList/components/Header.tsx:88 8118 8411 msgid "Saved to your feeds" 8119 8412 msgstr "" 8120 8413 8121 - #: src/components/dms/ChatEmptyPill.tsx:33 8414 + #: src/components/dms/ChatEmptyPill.tsx:36 8122 8415 #: src/components/NewskieDialog.tsx:139 8123 - #: src/view/com/notifications/NotificationFeedItem.tsx:872 8124 - #: src/view/com/notifications/NotificationFeedItem.tsx:897 8416 + #: src/view/com/notifications/NotificationFeedItem.tsx:877 8417 + #: src/view/com/notifications/NotificationFeedItem.tsx:902 8125 8418 msgid "Say hello!" 8126 8419 msgstr "" 8127 8420 ··· 8133 8426 msgid "Science" 8134 8427 msgstr "" 8135 8428 8136 - #: src/components/InterestTabs.tsx:255 8429 + #: src/view/com/posts/PostFeedItemCarousel.tsx:70 8430 + msgid "Scroll carousel left" 8431 + msgstr "" 8432 + 8433 + #: src/view/com/posts/PostFeedItemCarousel.tsx:79 8434 + msgid "Scroll carousel right" 8435 + msgstr "" 8436 + 8437 + #: src/components/InterestTabs.tsx:258 8137 8438 msgid "Scroll left" 8138 8439 msgstr "" 8139 8440 8140 - #: src/components/InterestTabs.tsx:289 8441 + #: src/components/InterestTabs.tsx:292 8141 8442 msgid "Scroll right" 8142 8443 msgstr "" 8143 8444 ··· 8145 8446 msgid "Scroll to top" 8146 8447 msgstr "" 8147 8448 8148 - #: src/components/dialogs/SearchablePeopleList.tsx:514 8149 - #: src/components/forms/SearchInput.tsx:34 8150 - #: src/components/forms/SearchInput.tsx:36 8449 + #: src/components/dialogs/SearchablePeopleList.tsx:519 8450 + #: src/components/forms/SearchInput.tsx:37 8451 + #: src/components/forms/SearchInput.tsx:39 8151 8452 #: src/screens/Search/Shell.tsx:327 8152 8453 #: src/screens/Search/Shell.tsx:514 8153 - #: src/view/shell/bottom-bar/BottomBar.tsx:198 8454 + #: src/view/shell/bottom-bar/BottomBar.tsx:202 8154 8455 msgid "Search" 8155 8456 msgstr "" 8156 8457 8157 - #: src/Navigation.tsx:259 8158 - #: src/screens/Profile/ProfileSearch.tsx:37 8458 + #: src/Navigation.tsx:280 8459 + #: src/screens/Profile/ProfileSearch.tsx:24 8460 + #: src/screens/Profile/ProfileSearch.tsx:40 8159 8461 msgid "Search @{0}'s posts" 8160 8462 msgstr "" 8161 8463 8162 - #: src/components/ProgressGuide/FollowDialog.tsx:662 8464 + #: src/components/ProgressGuide/FollowDialog.tsx:663 8163 8465 msgid "Search by name or interest" 8164 8466 msgstr "" 8165 8467 ··· 8167 8469 msgid "Search contacts" 8168 8470 msgstr "" 8169 8471 8170 - #: src/view/screens/Feeds.tsx:444 8472 + #: src/view/screens/Feeds.tsx:448 8171 8473 msgid "Search feeds" 8172 8474 msgstr "" 8173 8475 8174 8476 #. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected. 8175 - #: src/components/ProgressGuide/FollowDialog.tsx:491 8477 + #: src/components/ProgressGuide/FollowDialog.tsx:492 8176 8478 msgid "Search for \"{interestsDisplayName}\"" 8177 8479 msgstr "" 8178 8480 8179 8481 #. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected. 8180 - #: src/components/ProgressGuide/FollowDialog.tsx:484 8482 + #: src/components/ProgressGuide/FollowDialog.tsx:485 8181 8483 msgid "Search for \"{interestsDisplayName}\" (active)" 8182 8484 msgstr "" 8183 8485 8184 - #: src/view/shell/desktop/Search.tsx:131 8486 + #: src/view/shell/desktop/Search.tsx:132 8185 8487 msgid "Search for \"{query}\"" 8186 8488 msgstr "" 8187 8489 8188 - #: src/screens/Search/components/AutocompleteResults.tsx:45 8490 + #: src/screens/Search/components/AutocompleteResults.tsx:46 8189 8491 msgid "Search for \"{searchText}\"" 8190 8492 msgstr "" 8191 8493 8192 - #: src/screens/StarterPack/Wizard/index.tsx:549 8494 + #: src/screens/StarterPack/Wizard/index.tsx:551 8193 8495 msgid "Search for feeds that you want to suggest to others." 8194 8496 msgstr "" 8195 8497 ··· 8205 8507 msgid "Search for posts, users, or feeds" 8206 8508 msgstr "" 8207 8509 8208 - #: src/components/dialogs/GifSelect.tsx:167 8510 + #: src/components/dialogs/GifSelect.tsx:170 8209 8511 msgid "Search GIFs" 8210 8512 msgstr "" 8211 8513 8212 - #: src/screens/Hashtag.tsx:236 8213 - #: src/screens/Search/SearchResults.tsx:292 8514 + #: src/screens/Hashtag.tsx:239 8515 + #: src/screens/Search/SearchResults.tsx:294 8214 8516 msgid "Search is currently unavailable when logged out" 8215 8517 msgstr "" 8216 8518 8217 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:215 8218 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:216 8519 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:218 8520 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:219 8219 8521 msgid "Search languages" 8220 8522 msgstr "" 8221 8523 8222 - #: src/screens/Profile/ProfileSearch.tsx:36 8524 + #: src/screens/Profile/ProfileSearch.tsx:39 8223 8525 msgid "Search my posts" 8224 8526 msgstr "" 8225 8527 8226 - #: src/view/com/profile/ProfileMenu.tsx:291 8227 - #: src/view/com/profile/ProfileMenu.tsx:294 8528 + #: src/view/com/profile/ProfileMenu.tsx:339 8529 + #: src/view/com/profile/ProfileMenu.tsx:342 8228 8530 msgid "Search posts" 8229 8531 msgstr "" 8230 8532 8231 - #: src/components/dialogs/SearchablePeopleList.tsx:534 8232 - #: src/components/ProgressGuide/FollowDialog.tsx:681 8533 + #: src/components/dialogs/SearchablePeopleList.tsx:539 8534 + #: src/components/ProgressGuide/FollowDialog.tsx:685 8233 8535 msgid "Search profiles" 8234 8536 msgstr "" 8235 8537 8236 - #: src/components/dialogs/GifSelect.tsx:168 8538 + #: src/components/dialogs/GifSelect.tsx:171 8237 8539 msgid "Search Tenor" 8238 8540 msgstr "" 8239 8541 8240 - #: src/screens/Profile/ProfileSearch.tsx:38 8542 + #: src/screens/Profile/ProfileSearch.tsx:41 8241 8543 msgid "Search..." 8242 8544 msgstr "" 8243 8545 8244 - #: src/components/dialogs/SearchablePeopleList.tsx:535 8245 - #: src/components/ProgressGuide/FollowDialog.tsx:682 8546 + #: src/components/dialogs/SearchablePeopleList.tsx:540 8547 + #: src/components/ProgressGuide/FollowDialog.tsx:686 8246 8548 msgid "Searches for profiles" 8247 8549 msgstr "" 8248 8550 ··· 8274 8576 msgid "See #{tag} posts by user" 8275 8577 msgstr "" 8276 8578 8277 - #: src/view/com/auth/SplashScreen.web.tsx:182 8278 - msgid "See jobs at Bluesky" 8279 - msgstr "" 8280 - 8281 - #: src/components/FeedInterstitials.tsx:732 8282 - #: src/components/FeedInterstitials.tsx:793 8579 + #: src/components/FeedInterstitials.tsx:737 8580 + #: src/components/FeedInterstitials.tsx:799 8283 8581 msgid "See more" 8284 8582 msgstr "" 8285 8583 8286 - #: src/components/FeedInterstitials.tsx:714 8584 + #: src/components/FeedInterstitials.tsx:719 8287 8585 msgid "See more suggested profiles" 8288 8586 msgstr "" 8289 8587 ··· 8296 8594 msgid "See this guide" 8297 8595 msgstr "" 8298 8596 8299 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:196 8597 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:198 8300 8598 msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" 8301 8599 msgstr "" 8302 8600 8303 8601 #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. 8304 - #: src/components/InterestTabs.tsx:337 8602 + #: src/components/InterestTabs.tsx:341 8305 8603 msgid "Select \"{interestsDisplayName}\" category" 8306 8604 msgstr "" 8307 8605 ··· 8318 8616 msgid "Select a color" 8319 8617 msgstr "" 8320 8618 8321 - #: src/components/moderation/ReportDialog/index.tsx:372 8619 + #: src/components/moderation/ReportDialog/index.tsx:375 8322 8620 msgid "Select a reason" 8323 8621 msgstr "" 8324 8622 ··· 8354 8652 msgid "Select duration" 8355 8653 msgstr "" 8356 8654 8357 - #: src/screens/Login/index.tsx:158 8655 + #: src/screens/Login/index.tsx:206 8358 8656 msgid "Select from an existing account" 8359 8657 msgstr "" 8360 8658 ··· 8366 8664 msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}</0>" 8367 8665 msgstr "" 8368 8666 8369 - #: src/view/com/composer/photos/SelectGifBtn.tsx:35 8667 + #: src/view/com/composer/photos/SelectGifBtn.tsx:38 8370 8668 msgid "Select GIF" 8371 8669 msgstr "" 8372 8670 8373 - #: src/components/dialogs/GifSelect.tsx:294 8671 + #: src/components/dialogs/GifSelect.tsx:297 8374 8672 msgid "Select GIF \"{0}\"" 8375 8673 msgstr "" 8376 8674 8377 - #: src/components/dialogs/MutedWords.tsx:147 8675 + #: src/components/dialogs/MutedWords.tsx:148 8378 8676 msgid "Select how long to mute this word for." 8379 8677 msgstr "" 8380 8678 ··· 8384 8682 msgid "Select language" 8385 8683 msgstr "" 8386 8684 8387 - #: src/view/com/composer/videos/SubtitleDialog.tsx:269 8685 + #: src/view/com/composer/videos/SubtitleDialog.tsx:272 8388 8686 msgid "Select language..." 8389 8687 msgstr "" 8390 8688 8391 8689 #: src/screens/Settings/LanguageSettings.tsx:180 8392 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:248 8690 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:251 8393 8691 msgid "Select languages" 8394 8692 msgstr "" 8395 8693 8396 - #: src/components/moderation/ReportDialog/index.tsx:422 8694 + #: src/components/moderation/ReportDialog/index.tsx:425 8397 8695 msgid "Select moderation service" 8398 8696 msgstr "" 8399 8697 ··· 8418 8716 msgid "Select the {emojiName} emoji as your avatar" 8419 8717 msgstr "" 8420 8718 8421 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:194 8719 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:197 8422 8720 msgid "Select up to 3 languages used in this post" 8423 8721 msgstr "" 8424 8722 8425 - #: src/components/dialogs/MutedWords.tsx:247 8723 + #: src/components/dialogs/MutedWords.tsx:248 8426 8724 msgid "Select what content this mute word should apply to." 8427 8725 msgstr "" 8428 8726 ··· 8434 8732 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." 8435 8733 msgstr "" 8436 8734 8437 - #: src/screens/Signup/StepInfo/index.tsx:302 8735 + #: src/screens/Signup/StepInfo/index.tsx:374 8438 8736 msgid "Select your date of birth" 8439 8737 msgstr "" 8440 8738 8441 8739 #: src/screens/Onboarding/StepInterests/index.tsx:67 8442 - #: src/screens/Settings/InterestsSettings.tsx:165 8740 + #: src/screens/Settings/InterestsSettings.tsx:166 8443 8741 msgid "Select your interests from the options below" 8742 + msgstr "" 8743 + 8744 + #: src/screens/Settings/DeerSettings.tsx:452 8745 + #: src/screens/Settings/DeerSettings.tsx:458 8746 + msgid "Select your own set of trusted verifiers, and operate as a verifier" 8444 8747 msgstr "" 8445 8748 8446 8749 #: src/screens/Settings/LanguageSettings.tsx:125 ··· 8451 8754 msgid "Select your preferred notification channels" 8452 8755 msgstr "" 8453 8756 8454 - #: src/view/com/composer/SelectMediaButton.tsx:396 8757 + #: src/view/com/composer/SelectMediaButton.tsx:397 8455 8758 msgid "Selecting multiple media types is not supported." 8456 8759 msgstr "" 8457 8760 ··· 8459 8762 msgid "Self-harm or dangerous behaviors" 8460 8763 msgstr "" 8461 8764 8462 - #: src/components/dms/ChatEmptyPill.tsx:38 8765 + #: src/components/dms/ChatEmptyPill.tsx:41 8463 8766 msgid "Send a neat website!" 8464 8767 msgstr "" 8465 8768 ··· 8480 8783 msgid "Send Email" 8481 8784 msgstr "" 8482 8785 8483 - #: src/view/shell/Drawer.tsx:361 8786 + #: src/view/shell/Drawer.tsx:379 8484 8787 msgid "Send feedback" 8485 8788 msgstr "" 8486 8789 8487 - #: src/screens/Messages/components/MessageInput.tsx:192 8488 - #: src/screens/Messages/components/MessageInput.web.tsx:235 8790 + #: src/screens/Messages/components/MessageInput.tsx:198 8791 + #: src/screens/Messages/components/MessageInput.web.tsx:238 8489 8792 msgid "Send message" 8490 8793 msgstr "" 8491 8794 8492 - #: src/components/PostControls/ShareMenu/RecentChats.tsx:121 8795 + #: src/components/PostControls/ShareMenu/RecentChats.tsx:122 8493 8796 msgid "Send post to {name}" 8494 8797 msgstr "" 8495 8798 ··· 8497 8800 msgid "Send post to..." 8498 8801 msgstr "" 8499 8802 8500 - #: src/components/moderation/ReportDialog/index.tsx:813 8803 + #: src/components/moderation/ReportDialog/index.tsx:817 8501 8804 msgid "Send report to {title}" 8502 8805 msgstr "" 8503 8806 ··· 8511 8814 msgid "Send verification email" 8512 8815 msgstr "" 8513 8816 8514 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:101 8515 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:107 8516 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 8517 - #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 8817 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 8818 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:146 8819 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:163 8820 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:169 8518 8821 msgid "Send via direct message" 8519 8822 msgstr "" 8520 8823 ··· 8526 8829 msgid "Sent to our phone number verification provider Plivo" 8527 8830 msgstr "" 8528 8831 8529 - #: src/components/dialogs/ServerInput.tsx:177 8832 + #: src/components/dialogs/ServerInput.tsx:141 8530 8833 msgid "Server address" 8531 8834 msgstr "" 8532 8835 ··· 8558 8861 msgid "Sets email for password reset" 8559 8862 msgstr "" 8560 8863 8561 - #: src/Navigation.tsx:215 8562 - #: src/screens/Settings/Settings.tsx:105 8563 - #: src/view/shell/desktop/LeftNav.tsx:805 8564 - #: src/view/shell/Drawer.tsx:609 8864 + #: src/Navigation.tsx:236 8865 + #: src/screens/Settings/Settings.tsx:107 8866 + #: src/view/shell/desktop/LeftNav.tsx:815 8867 + #: src/view/shell/Drawer.tsx:627 8565 8868 msgid "Settings" 8566 8869 msgstr "" 8567 8870 ··· 8622 8925 msgid "Sexually Suggestive" 8623 8926 msgstr "" 8624 8927 8928 + #: src/screens/Settings/AppearanceSettings.tsx:284 8929 + msgid "Shapes" 8930 + msgstr "" 8931 + 8625 8932 #: src/components/StarterPack/QrCodeDialog.tsx:192 8626 - #: src/screens/Hashtag.tsx:142 8627 - #: src/screens/StarterPack/StarterPackScreen.tsx:433 8628 - #: src/screens/Topic.tsx:103 8933 + #: src/screens/Hashtag.tsx:145 8934 + #: src/screens/StarterPack/StarterPackScreen.tsx:434 8935 + #: src/screens/Topic.tsx:106 8629 8936 msgid "Share" 8630 8937 msgstr "" 8631 8938 ··· 8634 8941 msgid "Share" 8635 8942 msgstr "" 8636 8943 8637 - #: src/components/dms/ChatEmptyPill.tsx:37 8944 + #: src/components/dms/ChatEmptyPill.tsx:40 8638 8945 msgid "Share a cool story!" 8639 8946 msgstr "" 8640 8947 8641 - #: src/components/dms/ChatEmptyPill.tsx:36 8948 + #: src/components/dms/ChatEmptyPill.tsx:39 8642 8949 msgid "Share a fun fact!" 8643 8950 msgstr "" 8644 8951 8645 - #: src/view/com/profile/ProfileMenu.tsx:562 8952 + #: src/view/com/profile/ProfileMenu.tsx:641 8646 8953 msgid "Share anyway" 8647 8954 msgstr "" 8648 8955 8649 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 8650 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:164 8956 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:246 8957 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:249 8651 8958 msgid "Share author DID" 8652 8959 msgstr "" 8653 8960 ··· 8662 8969 msgid "Share link dialog" 8663 8970 msgstr "" 8664 8971 8665 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:152 8666 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 8972 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:237 8973 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:240 8667 8974 msgid "Share post at:// URI" 8668 8975 msgstr "" 8669 8976 ··· 8672 8979 msgid "Share QR code" 8673 8980 msgstr "" 8674 8981 8675 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:471 8982 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:475 8676 8983 msgid "Share this feed" 8677 8984 msgstr "" 8678 8985 8679 - #: src/screens/StarterPack/StarterPackScreen.tsx:426 8986 + #: src/screens/StarterPack/StarterPackScreen.tsx:427 8680 8987 msgid "Share this starter pack" 8681 8988 msgstr "" 8682 8989 ··· 8684 8991 msgid "Share this starter pack and help people join your community on Bluesky." 8685 8992 msgstr "" 8686 8993 8687 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:117 8688 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 8689 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:165 8690 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:171 8691 - #: src/screens/StarterPack/StarterPackScreen.tsx:613 8692 - #: src/screens/StarterPack/StarterPackScreen.tsx:621 8693 - #: src/view/com/profile/ProfileMenu.tsx:269 8694 - #: src/view/com/profile/ProfileMenu.tsx:282 8994 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:192 8995 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:195 8996 + #: src/view/com/profile/ProfileMenu.tsx:317 8997 + #: src/view/com/profile/ProfileMenu.tsx:330 8998 + msgid "Share via bsky.app..." 8999 + msgstr "" 9000 + 9001 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:182 9002 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:185 9003 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:168 9004 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:174 9005 + #: src/screens/StarterPack/StarterPackScreen.tsx:616 9006 + #: src/screens/StarterPack/StarterPackScreen.tsx:624 9007 + #: src/view/com/profile/ProfileMenu.tsx:292 9008 + #: src/view/com/profile/ProfileMenu.tsx:305 8695 9009 msgid "Share via..." 8696 9010 msgstr "" 8697 9011 ··· 8699 9013 msgid "Share your contacts to find friends" 8700 9014 msgstr "" 8701 9015 8702 - #: src/components/dms/ChatEmptyPill.tsx:34 9016 + #: src/components/dms/ChatEmptyPill.tsx:37 8703 9017 msgid "Share your favorite feed!" 8704 9018 msgstr "" 8705 9019 8706 - #: src/Navigation.tsx:318 9020 + #: src/Navigation.tsx:339 8707 9021 msgid "Shared Preferences Tester" 8708 9022 msgstr "" 8709 9023 ··· 8713 9027 msgid "Show" 8714 9028 msgstr "" 8715 9029 9030 + #: src/screens/Settings/DeerSettings.tsx:430 9031 + #: src/screens/Settings/DeerSettings.tsx:436 9032 + msgid "Show \"Open original post\" and \"Open post in PDSls\" buttons" 9033 + msgstr "" 9034 + 8716 9035 #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189 8717 9036 msgid "Show alt text" 8718 9037 msgstr "" 8719 9038 8720 - #: src/components/moderation/ScreenHider.tsx:178 8721 9039 #: src/components/moderation/ScreenHider.tsx:181 9040 + #: src/components/moderation/ScreenHider.tsx:184 8722 9041 #: src/screens/List/ListHiddenScreen.tsx:190 8723 - #: src/screens/VideoFeed/index.tsx:656 8724 - #: src/screens/VideoFeed/index.tsx:662 9042 + #: src/screens/VideoFeed/index.tsx:657 9043 + #: src/screens/VideoFeed/index.tsx:663 8725 9044 msgid "Show anyway" 8726 9045 msgstr "" 8727 9046 ··· 8738 9057 msgid "Show customization options" 8739 9058 msgstr "" 8740 9059 8741 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:541 8742 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:543 9060 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 9061 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 8743 9062 msgid "Show less like this" 8744 9063 msgstr "" 8745 9064 ··· 8760 9079 msgid "Show More" 8761 9080 msgstr "" 8762 9081 8763 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:533 8764 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:535 9082 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 9083 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:812 8765 9084 msgid "Show more like this" 8766 9085 msgstr "" 8767 9086 ··· 8783 9102 msgid "Show replies" 8784 9103 msgstr "" 8785 9104 8786 - #: src/screens/PostThread/components/HeaderDropdown.tsx:43 9105 + #: src/screens/PostThread/components/HeaderDropdown.tsx:47 8787 9106 msgid "Show replies as" 8788 9107 msgstr "" 8789 9108 8790 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:620 8791 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 9109 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:897 9110 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:907 8792 9111 msgid "Show reply for everyone" 8793 9112 msgstr "" 8794 9113 ··· 8815 9134 msgid "Show when youโ€™re live" 8816 9135 msgstr "" 8817 9136 8818 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 9137 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:660 8819 9138 msgid "Shows information about when this post was created" 8820 9139 msgstr "" 8821 9140 8822 - #: src/screens/Settings/Settings.tsx:131 9141 + #: src/screens/Settings/Settings.tsx:133 8823 9142 msgid "Shows other accounts you can switch to" 8824 9143 msgstr "" 8825 9144 ··· 8832 9151 #: src/components/dialogs/Signin.tsx:99 8833 9152 #: src/components/WelcomeModal.tsx:194 8834 9153 #: src/components/WelcomeModal.tsx:206 8835 - #: src/screens/Hashtag.tsx:240 8836 - #: src/screens/Login/index.tsx:136 8837 - #: src/screens/Login/index.tsx:157 8838 - #: src/screens/Login/LoginForm.tsx:181 8839 - #: src/screens/Search/SearchResults.tsx:296 8840 - #: src/view/com/auth/SplashScreen.tsx:81 8841 - #: src/view/com/auth/SplashScreen.tsx:89 9154 + #: src/screens/Hashtag.tsx:243 9155 + #: src/screens/Login/index.tsx:182 9156 + #: src/screens/Login/index.tsx:205 9157 + #: src/screens/Login/LoginForm.tsx:190 9158 + #: src/screens/Search/SearchResults.tsx:298 9159 + #: src/view/com/auth/SplashScreen.tsx:85 9160 + #: src/view/com/auth/SplashScreen.tsx:93 8842 9161 #: src/view/com/auth/SplashScreen.web.tsx:127 8843 9162 #: src/view/com/auth/SplashScreen.web.tsx:135 8844 - #: src/view/shell/bottom-bar/BottomBar.tsx:355 8845 - #: src/view/shell/bottom-bar/BottomBar.tsx:360 9163 + #: src/view/shell/bottom-bar/BottomBar.tsx:361 9164 + #: src/view/shell/bottom-bar/BottomBar.tsx:366 8846 9165 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 8847 9166 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 8848 9167 #: src/view/shell/NavSignupCard.tsx:57 ··· 8850 9169 msgid "Sign in" 8851 9170 msgstr "" 8852 9171 8853 - #: src/components/AccountList.tsx:136 9172 + #: src/components/AccountList.tsx:139 8854 9173 msgid "Sign in as {0}" 8855 9174 msgstr "" 8856 9175 ··· 8867 9186 msgid "Sign in or create your account to join the conversation!" 8868 9187 msgstr "" 8869 9188 8870 - #: src/components/AccountList.tsx:70 9189 + #: src/components/AccountList.tsx:72 8871 9190 msgid "Sign in to account that is not listed" 8872 9191 msgstr "" 8873 9192 ··· 8875 9194 msgid "Sign in to Bluesky or create a new account" 8876 9195 msgstr "" 8877 9196 8878 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 8879 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:521 9197 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 9198 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 8880 9199 msgid "Sign in to view post" 8881 9200 msgstr "" 8882 9201 8883 - #: src/screens/Settings/Settings.tsx:272 8884 - #: src/screens/Settings/Settings.tsx:274 8885 - #: src/screens/Settings/Settings.tsx:306 9202 + #: src/screens/Signup/StepInfo/index.tsx:222 9203 + #: src/screens/Signup/StepInfo/index.tsx:230 9204 + msgid "Sign in with ATmosphere" 9205 + msgstr "" 9206 + 9207 + #: src/screens/Settings/Settings.tsx:280 9208 + #: src/screens/Settings/Settings.tsx:282 9209 + #: src/screens/Settings/Settings.tsx:314 8886 9210 #: src/screens/SignupQueued.tsx:93 8887 9211 #: src/screens/SignupQueued.tsx:96 8888 9212 #: src/screens/Takendown.tsx:88 8889 - #: src/view/shell/desktop/LeftNav.tsx:212 8890 - #: src/view/shell/desktop/LeftNav.tsx:269 9213 + #: src/view/shell/desktop/LeftNav.tsx:215 8891 9214 #: src/view/shell/desktop/LeftNav.tsx:272 9215 + #: src/view/shell/desktop/LeftNav.tsx:275 8892 9216 msgid "Sign out" 8893 9217 msgstr "" 8894 9218 ··· 8896 9220 msgid "Sign Out" 8897 9221 msgstr "" 8898 9222 8899 - #: src/screens/Settings/Settings.tsx:303 8900 - #: src/view/shell/desktop/LeftNav.tsx:209 9223 + #: src/screens/Settings/Settings.tsx:311 9224 + #: src/view/shell/desktop/LeftNav.tsx:212 8901 9225 msgid "Sign out?" 8902 9226 msgstr "" 8903 9227 8904 - #: src/components/moderation/ScreenHider.tsx:97 9228 + #: src/components/moderation/ScreenHider.tsx:100 8905 9229 #: src/lib/moderation/useGlobalLabelStrings.ts:28 8906 9230 msgid "Sign-in Required" 8907 9231 msgstr "" 8908 9232 8909 - #: src/lib/hooks/useAccountSwitcher.ts:41 9233 + #: src/lib/hooks/useAccountSwitcher.ts:35 8910 9234 #: src/screens/Login/ChooseAccountForm.tsx:53 8911 9235 msgid "Signed in as @{0}" 8912 9236 msgstr "" 8913 9237 8914 - #: src/components/FeedInterstitials.tsx:709 9238 + #: src/components/FeedInterstitials.tsx:714 8915 9239 msgid "Similar accounts" 8916 9240 msgstr "" 8917 9241 ··· 8923 9247 #: src/screens/Onboarding/StepFinished/index.tsx:316 8924 9248 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:252 8925 9249 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104 8926 - #: src/screens/StarterPack/Wizard/index.tsx:218 9250 + #: src/screens/StarterPack/Wizard/index.tsx:219 8927 9251 msgid "Skip" 8928 9252 msgstr "" 8929 9253 ··· 8942 9266 msgid "Skip to next step" 8943 9267 msgstr "" 8944 9268 8945 - #: src/screens/Settings/AppearanceSettings.tsx:152 9269 + #: src/screens/Settings/AppearanceSettings.tsx:245 8946 9270 msgid "Smaller" 8947 9271 msgstr "" 8948 9272 8949 - #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 9273 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:96 8950 9274 msgid "Snoozes the reminder" 8951 9275 msgstr "" 8952 9276 8953 9277 #: src/components/WelcomeModal.tsx:148 8954 - msgid "Social media you control." 9278 + msgid "Social media if it was good." 8955 9279 msgstr "" 8956 9280 8957 9281 #: src/lib/interests.ts:58 8958 9282 msgid "Software Dev" 8959 9283 msgstr "" 8960 9284 8961 - #: src/components/verification/VerificationsDialog.tsx:120 9285 + #: src/screens/Settings/DeerSettings.tsx:853 9286 + msgid "Some App Views will default to using an app labeler if you have no labelers, so consider subscribing to at least one labeler if you have issues." 9287 + msgstr "" 9288 + 9289 + #: src/components/verification/VerificationsDialog.tsx:121 8962 9290 msgid "Some of your verifications are invalid." 8963 9291 msgstr "" 8964 9292 8965 - #: src/components/FeedInterstitials.tsx:871 9293 + #: src/components/FeedInterstitials.tsx:877 8966 9294 msgid "Some other feeds you might like" 8967 9295 msgstr "" 8968 9296 ··· 8974 9302 msgid "Someone reacted {0}" 8975 9303 msgstr "" 8976 9304 8977 - #: src/screens/Messages/components/ChatListItem.tsx:243 9305 + #: src/screens/Messages/components/ChatListItem.tsx:247 8978 9306 msgid "Someone reacted {0} to {1}" 8979 9307 msgstr "" 8980 9308 8981 - #: src/components/moderation/ReportDialog/index.tsx:95 9309 + #: src/components/moderation/ReportDialog/index.tsx:96 8982 9310 msgid "Something wasn't quite right with the data you're trying to report. Please contact support." 8983 9311 msgstr "" 8984 9312 ··· 8987 9315 msgstr "" 8988 9316 8989 9317 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 8990 - #: src/components/moderation/ReportDialog/index.tsx:279 9318 + #: src/components/moderation/ReportDialog/index.tsx:282 8991 9319 #: src/screens/Deactivated.tsx:85 8992 9320 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 8993 9321 #: src/view/screens/Storybook/Admonitions.tsx:55 ··· 9007 9335 msgid "Something went wrong. Please try again in a moment." 9008 9336 msgstr "" 9009 9337 9010 - #: src/components/moderation/ReportDialog/index.tsx:233 9338 + #: src/components/moderation/ReportDialog/index.tsx:236 9011 9339 msgid "Something went wrong. Please try again." 9012 9340 msgstr "" 9013 9341 9014 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:539 9342 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:543 9015 9343 msgid "Something wrong? Let us know." 9016 9344 msgstr "" 9017 9345 ··· 9036 9364 msgid "Sort replies to the same post by:" 9037 9365 msgstr "" 9038 9366 9367 + #: src/screens/Settings/Settings.tsx:266 9368 + msgid "Source code" 9369 + msgstr "" 9370 + 9039 9371 #: src/components/moderation/LabelsOnMeDialog.tsx:182 9040 9372 #: src/components/moderation/ModerationDetailsDialog.tsx:188 9041 9373 msgid "Source: <0>{sourceName}</0>" ··· 9050 9382 msgstr "" 9051 9383 9052 9384 #: src/lib/interests.ts:72 9053 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:230 9385 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:234 9054 9386 msgid "Sports" 9055 9387 msgstr "" 9056 9388 9057 - #: src/components/PostControls/ShareMenu/RecentChats.tsx:206 9389 + #: src/components/PostControls/ShareMenu/RecentChats.tsx:208 9058 9390 msgid "Start a conversation, and it will appear here." 9059 9391 msgstr "" 9060 9392 ··· 9072 9404 msgid "Start adding people!" 9073 9405 msgstr "" 9074 9406 9075 - #: src/components/dialogs/SearchablePeopleList.tsx:382 9407 + #: src/components/dialogs/SearchablePeopleList.tsx:386 9076 9408 msgid "Start chat with {displayName}" 9077 9409 msgstr "" 9078 9410 9079 - #: src/Navigation.tsx:589 9080 - #: src/Navigation.tsx:594 9081 - #: src/screens/StarterPack/Wizard/index.tsx:209 9411 + #: src/Navigation.tsx:618 9412 + #: src/Navigation.tsx:623 9413 + #: src/screens/StarterPack/Wizard/index.tsx:210 9082 9414 msgid "Starter Pack" 9083 9415 msgstr "" 9084 9416 ··· 9095 9427 msgid "Starter pack by you" 9096 9428 msgstr "" 9097 9429 9098 - #: src/screens/StarterPack/StarterPackScreen.tsx:733 9430 + #: src/screens/StarterPack/StarterPackScreen.tsx:736 9099 9431 msgid "Starter pack is invalid" 9100 9432 msgstr "" 9101 9433 ··· 9112 9444 msgid "Starter Packs let you share your favorite feeds and people with your friends." 9113 9445 msgstr "" 9114 9446 9115 - #: src/screens/Settings/AboutSettings.tsx:100 9116 - #: src/screens/Settings/AboutSettings.tsx:103 9447 + #: src/screens/Settings/AboutSettings.tsx:98 9448 + #: src/screens/Settings/AboutSettings.tsx:101 9117 9449 msgid "Status Page" 9118 9450 msgstr "" 9119 9451 9120 9452 #: src/screens/Onboarding/Layout.tsx:226 9121 - #: src/screens/Signup/index.tsx:169 9453 + #: src/screens/Signup/index.tsx:175 9122 9454 msgid "Step {0} of {1}" 9123 9455 msgstr "" 9124 9456 9125 - #: src/screens/Settings/Settings.tsx:411 9457 + #: src/screens/Settings/Settings.tsx:419 9126 9458 msgid "Storage cleared, you need to restart the app now." 9127 9459 msgstr "" 9128 9460 ··· 9130 9462 msgid "Stored as part of a secure code for matching with others" 9131 9463 msgstr "" 9132 9464 9133 - #: src/Navigation.tsx:308 9134 - #: src/screens/Settings/Settings.tsx:466 9465 + #: src/Navigation.tsx:329 9466 + #: src/screens/Settings/Settings.tsx:474 9135 9467 msgid "Storybook" 9136 9468 msgstr "" 9137 9469 ··· 9158 9490 msgid "Submit Appeal" 9159 9491 msgstr "" 9160 9492 9161 - #: src/components/moderation/ReportDialog/index.tsx:500 9162 - #: src/components/moderation/ReportDialog/index.tsx:561 9163 - #: src/components/moderation/ReportDialog/index.tsx:568 9493 + #: src/components/moderation/ReportDialog/index.tsx:503 9494 + #: src/components/moderation/ReportDialog/index.tsx:564 9495 + #: src/components/moderation/ReportDialog/index.tsx:571 9164 9496 msgid "Submit report" 9165 9497 msgstr "" 9166 9498 9167 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:81 9499 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:84 9168 9500 msgid "Subscribe" 9169 9501 msgstr "" 9170 9502 ··· 9176 9508 msgid "Subscribe to account activity" 9177 9509 msgstr "" 9178 9510 9179 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:343 9511 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346 9180 9512 msgid "Subscribe to Labeler" 9181 9513 msgstr "" 9182 9514 9183 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:309 9515 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312 9184 9516 msgid "Subscribe to this labeler" 9185 9517 msgstr "" 9186 9518 9187 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:69 9519 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:72 9188 9520 msgid "Subscribe to this list" 9189 9521 msgstr "" 9190 9522 9191 - #: src/ageAssurance/components/RedirectOverlay.tsx:251 9523 + #: src/ageAssurance/components/RedirectOverlay.tsx:255 9192 9524 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:158 9193 9525 msgid "Success" 9194 9526 msgstr "" ··· 9207 9539 msgstr "" 9208 9540 9209 9541 #. Accounts suggested to the user for them to follow 9210 - #: src/components/FeedInterstitials.tsx:707 9542 + #: src/components/FeedInterstitials.tsx:712 9211 9543 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:155 9212 9544 msgid "Suggested for you" 9213 9545 msgstr "" ··· 9217 9549 msgid "Suggestive" 9218 9550 msgstr "" 9219 9551 9220 - #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 9221 - msgctxt "Name of app icon variant" 9222 - msgid "Sunrise" 9223 - msgstr "" 9224 - 9225 - #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 9226 - msgctxt "Name of app icon variant" 9227 - msgid "Sunset" 9228 - msgstr "" 9229 - 9230 - #: src/Navigation.tsx:328 9552 + #: src/Navigation.tsx:349 9231 9553 #: src/view/screens/Support.tsx:34 9232 9554 #: src/view/screens/Support.tsx:37 9233 9555 msgid "Support" ··· 9237 9559 msgid "Support for this feature in your country has not been enabled yet! Please check back later." 9238 9560 msgstr "" 9239 9561 9240 - #: src/screens/Settings/Settings.tsx:129 9241 - #: src/screens/Settings/Settings.tsx:143 9242 - #: src/screens/Settings/Settings.tsx:624 9243 - #: src/view/shell/desktop/LeftNav.tsx:247 9562 + #: src/screens/Settings/Settings.tsx:131 9563 + #: src/screens/Settings/Settings.tsx:145 9564 + #: src/screens/Settings/Settings.tsx:634 9565 + #: src/view/shell/desktop/LeftNav.tsx:250 9244 9566 msgid "Switch account" 9245 9567 msgstr "" 9246 9568 ··· 9249 9571 msgid "Switch Account" 9250 9572 msgstr "" 9251 9573 9252 - #: src/view/shell/desktop/LeftNav.tsx:110 9574 + #: src/view/shell/desktop/LeftNav.tsx:113 9253 9575 msgid "Switch accounts" 9254 9576 msgstr "" 9255 9577 9256 - #: src/view/shell/desktop/LeftNav.tsx:346 9578 + #: src/view/shell/desktop/LeftNav.tsx:349 9257 9579 msgid "Switch to {0}" 9258 9580 msgstr "" 9259 9581 9260 9582 #: src/components/dialogs/Embed.tsx:158 9261 9583 #: src/components/dialogs/Embed.tsx:160 9262 - #: src/screens/Settings/AppearanceSettings.tsx:85 9263 - #: src/screens/Settings/AppearanceSettings.tsx:135 9584 + #: src/screens/Settings/AppearanceSettings.tsx:137 9585 + #: src/screens/Settings/AppearanceSettings.tsx:228 9264 9586 msgid "System" 9265 9587 msgstr "" 9266 9588 9267 9589 #: src/screens/Log.tsx:58 9268 - #: src/screens/Settings/AboutSettings.tsx:107 9269 - #: src/screens/Settings/AboutSettings.tsx:110 9270 - #: src/screens/Settings/Settings.tsx:459 9590 + #: src/screens/Settings/AboutSettings.tsx:105 9591 + #: src/screens/Settings/AboutSettings.tsx:108 9592 + #: src/screens/Settings/Settings.tsx:467 9271 9593 msgid "System log" 9272 9594 msgstr "" 9273 9595 9274 - #: src/components/dialogs/MutedWords.tsx:287 9596 + #: src/components/dialogs/MutedWords.tsx:288 9275 9597 msgid "Tags only" 9276 9598 msgstr "" 9277 9599 9600 + #: src/view/com/auth/SplashScreen.web.tsx:174 9601 + msgid "Tangled" 9602 + msgstr "" 9603 + 9278 9604 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:109 9279 9605 msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." 9280 9606 msgstr "" ··· 9287 9613 msgid "Tap for more information" 9288 9614 msgstr "" 9289 9615 9290 - #: src/screens/Signup/StepInfo/index.tsx:336 9616 + #: src/screens/Signup/StepInfo/index.tsx:408 9291 9617 msgid "Tap here to confirm your location with GPS." 9292 9618 msgstr "" 9293 9619 ··· 9325 9651 msgid "Tech" 9326 9652 msgstr "" 9327 9653 9328 - #: src/components/dms/ChatEmptyPill.tsx:35 9654 + #: src/components/dms/ChatEmptyPill.tsx:38 9329 9655 msgid "Tell a joke!" 9330 9656 msgstr "" 9331 9657 9332 - #: src/screens/Profile/Header/EditProfileDialog.tsx:371 9658 + #: src/screens/Profile/Header/EditProfileDialog.tsx:377 9333 9659 msgid "Tell us a bit about yourself" 9334 9660 msgstr "" 9335 9661 ··· 9345 9671 #: src/components/dialogs/BirthDateSettings.tsx:182 9346 9672 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 9347 9673 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 9348 - #: src/Navigation.tsx:338 9349 - #: src/screens/Settings/AboutSettings.tsx:84 9350 - #: src/screens/Settings/AboutSettings.tsx:87 9674 + #: src/Navigation.tsx:359 9675 + #: src/screens/Settings/AboutSettings.tsx:82 9676 + #: src/screens/Settings/AboutSettings.tsx:85 9351 9677 #: src/view/screens/TermsOfService.tsx:34 9352 - #: src/view/shell/Drawer.tsx:697 9353 - #: src/view/shell/Drawer.tsx:699 9678 + #: src/view/shell/Drawer.tsx:716 9679 + #: src/view/shell/Drawer.tsx:718 9354 9680 msgid "Terms of Service" 9355 9681 msgstr "" 9356 9682 9357 - #: src/components/dialogs/MutedWords.tsx:271 9683 + #: src/components/dialogs/MutedWords.tsx:272 9358 9684 msgid "Text & tags" 9359 9685 msgstr "" 9360 9686 ··· 9377 9703 msgid "Thanks! You're all set." 9378 9704 msgstr "" 9379 9705 9380 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:498 9706 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:500 9381 9707 msgid "That contains the following:" 9382 9708 msgstr "" 9383 9709 9384 - #: src/screens/StarterPack/StarterPackScreen.tsx:110 9385 9710 #: src/screens/StarterPack/StarterPackScreen.tsx:111 9386 - #: src/screens/StarterPack/StarterPackScreen.tsx:155 9711 + #: src/screens/StarterPack/StarterPackScreen.tsx:112 9387 9712 #: src/screens/StarterPack/StarterPackScreen.tsx:156 9388 - #: src/screens/StarterPack/Wizard/index.tsx:117 9389 - #: src/screens/StarterPack/Wizard/index.tsx:127 9713 + #: src/screens/StarterPack/StarterPackScreen.tsx:157 9714 + #: src/screens/StarterPack/Wizard/index.tsx:118 9715 + #: src/screens/StarterPack/Wizard/index.tsx:128 9390 9716 msgid "That starter pack could not be found." 9391 9717 msgstr "" 9392 9718 ··· 9398 9724 msgid "That's all, folks!" 9399 9725 msgstr "" 9400 9726 9401 - #: src/screens/VideoFeed/index.tsx:1157 9727 + #: src/screens/VideoFeed/index.tsx:1159 9402 9728 msgid "That's everything!" 9403 9729 msgstr "" 9404 9730 9405 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:186 9406 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:391 9407 - #: src/view/com/profile/ProfileMenu.tsx:538 9731 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:191 9732 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 9733 + #: src/view/com/profile/ProfileMenu.tsx:617 9408 9734 msgid "The account will be able to interact with you after unblocking." 9409 9735 msgstr "" 9410 9736 9411 9737 #: src/screens/Settings/AppIconSettings/index.tsx:41 9412 9738 #: src/screens/Settings/AppIconSettings/index.tsx:227 9413 9739 msgid "The app will be restarted" 9740 + msgstr "" 9741 + 9742 + #: src/screens/Signup/index.tsx:185 9743 + msgid "The ATmosphere โœจ" 9414 9744 msgstr "" 9415 9745 9416 9746 #: src/components/moderation/ModerationDetailsDialog.tsx:121 ··· 9478 9808 msgid "The Privacy Policy has been moved to <0/>" 9479 9809 msgstr "" 9480 9810 9481 - #: src/view/com/composer/state/video.ts:395 9482 - #: src/view/com/composer/state/video.ts:434 9811 + #: src/view/com/composer/state/video.ts:431 9812 + #: src/view/com/composer/state/video.ts:470 9483 9813 msgid "The selected video is larger than 100ย MB. Please try again with a smaller file." 9484 9814 msgstr "" 9485 9815 ··· 9488 9818 msgid "The server appears to be experiencing issues. Please try again in a few moments." 9489 9819 msgstr "" 9490 9820 9491 - #: src/screens/StarterPack/StarterPackScreen.tsx:743 9821 + #: src/screens/StarterPack/StarterPackScreen.tsx:746 9492 9822 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." 9493 9823 msgstr "" 9494 9824 9495 - #: src/components/ContextMenu/index.tsx:434 9825 + #: src/components/ContextMenu/index.tsx:435 9496 9826 msgid "The subject of the context menu" 9497 9827 msgstr "" 9498 9828 ··· 9514 9844 msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." 9515 9845 msgstr "" 9516 9846 9517 - #: src/screens/Settings/AppearanceSettings.tsx:139 9847 + #: src/screens/Settings/AppearanceSettings.tsx:232 9518 9848 msgid "Theme" 9519 9849 msgstr "" 9520 9850 ··· 9530 9860 msgid "There was a problem with your internet connection, please try again" 9531 9861 msgstr "" 9532 9862 9533 - #: src/components/dialogs/GifSelect.tsx:214 9863 + #: src/components/dialogs/GifSelect.tsx:217 9534 9864 msgid "There was an issue connecting to Tenor." 9535 9865 msgstr "" 9536 9866 9537 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:178 9538 - #: src/screens/ProfileList/components/Header.tsx:88 9539 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:76 9867 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:180 9868 + #: src/screens/ProfileList/components/Header.tsx:91 9869 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 9540 9870 #: src/screens/SavedFeeds.tsx:97 9541 9871 msgid "There was an issue contacting the server" 9542 9872 msgstr "" 9543 9873 9544 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:419 9545 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:98 9874 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:423 9875 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 9546 9876 msgid "There was an issue contacting the server, please check your internet connection and try again." 9547 9877 msgstr "" 9548 9878 9549 - #: src/view/com/notifications/NotificationFeed.tsx:133 9879 + #: src/view/com/notifications/NotificationFeed.tsx:135 9550 9880 msgid "There was an issue fetching notifications. Tap here to try again." 9551 9881 msgstr "" 9552 9882 9553 9883 #: src/screens/Search/Explore.tsx:999 9554 - #: src/view/com/posts/PostFeed.tsx:758 9884 + #: src/view/com/posts/PostFeed.tsx:869 9555 9885 msgid "There was an issue fetching posts. Tap here to try again." 9556 9886 msgstr "" 9557 9887 ··· 9568 9898 msgid "There was an issue fetching your lists. Tap here to try again." 9569 9899 msgstr "" 9570 9900 9571 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:107 9901 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:109 9572 9902 msgid "There was an issue fetching your service info" 9573 9903 msgstr "" 9574 9904 ··· 9576 9906 msgid "There was an issue removing this feed. Please check your internet connection and try again." 9577 9907 msgstr "" 9578 9908 9579 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:138 9909 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:140 9580 9910 #: src/view/com/posts/FeedShutdownMsg.tsx:52 9581 9911 #: src/view/com/posts/FeedShutdownMsg.tsx:71 9582 9912 msgid "There was an issue updating your feeds, please check your internet connection and try again." 9583 9913 msgstr "" 9584 9914 9585 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:423 9586 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:436 9587 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:446 9588 - #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:104 9589 - #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:115 9590 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 9591 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:253 9592 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:279 9593 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:294 9594 - #: src/view/com/profile/ProfileMenu.tsx:151 9595 - #: src/view/com/profile/ProfileMenu.tsx:161 9596 - #: src/view/com/profile/ProfileMenu.tsx:175 9597 - #: src/view/com/profile/ProfileMenu.tsx:185 9598 - #: src/view/com/profile/ProfileMenu.tsx:198 9599 - #: src/view/com/profile/ProfileMenu.tsx:210 9915 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:653 9916 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:666 9917 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:676 9918 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:107 9919 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:118 9920 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 9921 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:258 9922 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:284 9923 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 9924 + #: src/view/com/profile/ProfileMenu.tsx:166 9925 + #: src/view/com/profile/ProfileMenu.tsx:176 9926 + #: src/view/com/profile/ProfileMenu.tsx:190 9927 + #: src/view/com/profile/ProfileMenu.tsx:200 9928 + #: src/view/com/profile/ProfileMenu.tsx:213 9929 + #: src/view/com/profile/ProfileMenu.tsx:225 9600 9930 msgid "There was an issue! {0}" 9601 9931 msgstr "" 9602 9932 ··· 9604 9934 #: src/screens/List/ListHiddenScreen.tsx:63 9605 9935 #: src/screens/List/ListHiddenScreen.tsx:77 9606 9936 #: src/screens/List/ListHiddenScreen.tsx:99 9607 - #: src/screens/ProfileList/components/Header.tsx:107 9608 - #: src/screens/ProfileList/components/Header.tsx:125 9609 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:122 9610 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:140 9611 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:40 9612 - #: src/screens/ProfileList/components/SubscribeMenu.tsx:59 9937 + #: src/screens/ProfileList/components/Header.tsx:110 9938 + #: src/screens/ProfileList/components/Header.tsx:128 9939 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:125 9940 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143 9941 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:43 9942 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:62 9613 9943 msgid "There was an issue. Please check your internet connection and try again." 9614 9944 msgstr "" 9615 9945 9616 - #: src/components/dialogs/GifSelect.tsx:258 9617 - #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:325 9946 + #: src/components/dialogs/GifSelect.tsx:261 9947 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:328 9618 9948 #: src/view/com/util/ErrorBoundary.tsx:59 9619 9949 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" 9620 9950 msgstr "" ··· 9627 9957 msgid "These are your default settings" 9628 9958 msgstr "" 9629 9959 9960 + #: src/screens/Settings/DeerSettings.tsx:821 9961 + msgid "These settings might summon nasal demons! Restart the app after changing if anything breaks." 9962 + msgstr "" 9963 + 9630 9964 #: src/screens/Settings/FollowingFeedPreferences.tsx:65 9631 9965 msgid "These settings only apply to the Following feed." 9632 9966 msgstr "" 9633 9967 9634 - #: src/components/moderation/ScreenHider.tsx:117 9968 + #: src/components/moderation/ScreenHider.tsx:120 9635 9969 msgid "This {screenDescription} has been flagged:" 9636 9970 msgstr "" 9637 9971 9638 - #: src/components/verification/VerificationsDialog.tsx:87 9972 + #: src/components/verification/VerificationsDialog.tsx:88 9639 9973 msgid "This account has a checkmark because it's been verified by trusted sources." 9640 9974 msgstr "" 9641 9975 9642 - #: src/components/verification/VerificationsDialog.tsx:92 9976 + #: src/components/verification/VerificationsDialog.tsx:93 9643 9977 msgid "This account has one or more attempted verifications, but it is not currently verified." 9644 9978 msgstr "" 9645 9979 9646 - #: src/components/moderation/ScreenHider.tsx:112 9980 + #: src/components/moderation/ScreenHider.tsx:115 9647 9981 msgid "This account has requested that users sign in to view their profile." 9648 9982 msgstr "" 9649 9983 ··· 9702 10036 msgid "This content is not viewable without a Bluesky account." 9703 10037 msgstr "" 9704 10038 9705 - #: src/screens/Messages/components/ChatListItem.tsx:365 10039 + #: src/screens/Messages/components/ChatListItem.tsx:369 9706 10040 msgid "This conversation is with a deleted or a deactivated account. Press for options" 9707 10041 msgstr "" 9708 10042 ··· 9744 10078 msgid "This feed is no longer online. We are showing <0>Discover</0> instead." 9745 10079 msgstr "" 9746 10080 9747 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:609 10081 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 9748 10082 msgid "This handle is reserved. Please try a different one." 9749 10083 msgstr "" 9750 10084 ··· 9793 10127 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." 9794 10128 msgstr "" 9795 10129 9796 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:681 10130 + #: src/screens/Settings/DeerSettings.tsx:670 10131 + msgid "" 10132 + "This only gets rid of the reminder on app launch, useful if your PDS does not have email verification setup.\n" 10133 + "This does NOT give access to features locked behind email verification." 10134 + msgstr "" 10135 + 10136 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:700 9797 10137 msgid "This post claims to have been created on <0>{0}</0>, but was first seen by Bluesky on <1>{1}</1>." 9798 10138 msgstr "" 9799 10139 ··· 9801 10141 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." 9802 10142 msgstr "" 9803 10143 9804 - #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 10144 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:227 9805 10145 msgid "This post is only visible to logged-in users." 9806 10146 msgstr "" 9807 10147 ··· 9809 10149 msgid "This post was deleted by its author" 9810 10150 msgstr "" 9811 10151 9812 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:770 10152 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1047 9813 10153 msgid "This post will be hidden from feeds and threads. This cannot be undone." 9814 10154 msgstr "" 9815 10155 9816 - #: src/view/com/composer/Composer.tsx:514 10156 + #: src/view/com/composer/Composer.tsx:516 9817 10157 msgid "This post's author has disabled quote posts." 9818 10158 msgstr "" 9819 10159 9820 - #: src/view/com/profile/ProfileMenu.tsx:559 10160 + #: src/view/com/profile/ProfileMenu.tsx:638 9821 10161 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." 9822 10162 msgstr "" 9823 10163 9824 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:805 10164 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1082 9825 10165 msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." 9826 10166 msgstr "" 9827 10167 ··· 9833 10173 msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." 9834 10174 msgstr "" 9835 10175 9836 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:467 10176 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:469 9837 10177 msgid "This should create a domain record at:" 9838 10178 msgstr "" 9839 10179 ··· 9878 10218 msgid "This user isn't following anyone." 9879 10219 msgstr "" 9880 10220 9881 - #: src/components/dialogs/MutedWords.tsx:440 10221 + #: src/components/dialogs/MutedWords.tsx:443 9882 10222 msgid "This will delete \"{0}\" from your muted words. You can always add it back later." 9883 10223 msgstr "" 9884 10224 9885 - #: src/screens/Settings/Settings.tsx:678 10225 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 10226 + msgid "This will delete the original post and open the composer with its content." 10227 + msgstr "" 10228 + 10229 + #: src/screens/Settings/Settings.tsx:688 9886 10230 msgid "This will remove @{0} from the quick access list." 9887 10231 msgstr "" 9888 10232 9889 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:795 10233 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1072 9890 10234 msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." 9891 10235 msgstr "" 9892 10236 9893 - #: src/screens/PostThread/components/HeaderDropdown.tsx:23 9894 - #: src/screens/PostThread/components/HeaderDropdown.tsx:26 10237 + #: src/screens/PostThread/components/HeaderDropdown.tsx:27 10238 + #: src/screens/PostThread/components/HeaderDropdown.tsx:30 9895 10239 msgid "Thread options" 9896 10240 msgstr "" 9897 10241 ··· 9904 10248 msgid "Thread Preferences" 9905 10249 msgstr "" 9906 10250 9907 - #: src/screens/PostThread/components/HeaderDropdown.tsx:57 9908 - #: src/screens/PostThread/components/HeaderDropdown.tsx:62 10251 + #: src/screens/PostThread/components/HeaderDropdown.tsx:61 10252 + #: src/screens/PostThread/components/HeaderDropdown.tsx:66 9909 10253 msgid "Threaded" 9910 10254 msgstr "" 9911 10255 9912 - #: src/Navigation.tsx:371 10256 + #: src/Navigation.tsx:392 9913 10257 msgid "Threads Preferences" 9914 10258 msgstr "" 9915 10259 ··· 9946 10290 msgid "Toggle to enable or disable adult content" 9947 10291 msgstr "" 9948 10292 9949 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 10293 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 9950 10294 msgid "Toggles the sound" 9951 10295 msgstr "" 9952 10296 ··· 9962 10306 msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends" 9963 10307 msgstr "" 9964 10308 9965 - #: src/screens/Hashtag.tsx:100 10309 + #: src/screens/Hashtag.tsx:103 9966 10310 #: src/screens/Search/SearchResults.tsx:52 9967 - #: src/screens/Topic.tsx:72 10311 + #: src/screens/Topic.tsx:75 9968 10312 msgid "Top" 9969 10313 msgstr "" 9970 10314 9971 - #: src/screens/PostThread/components/HeaderDropdown.tsx:73 9972 - #: src/screens/PostThread/components/HeaderDropdown.tsx:78 10315 + #: src/screens/PostThread/components/HeaderDropdown.tsx:77 10316 + #: src/screens/PostThread/components/HeaderDropdown.tsx:82 9973 10317 #: src/screens/Settings/ThreadPreferences.tsx:56 9974 10318 #: src/screens/Settings/ThreadPreferences.tsx:59 9975 10319 msgid "Top replies first" 9976 10320 msgstr "" 9977 10321 9978 - #: src/Navigation.tsx:554 10322 + #: src/Navigation.tsx:583 9979 10323 msgid "Topic" 9980 10324 msgstr "" 9981 10325 9982 10326 #: src/components/dms/MessageContextMenu.tsx:139 9983 10327 #: src/components/dms/MessageContextMenu.tsx:141 9984 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:502 9985 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:504 9986 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 9987 - #: src/screens/PostThread/components/ThreadItemAnchor.tsx:606 10328 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:779 10329 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 10330 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:621 10331 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:624 9988 10332 msgid "Translate" 9989 10333 msgstr "" 9990 10334 ··· 9993 10337 msgid "Tree view" 9994 10338 msgstr "" 9995 10339 9996 - #: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 10340 + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:51 9997 10341 msgid "Trending" 9998 10342 msgstr "" 9999 10343 10000 - #: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 10344 + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:58 10001 10345 msgid "Trending options" 10002 10346 msgstr "" 10003 10347 10004 - #: src/components/interstitials/TrendingVideos.tsx:86 10348 + #: src/components/interstitials/TrendingVideos.tsx:87 10005 10349 msgid "Trending Videos" 10006 10350 msgstr "" 10007 10351 ··· 10009 10353 msgid "Trolling" 10010 10354 msgstr "" 10011 10355 10012 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:138 10356 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:141 10013 10357 msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers</0>: organizations that can directly issue verification." 10014 10358 msgstr "" 10015 10359 10016 - #: src/screens/Search/SearchResults.tsx:176 10360 + #: src/view/com/profile/ProfileMenu.tsx:420 10361 + #: src/view/com/profile/ProfileMenu.tsx:423 10362 + msgid "Trust verifier" 10363 + msgstr "" 10364 + 10365 + #: src/screens/Settings/DeerSettings.tsx:238 10366 + #: src/screens/Settings/DeerSettings.tsx:241 10367 + #: src/screens/Settings/DeerSettings.tsx:483 10368 + msgid "Trusted Verifiers" 10369 + msgstr "" 10370 + 10371 + #: src/screens/Search/SearchResults.tsx:178 10017 10372 msgctxt "english-only-resource" 10018 10373 msgid "Try a different search term, or <0>read about how to use search filters</0>." 10019 10374 msgstr "" 10020 10375 10021 - #: src/view/com/util/error/ErrorScreen.tsx:103 10376 + #: src/view/com/util/error/ErrorScreen.tsx:105 10022 10377 msgctxt "action" 10023 10378 msgid "Try again" 10024 10379 msgstr "" ··· 10027 10382 msgid "TV" 10028 10383 msgstr "" 10029 10384 10385 + #: src/screens/Settings/DeerSettings.tsx:514 10386 + msgid "Tweaks" 10387 + msgstr "" 10388 + 10030 10389 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:64 10031 10390 msgid "Two-factor authentication (2FA)" 10032 10391 msgstr "" 10033 10392 10034 - #: src/screens/Messages/components/MessageInput.tsx:153 10393 + #: src/screens/Messages/components/MessageInput.tsx:156 10035 10394 msgid "Type your message here" 10036 10395 msgstr "" 10037 10396 10038 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:443 10397 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:445 10039 10398 msgid "Type:" 10040 10399 msgstr "" 10041 10400 ··· 10054 10413 msgstr "" 10055 10414 10056 10415 #: src/screens/Login/ForgotPasswordForm.tsx:68 10057 - #: src/screens/Login/index.tsx:93 10058 - #: src/screens/Login/LoginForm.tsx:169 10416 + #: src/screens/Login/index.tsx:98 10417 + #: src/screens/Login/LoginForm.tsx:178 10059 10418 #: src/screens/Login/SetNewPasswordForm.tsx:81 10060 - #: src/screens/Signup/index.tsx:77 10419 + #: src/screens/Signup/index.tsx:83 10061 10420 msgid "Unable to contact your service. Please check your Internet connection." 10062 10421 msgstr "" 10063 10422 10064 - #: src/screens/StarterPack/StarterPackScreen.tsx:675 10423 + #: src/screens/StarterPack/StarterPackScreen.tsx:678 10065 10424 msgid "Unable to delete" 10066 10425 msgstr "" 10067 10426 10068 - #: src/screens/Settings/Settings.tsx:525 10427 + #: src/screens/Settings/Settings.tsx:533 10069 10428 msgid "Unapply Pull Request" 10070 10429 msgstr "" 10071 10430 10072 - #: src/screens/Settings/Settings.tsx:527 10431 + #: src/screens/Settings/Settings.tsx:535 10073 10432 msgid "Unapply Pull Request {currentChannel}" 10074 10433 msgstr "" 10075 10434 ··· 10085 10444 #: src/components/dms/MessagesListBlockedFooter.tsx:104 10086 10445 #: src/components/dms/MessagesListBlockedFooter.tsx:112 10087 10446 #: src/components/dms/MessagesListBlockedFooter.tsx:119 10088 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 10089 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:334 10090 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:394 10091 - #: src/screens/ProfileList/components/Header.tsx:171 10092 - #: src/screens/ProfileList/components/Header.tsx:178 10093 - #: src/view/com/profile/ProfileMenu.tsx:550 10447 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 10448 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:339 10449 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:403 10450 + #: src/screens/ProfileList/components/Header.tsx:174 10451 + #: src/screens/ProfileList/components/Header.tsx:181 10452 + #: src/view/com/profile/ProfileMenu.tsx:629 10094 10453 msgid "Unblock" 10095 10454 msgstr "" 10096 10455 10097 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:338 10456 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:343 10098 10457 msgctxt "action" 10099 10458 msgid "Unblock" 10100 10459 msgstr "" 10101 10460 10102 - #: src/components/dms/ConvoMenu.tsx:261 10103 10461 #: src/components/dms/ConvoMenu.tsx:264 10104 - #: src/view/com/profile/ProfileMenu.tsx:455 10105 - #: src/view/com/profile/ProfileMenu.tsx:461 10462 + #: src/components/dms/ConvoMenu.tsx:267 10463 + #: src/view/com/profile/ProfileMenu.tsx:534 10464 + #: src/view/com/profile/ProfileMenu.tsx:540 10106 10465 msgid "Unblock account" 10107 10466 msgstr "" 10108 10467 10109 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 10110 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 10111 - #: src/view/com/profile/ProfileMenu.tsx:532 10468 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 10469 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:398 10470 + #: src/view/com/profile/ProfileMenu.tsx:611 10112 10471 msgid "Unblock Account?" 10113 10472 msgstr "" 10114 10473 10115 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:247 10116 10474 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:250 10475 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:253 10117 10476 msgid "Unblock list" 10118 10477 msgstr "" 10119 10478 ··· 10137 10496 msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" 10138 10497 msgstr "" 10139 10498 10140 - #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 10499 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:370 10141 10500 msgid "Unfollow {0}" 10142 10501 msgstr "" 10143 10502 10144 - #: src/view/com/profile/ProfileMenu.tsx:311 10145 - #: src/view/com/profile/ProfileMenu.tsx:321 10503 + #: src/view/com/profile/ProfileMenu.tsx:361 10504 + #: src/view/com/profile/ProfileMenu.tsx:374 10146 10505 msgid "Unfollow account" 10147 10506 msgstr "" 10148 10507 10149 - #: src/screens/VideoFeed/index.tsx:860 10508 + #: src/screens/VideoFeed/index.tsx:861 10150 10509 msgid "Unfollows the user" 10151 10510 msgstr "" 10152 10511 10153 - #: src/components/moderation/ReportDialog/index.tsx:484 10512 + #: src/components/moderation/ReportDialog/index.tsx:487 10154 10513 msgid "Unfortunately, none of your subscribed labelers supports this report type." 10155 10514 msgstr "" 10156 10515 ··· 10162 10521 msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." 10163 10522 msgstr "" 10164 10523 10165 - #: src/components/verification/VerificationsDialog.tsx:211 10524 + #: src/components/verification/VerificationsDialog.tsx:214 10166 10525 msgid "Unknown verifier" 10167 10526 msgstr "" 10168 10527 ··· 10174 10533 msgid "Unlabeled, abusive, or non-consensual adult content" 10175 10534 msgstr "" 10176 10535 10177 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:515 10536 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:519 10178 10537 msgid "Unlike" 10179 10538 msgstr "" 10180 10539 10181 10540 #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun 10182 - #: src/components/PostControls/index.tsx:276 10541 + #: src/components/PostControls/index.tsx:290 10183 10542 msgid "Unlike ({0, plural, one {# like} other {# likes}})" 10184 10543 msgstr "" 10185 10544 10186 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:152 10545 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 10187 10546 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 10188 10547 msgctxt "video" 10189 10548 msgid "Unmute" 10190 10549 msgstr "" 10191 10550 10192 - #: src/screens/ProfileList/components/Header.tsx:185 10193 - #: src/screens/ProfileList/components/Header.tsx:192 10551 + #: src/screens/ProfileList/components/Header.tsx:188 10552 + #: src/screens/ProfileList/components/Header.tsx:195 10194 10553 msgid "Unmute" 10195 10554 msgstr "" 10196 10555 ··· 10199 10558 msgid "Unmute {tag}" 10200 10559 msgstr "" 10201 10560 10202 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:685 10203 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 10204 - #: src/view/com/profile/ProfileMenu.tsx:434 10205 - #: src/view/com/profile/ProfileMenu.tsx:440 10561 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:962 10562 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:968 10563 + #: src/view/com/profile/ProfileMenu.tsx:513 10564 + #: src/view/com/profile/ProfileMenu.tsx:519 10206 10565 msgid "Unmute account" 10207 10566 msgstr "" 10208 10567 10209 - #: src/components/dms/ConvoMenu.tsx:250 10568 + #: src/components/dms/ConvoMenu.tsx:253 10210 10569 msgid "Unmute conversation" 10211 10570 msgstr "" 10212 10571 10213 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:257 10214 10572 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:260 10573 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:263 10215 10574 msgid "Unmute list" 10216 10575 msgstr "" 10217 10576 10218 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:570 10219 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:574 10577 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:847 10578 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 10220 10579 msgid "Unmute thread" 10221 10580 msgstr "" 10222 10581 ··· 10224 10583 msgid "Unmute video" 10225 10584 msgstr "" 10226 10585 10227 - #: src/screens/ProfileList/components/Header.tsx:156 10228 - #: src/screens/ProfileList/components/Header.tsx:163 10586 + #: src/screens/ProfileList/components/Header.tsx:159 10587 + #: src/screens/ProfileList/components/Header.tsx:166 10229 10588 msgid "Unpin" 10230 10589 msgstr "" 10231 10590 10232 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:520 10233 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:527 10591 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:524 10592 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:531 10234 10593 #: src/screens/SavedFeeds.tsx:351 10235 10594 msgid "Unpin feed" 10236 10595 msgstr "" ··· 10239 10598 msgid "Unpin Feed" 10240 10599 msgstr "" 10241 10600 10242 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:311 10243 10601 #: src/screens/Profile/components/ProfileFeedHeader.tsx:313 10602 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:315 10244 10603 msgid "Unpin from home" 10245 10604 msgstr "" 10246 10605 10247 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:477 10248 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:484 10606 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 10607 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:724 10249 10608 msgid "Unpin from profile" 10250 10609 msgstr "" 10251 10610 10252 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:230 10253 10611 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:233 10612 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:236 10254 10613 msgid "Unpin moderation list" 10255 10614 msgstr "" 10256 10615 10257 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:163 10616 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:165 10258 10617 msgid "Unpinned {0} from Home" 10259 10618 msgstr "" 10260 10619 10261 - #: src/screens/ProfileList/components/Header.tsx:75 10620 + #: src/screens/ProfileList/components/Header.tsx:78 10262 10621 msgid "Unpinned from your feeds" 10263 10622 msgstr "" 10264 10623 10265 - #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:102 10624 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:105 10266 10625 msgid "Unpinned list" 10267 10626 msgstr "" 10268 10627 10269 - #: src/screens/Settings/Settings.tsx:492 10270 - #: src/screens/Settings/Settings.tsx:494 10628 + #: src/screens/Settings/Settings.tsx:500 10629 + #: src/screens/Settings/Settings.tsx:502 10271 10630 msgid "Unsnooze email reminder" 10272 10631 msgstr "" 10273 10632 10274 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:341 10633 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344 10275 10634 msgid "Unsubscribe" 10276 10635 msgstr "" 10277 10636 ··· 10280 10639 msgid "Unsubscribe from list" 10281 10640 msgstr "" 10282 10641 10283 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308 10642 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311 10284 10643 msgid "Unsubscribe from this labeler" 10285 10644 msgstr "" 10286 10645 ··· 10288 10647 msgid "Unsubscribed from list" 10289 10648 msgstr "" 10290 10649 10291 - #: src/view/com/composer/Composer.tsx:897 10650 + #: src/view/com/composer/Composer.tsx:903 10292 10651 msgid "Unsupported video type: {mimeType}" 10293 10652 msgstr "" 10294 10653 ··· 10297 10656 msgid "Update" 10298 10657 msgstr "" 10299 10658 10300 - #: src/view/com/modals/UserAddRemoveLists.tsx:82 10659 + #: src/view/com/modals/UserAddRemoveLists.tsx:83 10301 10660 msgid "Update <0>{displayName}</0> in Lists" 10302 10661 msgstr "" 10303 10662 ··· 10308 10667 msgid "Update email" 10309 10668 msgstr "" 10310 10669 10311 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:542 10312 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:563 10670 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:544 10671 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:565 10313 10672 msgid "Update to {domain}" 10314 10673 msgstr "" 10315 10674 ··· 10317 10676 msgid "Update your email" 10318 10677 msgstr "" 10319 10678 10320 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:344 10679 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 10321 10680 msgctxt "toast" 10322 10681 msgid "Updating quote attachment failed" 10323 10682 msgstr "" 10324 10683 10325 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:396 10684 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 10326 10685 msgctxt "toast" 10327 10686 msgid "Updating reply visibility failed" 10328 10687 msgstr "" ··· 10335 10694 msgid "Upload a photo instead" 10336 10695 msgstr "" 10337 10696 10338 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:483 10697 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:485 10339 10698 msgid "Upload a text file to:" 10340 10699 msgstr "" 10341 10700 10342 - #: src/view/com/util/UserAvatar.tsx:469 10343 - #: src/view/com/util/UserAvatar.tsx:472 10344 - #: src/view/com/util/UserBanner.tsx:159 10345 - #: src/view/com/util/UserBanner.tsx:162 10701 + #: src/view/com/util/UserAvatar.tsx:505 10702 + #: src/view/com/util/UserAvatar.tsx:508 10703 + #: src/view/com/util/UserBanner.tsx:169 10704 + #: src/view/com/util/UserBanner.tsx:172 10346 10705 msgid "Upload from Camera" 10347 10706 msgstr "" 10348 10707 10349 - #: src/view/com/util/UserAvatar.tsx:486 10350 - #: src/view/com/util/UserBanner.tsx:176 10708 + #: src/view/com/util/UserAvatar.tsx:522 10709 + #: src/view/com/util/UserBanner.tsx:186 10351 10710 msgid "Upload from Files" 10352 10711 msgstr "" 10353 10712 10354 - #: src/view/com/util/UserAvatar.tsx:480 10355 - #: src/view/com/util/UserAvatar.tsx:484 10356 - #: src/view/com/util/UserBanner.tsx:170 10357 - #: src/view/com/util/UserBanner.tsx:174 10713 + #: src/view/com/util/UserAvatar.tsx:516 10714 + #: src/view/com/util/UserAvatar.tsx:520 10715 + #: src/view/com/util/UserBanner.tsx:180 10716 + #: src/view/com/util/UserBanner.tsx:184 10358 10717 msgid "Upload from Library" 10359 10718 msgstr "" 10360 10719 10361 - #: src/lib/api/index.ts:302 10720 + #: src/lib/api/index.ts:328 10362 10721 msgid "Uploading images..." 10363 10722 msgstr "" 10364 10723 10365 - #: src/lib/api/index.ts:368 10366 - #: src/lib/api/index.ts:392 10724 + #: src/lib/api/index.ts:414 10725 + #: src/lib/api/index.ts:438 10367 10726 msgid "Uploading link thumbnail..." 10368 10727 msgstr "" 10369 10728 10370 - #: src/view/com/composer/Composer.tsx:1894 10729 + #: src/view/com/composer/Composer.tsx:1927 10371 10730 msgid "Uploading video..." 10372 10731 msgstr "" 10373 10732 ··· 10375 10734 msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." 10376 10735 msgstr "" 10377 10736 10378 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:574 10737 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:576 10379 10738 msgid "Use default provider" 10380 10739 msgstr "" 10381 10740 ··· 10436 10795 msgid "User Blocks You" 10437 10796 msgstr "" 10438 10797 10439 - #: src/view/com/modals/UserAddRemoveLists.tsx:214 10798 + #: src/view/com/modals/UserAddRemoveLists.tsx:216 10440 10799 msgid "User list by {0}" 10441 10800 msgstr "" 10442 10801 10443 - #: src/view/com/modals/UserAddRemoveLists.tsx:212 10802 + #: src/view/com/modals/UserAddRemoveLists.tsx:214 10444 10803 msgid "User list by you" 10445 10804 msgstr "" 10446 10805 10447 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:238 10806 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:241 10448 10807 msgctxt "toast" 10449 10808 msgid "User list created" 10450 10809 msgstr "" 10451 10810 10452 - #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:224 10811 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:227 10453 10812 msgctxt "toast" 10454 10813 msgid "User list updated" 10455 10814 msgstr "" ··· 10466 10825 msgid "Username must only contain letters (a-z), numbers, and hyphens" 10467 10826 msgstr "" 10468 10827 10469 - #: src/screens/Login/LoginForm.tsx:202 10828 + #: src/screens/Login/LoginForm.tsx:218 10470 10829 msgid "Username or email address" 10471 10830 msgstr "" 10472 10831 ··· 10483 10842 msgid "Users I follow" 10484 10843 msgstr "" 10485 10844 10486 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:449 10845 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:451 10487 10846 msgid "Value:" 10488 10847 msgstr "" 10489 10848 10849 + #: src/screens/Settings/DeerSettings.tsx:447 10850 + msgid "Verification" 10851 + msgstr "" 10852 + 10490 10853 #: src/components/verification/VerificationCreatePrompt.tsx:39 10491 10854 msgid "Verification failed, please try again." 10492 10855 msgstr "" ··· 10495 10858 msgid "Verification settings" 10496 10859 msgstr "" 10497 10860 10498 - #: src/Navigation.tsx:208 10861 + #: src/Navigation.tsx:229 10499 10862 #: src/screens/Moderation/VerificationSettings.tsx:32 10500 10863 msgid "Verification Settings" 10501 10864 msgstr "" ··· 10504 10867 msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.</0>" 10505 10868 msgstr "" 10506 10869 10507 - #: src/components/verification/VerificationsDialog.tsx:103 10870 + #: src/components/verification/VerificationsDialog.tsx:104 10508 10871 msgid "Verified by:" 10509 10872 msgstr "" 10510 10873 10511 10874 #: src/components/verification/VerificationCreatePrompt.tsx:84 10512 10875 #: src/components/verification/VerificationCreatePrompt.tsx:86 10513 - #: src/view/com/profile/ProfileMenu.tsx:418 10514 - #: src/view/com/profile/ProfileMenu.tsx:421 10876 + #: src/view/com/profile/ProfileMenu.tsx:497 10877 + #: src/view/com/profile/ProfileMenu.tsx:500 10515 10878 msgid "Verify account" 10516 10879 msgstr "" 10517 10880 ··· 10528 10891 msgid "Verify code" 10529 10892 msgstr "" 10530 10893 10531 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:544 10532 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:565 10894 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:546 10895 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:567 10533 10896 msgid "Verify DNS Record" 10534 10897 msgstr "" 10535 10898 ··· 10554 10917 msgid "Verify phone number" 10555 10918 msgstr "" 10556 10919 10557 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:545 10558 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:567 10920 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:547 10921 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:569 10559 10922 msgid "Verify Text File" 10560 10923 msgstr "" 10561 10924 ··· 10573 10936 msgid "Verify your email" 10574 10937 msgstr "" 10575 10938 10576 - #: src/ageAssurance/components/RedirectOverlay.tsx:296 10939 + #: src/ageAssurance/components/RedirectOverlay.tsx:300 10577 10940 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207 10578 10941 msgid "Verifying" 10579 10942 msgstr "" 10580 10943 10581 - #: src/ageAssurance/components/RedirectOverlay.tsx:165 10944 + #: src/ageAssurance/components/RedirectOverlay.tsx:169 10582 10945 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 10583 10946 msgid "Verifying your age assurance status" 10584 10947 msgstr "" ··· 10587 10950 msgid "Verifying..." 10588 10951 msgstr "" 10589 10952 10590 - #: src/screens/Settings/AboutSettings.tsx:126 10591 - #: src/screens/Settings/AboutSettings.tsx:155 10953 + #: src/screens/Settings/AboutSettings.tsx:124 10954 + #: src/screens/Settings/AboutSettings.tsx:153 10592 10955 msgid "Version {0}" 10593 10956 msgstr "" 10594 10957 10595 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 10596 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 10958 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:82 10959 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 10597 10960 msgid "Video" 10598 10961 msgstr "" 10599 10962 10600 - #: src/view/com/composer/state/video.ts:357 10963 + #: src/view/com/composer/state/video.ts:393 10601 10964 msgid "Video failed to process" 10602 10965 msgstr "" 10603 10966 10604 - #: src/Navigation.tsx:610 10967 + #: src/Navigation.tsx:639 10605 10968 msgid "Video Feed" 10606 10969 msgstr "" 10607 10970 ··· 10610 10973 msgstr "" 10611 10974 10612 10975 #: src/lib/interests.ts:62 10613 - #: src/screens/Search/modules/ExploreTrendingTopics.tsx:234 10976 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:238 10614 10977 msgid "Video Games" 10615 10978 msgstr "" 10616 10979 10617 - #: src/screens/VideoFeed/index.tsx:1115 10980 + #: src/screens/VideoFeed/index.tsx:1116 10618 10981 msgid "Video is paused" 10619 10982 msgstr "" 10620 10983 10621 - #: src/screens/VideoFeed/index.tsx:1115 10984 + #: src/screens/VideoFeed/index.tsx:1116 10622 10985 msgid "Video is playing" 10623 10986 msgstr "" 10624 10987 ··· 10626 10989 msgid "Video not found." 10627 10990 msgstr "" 10628 10991 10629 - #: src/view/com/composer/videos/SubtitleDialog.tsx:106 10992 + #: src/view/com/composer/videos/SubtitleDialog.tsx:107 10630 10993 msgid "Video settings" 10631 10994 msgstr "" 10632 10995 10633 - #: src/view/com/composer/Composer.tsx:1904 10996 + #: src/view/com/composer/Composer.tsx:1937 10634 10997 msgid "Video uploaded" 10635 10998 msgstr "" 10636 10999 10637 - #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 11000 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:82 10638 11001 msgid "Video: {0}" 10639 11002 msgstr "" 10640 11003 ··· 10642 11005 msgid "Videos" 10643 11006 msgstr "" 10644 11007 10645 - #: src/view/com/composer/SelectMediaButton.tsx:410 11008 + #: src/view/com/composer/SelectMediaButton.tsx:411 10646 11009 msgid "Videos must be less than 3 minutes long." 10647 11010 msgstr "" 10648 11011 10649 - #: src/view/com/composer/Composer.tsx:586 11012 + #: src/screens/Settings/DeerSettings.tsx:486 11013 + msgid "View" 11014 + msgstr "" 11015 + 11016 + #: src/view/com/composer/Composer.tsx:588 10650 11017 msgctxt "Action to view the post the user just created" 10651 11018 msgid "View" 10652 11019 msgstr "" 10653 11020 10654 - #: src/screens/Profile/Header/Shell.tsx:267 11021 + #: src/screens/Profile/Header/Shell.tsx:307 10655 11022 msgid "View {0}'s avatar" 10656 11023 msgstr "" 10657 11024 11025 + #: src/screens/Profile/Header/Shell.tsx:260 11026 + msgid "View {0}'s banner" 11027 + msgstr "" 11028 + 10658 11029 #: src/components/ProfileCard.tsx:142 10659 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:456 11030 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:460 10660 11031 #: src/screens/Search/components/SearchProfileCard.tsx:36 10661 - #: src/screens/VideoFeed/index.tsx:819 10662 - #: src/view/com/notifications/NotificationFeedItem.tsx:609 11032 + #: src/screens/VideoFeed/index.tsx:820 11033 + #: src/view/com/notifications/NotificationFeedItem.tsx:614 10663 11034 msgid "View {0}'s profile" 10664 11035 msgstr "" 10665 11036 ··· 10667 11038 msgid "View {displayName}'s profile" 10668 11039 msgstr "" 10669 11040 10670 - #: src/components/ProfileHoverCard/index.web.tsx:481 11041 + #: src/components/live/LiveStatusDialog.tsx:220 11042 + #: src/components/live/LiveStatusDialog.tsx:245 11043 + msgid "View avatar" 11044 + msgstr "" 11045 + 11046 + #: src/components/ProfileHoverCard/index.web.tsx:492 10671 11047 msgid "View blocked user's profile" 10672 11048 msgstr "" 10673 11049 ··· 10679 11055 msgid "View debug entry" 10680 11056 msgstr "" 10681 11057 10682 - #: src/screens/VideoFeed/index.tsx:684 10683 - #: src/screens/VideoFeed/index.tsx:702 11058 + #: src/screens/VideoFeed/index.tsx:685 11059 + #: src/screens/VideoFeed/index.tsx:703 10684 11060 msgid "View details" 10685 11061 msgstr "" 10686 11062 ··· 10692 11068 msgid "View information about these labels" 10693 11069 msgstr "" 10694 11070 10695 - #: src/components/interstitials/TrendingVideos.tsx:198 10696 - #: src/components/interstitials/TrendingVideos.tsx:220 10697 - #: src/screens/Search/modules/ExploreTrendingVideos.tsx:193 10698 - #: src/screens/Search/modules/ExploreTrendingVideos.tsx:212 11071 + #: src/components/interstitials/TrendingVideos.tsx:201 11072 + #: src/components/interstitials/TrendingVideos.tsx:223 11073 + #: src/screens/Search/modules/ExploreTrendingVideos.tsx:195 11074 + #: src/screens/Search/modules/ExploreTrendingVideos.tsx:214 10699 11075 msgid "View more" 10700 11076 msgstr "" 10701 11077 10702 - #: src/components/interstitials/TrendingVideos.tsx:226 11078 + #: src/components/interstitials/TrendingVideos.tsx:229 10703 11079 msgid "View more trending videos" 10704 11080 msgstr "" 10705 11081 10706 - #: src/view/com/composer/Composer.tsx:581 11082 + #: src/view/com/composer/Composer.tsx:583 10707 11083 msgid "View post" 10708 11084 msgstr "" 10709 11085 10710 - #: src/components/ProfileHoverCard/index.web.tsx:467 10711 - #: src/components/ProfileHoverCard/index.web.tsx:487 10712 - #: src/components/ProfileHoverCard/index.web.tsx:514 11086 + #: src/components/ProfileHoverCard/index.web.tsx:478 11087 + #: src/components/ProfileHoverCard/index.web.tsx:498 11088 + #: src/components/ProfileHoverCard/index.web.tsx:533 10713 11089 #: src/view/com/posts/PostFeedErrorMessage.tsx:182 10714 11090 #: src/view/com/util/PostMeta.tsx:90 10715 11091 #: src/view/com/util/PostMeta.tsx:127 ··· 10728 11104 msgid "View this user's verifications" 10729 11105 msgstr "" 10730 11106 10731 - #: src/screens/Profile/components/ProfileFeedHeader.tsx:486 11107 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:490 10732 11108 msgid "View users who like this feed" 10733 11109 msgstr "" 10734 11110 ··· 10761 11137 msgid "View your verifications" 10762 11138 msgstr "" 10763 11139 10764 - #: src/components/images/AutoSizedImage.tsx:206 10765 - #: src/components/images/AutoSizedImage.tsx:233 11140 + #: src/components/images/AutoSizedImage.tsx:211 11141 + #: src/components/images/AutoSizedImage.tsx:238 10766 11142 msgid "Views full image" 10767 11143 msgstr "" 10768 11144 ··· 10778 11154 msgid "Violent or threatening content" 10779 11155 msgstr "" 10780 11156 11157 + #: src/screens/Settings/DeerSettings.tsx:402 11158 + msgid "Visibility" 11159 + msgstr "" 11160 + 11161 + #: src/view/shell/Drawer.tsx:390 11162 + msgid "Visit code repository" 11163 + msgstr "" 11164 + 10781 11165 #: src/components/dialogs/LinkWarning.tsx:96 10782 11166 #: src/components/dialogs/LinkWarning.tsx:106 10783 11167 msgid "Visit site" 10784 11168 msgstr "" 10785 11169 10786 - #: src/view/screens/Notifications.tsx:303 11170 + #: src/view/screens/Notifications.tsx:306 10787 11171 msgid "Visit your notification settings" 10788 11172 msgstr "" 10789 11173 ··· 10805 11189 msgid "Warn content and filter from feeds" 10806 11190 msgstr "" 10807 11191 10808 - #: src/components/live/LiveStatusDialog.tsx:172 10809 - #: src/components/live/LiveStatusDialog.tsx:185 11192 + #: src/components/live/LiveStatusDialog.tsx:186 11193 + #: src/components/live/LiveStatusDialog.tsx:199 10810 11194 msgid "Watch now" 10811 11195 msgstr "" 10812 11196 ··· 10822 11206 msgid "We could not find this list. It was probably deleted." 10823 11207 msgstr "" 10824 11208 10825 - #: src/screens/Hashtag.tsx:271 11209 + #: src/screens/Hashtag.tsx:274 10826 11210 msgid "We couldn't find any results for that tag." 10827 11211 msgstr "" 10828 11212 10829 - #: src/screens/Topic.tsx:180 11213 + #: src/screens/Topic.tsx:183 10830 11214 msgid "We couldn't find any results for that topic." 10831 11215 msgstr "" 10832 11216 ··· 10870 11254 msgid "We ran out of posts from your follows. Here's the latest from <0/>." 10871 11255 msgstr "" 10872 11256 10873 - #: src/screens/Settings/InterestsSettings.tsx:158 11257 + #: src/screens/Settings/InterestsSettings.tsx:159 10874 11258 msgid "We recommend selecting at least two interests." 10875 11259 msgstr "" 10876 11260 ··· 10878 11262 msgid "We sent an email to <0>{0}</0> containing a link. Please click on it to complete the email verification process." 10879 11263 msgstr "" 10880 11264 10881 - #: src/view/com/composer/state/video.ts:418 11265 + #: src/view/com/composer/state/video.ts:454 10882 11266 msgid "We were unable to determine if you are allowed to upload videos. Please try again." 10883 11267 msgstr "" 10884 11268 ··· 10894 11278 msgid "We were unable to load your configured labelers at this time." 10895 11279 msgstr "" 10896 11280 10897 - #: src/ageAssurance/components/RedirectOverlay.tsx:304 11281 + #: src/ageAssurance/components/RedirectOverlay.tsx:308 10898 11282 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:215 10899 11283 msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." 10900 11284 msgstr "" ··· 10923 11307 msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." 10924 11308 msgstr "" 10925 11309 10926 - #: src/ageAssurance/components/RedirectOverlay.tsx:310 11310 + #: src/ageAssurance/components/RedirectOverlay.tsx:314 10927 11311 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 10928 11312 msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." 10929 11313 msgstr "" ··· 10932 11316 msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support</0> for assistance." 10933 11317 msgstr "" 10934 11318 10935 - #: src/components/dialogs/SearchablePeopleList.tsx:107 10936 - #: src/components/ProgressGuide/FollowDialog.tsx:189 11319 + #: src/components/dialogs/SearchablePeopleList.tsx:110 11320 + #: src/components/ProgressGuide/FollowDialog.tsx:190 10937 11321 msgid "We're having network issues, try again" 10938 11322 msgstr "" 10939 11323 10940 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 11324 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 10941 11325 msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." 10942 - msgstr "" 10943 - 10944 - #: src/screens/Signup/index.tsx:125 10945 - msgid "We're so excited to have you join us!" 10946 11326 msgstr "" 10947 11327 10948 11328 #: src/ageAssurance/components/NoAccessScreen.tsx:387 ··· 10954 11334 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." 10955 11335 msgstr "" 10956 11336 10957 - #: src/components/dialogs/MutedWords.tsx:383 11337 + #: src/components/dialogs/MutedWords.tsx:384 10958 11338 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." 10959 11339 msgstr "" 10960 11340 10961 - #: src/screens/Search/SearchResults.tsx:322 10962 - #: src/screens/Search/SearchResults.tsx:413 11341 + #: src/screens/Search/SearchResults.tsx:324 11342 + #: src/screens/Search/SearchResults.tsx:415 10963 11343 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." 10964 11344 msgstr "" 10965 11345 10966 - #: src/view/com/composer/Composer.tsx:511 11346 + #: src/view/com/composer/Composer.tsx:513 10967 11347 msgid "We're sorry! The post you are replying to has been deleted." 10968 11348 msgstr "" 10969 11349 ··· 10972 11352 msgid "We're sorry! We can't find the page you were looking for." 10973 11353 msgstr "" 10974 11354 10975 - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:216 11355 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:219 10976 11356 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." 10977 11357 msgstr "" 10978 11358 ··· 10992 11372 msgid "Weโ€™re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." 10993 11373 msgstr "" 10994 11374 10995 - #: src/ageAssurance/components/RedirectOverlay.tsx:256 11375 + #: src/ageAssurance/components/RedirectOverlay.tsx:260 10996 11376 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:163 10997 11377 msgid "We've confirmed your age assurance status. You can now close this dialog." 10998 11378 msgstr "" ··· 11001 11381 msgid "Welcome back!" 11002 11382 msgstr "" 11003 11383 11384 + #: src/screens/Signup/index.tsx:131 11385 + msgid "Welcome to the ATmosphere!" 11386 + msgstr "" 11387 + 11004 11388 #: src/components/NewskieDialog.tsx:139 11005 11389 msgid "Welcome, friend!" 11006 11390 msgstr "" ··· 11013 11397 msgid "What do you want to call your starter pack?" 11014 11398 msgstr "" 11015 11399 11016 - #: src/view/com/auth/SplashScreen.tsx:51 11400 + #: src/view/com/auth/SplashScreen.tsx:55 11017 11401 #: src/view/com/auth/SplashScreen.web.tsx:103 11018 - #: src/view/com/composer/Composer.tsx:857 11402 + #: src/view/com/composer/Composer.tsx:861 11019 11403 #: src/view/com/feeds/ComposerPrompt.tsx:189 11020 11404 msgid "What's up?" 11021 - msgstr "" 11405 + msgstr "Post yo shit! ๐Ÿ—ฃ๏ธ" 11022 11406 11023 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:146 11407 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:149 11024 11408 msgid "When you tap on a check, youโ€™ll see which organizations have granted verification." 11025 11409 msgstr "" 11026 11410 ··· 11037 11421 msgid "Who can reply" 11038 11422 msgstr "" 11039 11423 11040 - #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:127 11424 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:130 11041 11425 msgid "Who can verify?" 11042 11426 msgstr "" 11043 11427 11044 11428 #: src/screens/Home/NoFeedsPinned.tsx:79 11045 - #: src/screens/Messages/ChatList.tsx:270 11429 + #: src/screens/Messages/ChatList.tsx:271 11046 11430 #: src/screens/Messages/Inbox.tsx:198 11047 11431 msgid "Whoops!" 11048 11432 msgstr "" 11049 11433 11050 - #: src/components/interstitials/TrendingVideos.tsx:125 11051 - #: src/screens/Search/modules/ExploreTrendingVideos.tsx:107 11434 + #: src/components/interstitials/TrendingVideos.tsx:126 11435 + #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 11052 11436 msgid "Whoops! Trending videos failed to load." 11053 11437 msgstr "" 11054 11438 ··· 11088 11472 msgid "Why should this user be reviewed?" 11089 11473 msgstr "" 11090 11474 11475 + #: src/screens/Settings/AppearanceSettings.tsx:109 11476 + msgid "Witchsky" 11477 + msgstr "" 11478 + 11479 + #: src/screens/Signup/StepInfo/index.tsx:200 11480 + msgid "Witchsky is part of the <0>ATmosphere</0>โ€”the network of apps, services, and accounts built on the AT Protocol." 11481 + msgstr "" 11482 + 11091 11483 #: src/components/dms/AfterReportDialog.tsx:49 11092 11484 msgid "Would you like to block this user and/or delete this conversation?" 11093 11485 msgstr "" 11094 11486 11095 - #: src/screens/Messages/components/MessageInput.tsx:154 11096 - #: src/screens/Messages/components/MessageInput.web.tsx:214 11487 + #: src/screens/Messages/components/MessageInput.tsx:157 11488 + #: src/screens/Messages/components/MessageInput.web.tsx:217 11097 11489 msgid "Write a message" 11098 11490 msgstr "" 11099 11491 ··· 11102 11494 msgid "Write a post" 11103 11495 msgstr "" 11104 11496 11105 - #: src/view/com/composer/Composer.tsx:957 11497 + #: src/view/com/composer/Composer.tsx:963 11106 11498 msgid "Write post" 11107 11499 msgstr "" 11108 11500 11109 - #: src/screens/PostThread/components/ThreadComposePrompt.tsx:90 11110 - #: src/view/com/composer/Composer.tsx:855 11501 + #: src/screens/PostThread/components/ThreadComposePrompt.tsx:92 11502 + #: src/view/com/composer/Composer.tsx:859 11111 11503 msgid "Write your reply" 11112 11504 msgstr "" 11113 11505 ··· 11115 11507 msgid "Writers" 11116 11508 msgstr "" 11117 11509 11118 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:366 11510 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:368 11119 11511 msgid "Wrong DID returned from server. Received: {0}" 11120 11512 msgstr "" 11121 11513 ··· 11133 11525 msgid "Yes, deactivate" 11134 11526 msgstr "" 11135 11527 11136 - #: src/screens/StarterPack/StarterPackScreen.tsx:687 11528 + #: src/screens/StarterPack/StarterPackScreen.tsx:690 11137 11529 msgid "Yes, delete this starter pack" 11138 11530 msgstr "" 11139 11531 11140 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 11532 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1075 11141 11533 msgid "Yes, detach" 11142 11534 msgstr "" 11143 11535 11144 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 11536 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1085 11145 11537 msgid "Yes, hide" 11146 11538 msgstr "" 11147 11539 ··· 11153 11545 msgid "Yesterday" 11154 11546 msgstr "" 11155 11547 11156 - #: src/components/verification/VerifierDialog.tsx:59 11548 + #: src/components/verification/VerifierDialog.tsx:60 11157 11549 msgid "You are a trusted verifier" 11158 11550 msgstr "" 11159 11551 ··· 11161 11553 msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." 11162 11554 msgstr "" 11163 11555 11164 - #: src/components/forms/HostingProvider.tsx:45 11556 + #: src/components/forms/HostingProvider.tsx:47 11165 11557 msgid "You are creating an account on" 11166 11558 msgstr "" 11167 11559 ··· 11187 11579 msgid "You are no longer live" 11188 11580 msgstr "" 11189 11581 11190 - #: src/view/com/composer/state/video.ts:411 11582 + #: src/view/com/composer/state/video.ts:447 11191 11583 msgid "You are not allowed to upload videos." 11192 11584 msgstr "" 11193 11585 ··· 11199 11591 msgid "You are now live!" 11200 11592 msgstr "" 11201 11593 11202 - #: src/components/verification/VerificationsDialog.tsx:64 11594 + #: src/components/verification/VerificationsDialog.tsx:65 11203 11595 msgid "You are verified" 11204 11596 msgstr "" 11205 11597 11206 - #: src/screens/Profile/Header/EditProfileDialog.tsx:344 11598 + #: src/screens/Profile/Header/EditProfileDialog.tsx:350 11207 11599 msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.</0>" 11208 11600 msgstr "" 11209 11601 11210 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:208 11602 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:210 11211 11603 msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.</0>" 11212 11604 msgstr "" 11213 11605 11214 - #: src/screens/Search/modules/ExploreInterestsCard.tsx:45 11606 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:48 11215 11607 msgid "You can adjust your interests at any time from \"Content and media\" settings." 11216 11608 msgstr "" 11217 11609 ··· 11236 11628 msgid "You can continue ongoing conversations regardless of which setting you choose." 11237 11629 msgstr "" 11238 11630 11239 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:383 11631 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 11240 11632 msgctxt "toast" 11241 11633 msgid "You can hide a maximum of {MAX_HIDDEN_REPLIES} replies." 11242 11634 msgstr "" 11243 11635 11244 - #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 11636 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:151 11245 11637 msgid "You can now choose to be notified when specific people post. If thereโ€™s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." 11246 11638 msgstr "" 11247 11639 11248 - #: src/screens/Login/index.tsx:196 11640 + #: src/screens/Login/index.tsx:244 11249 11641 #: src/screens/Login/PasswordUpdatedForm.tsx:26 11250 11642 msgid "You can now sign in with your new password." 11251 11643 msgstr "" 11252 11644 11253 - #: src/view/com/composer/SelectMediaButton.tsx:413 11645 + #: src/view/com/composer/SelectMediaButton.tsx:414 11254 11646 msgid "You can only select one GIF at a time." 11255 11647 msgstr "" 11256 11648 11257 - #: src/view/com/composer/SelectMediaButton.tsx:407 11649 + #: src/view/com/composer/SelectMediaButton.tsx:408 11258 11650 msgid "You can only select one video at a time." 11259 11651 msgstr "" 11260 11652 ··· 11263 11655 msgstr "" 11264 11656 11265 11657 #. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. 11266 - #: src/view/com/composer/SelectMediaButton.tsx:399 11658 + #: src/view/com/composer/SelectMediaButton.tsx:400 11267 11659 msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." 11268 11660 msgstr "" 11269 11661 11270 - #: src/components/interstitials/Trending.tsx:129 11271 - #: src/components/interstitials/TrendingVideos.tsx:137 11272 - #: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 11662 + #: src/components/interstitials/Trending.tsx:132 11663 + #: src/components/interstitials/TrendingVideos.tsx:138 11664 + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:131 11273 11665 msgid "You can update this later from your settings." 11274 11666 msgstr "" 11275 11667 ··· 11278 11670 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." 11279 11671 msgstr "" 11280 11672 11281 - #: src/screens/Profile/KnownFollowers.tsx:112 11673 + #: src/screens/Profile/KnownFollowers.tsx:121 11282 11674 msgid "You don't follow any users who follow @{name}." 11283 11675 msgstr "" 11284 11676 ··· 11312 11704 msgid "You have blocked this user. You cannot view their content." 11313 11705 msgstr "" 11314 11706 11315 - #: src/view/screens/Notifications.tsx:298 11707 + #: src/view/screens/Notifications.tsx:301 11316 11708 msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings</0>." 11317 11709 msgstr "" 11318 11710 ··· 11339 11731 msgid "You have muted this user" 11340 11732 msgstr "" 11341 11733 11342 - #: src/screens/Messages/ChatList.tsx:314 11734 + #: src/screens/Messages/ChatList.tsx:315 11343 11735 msgid "You have no conversations yet. Start one!" 11344 11736 msgstr "" 11345 11737 11346 - #: src/view/com/lists/MyLists.tsx:81 11738 + #: src/view/com/lists/MyLists.tsx:83 11347 11739 msgid "You have no lists." 11348 11740 msgstr "" 11349 11741 11350 - #: src/components/dialogs/StarterPackDialog.tsx:101 11742 + #: src/components/dialogs/StarterPackDialog.tsx:102 11351 11743 msgid "You have no starter packs." 11352 11744 msgstr "" 11353 11745 ··· 11383 11775 msgid "You haven't made any custom feeds yet." 11384 11776 msgstr "" 11385 11777 11386 - #: src/components/dialogs/MutedWords.tsx:403 11778 + #: src/components/dialogs/MutedWords.tsx:404 11387 11779 msgid "You haven't muted any words or tags yet" 11388 11780 msgstr "" 11389 11781 ··· 11420 11812 msgid "You may only add up to 3 feeds" 11421 11813 msgstr "" 11422 11814 11423 - #: src/screens/Signup/StepInfo/index.tsx:322 11815 + #: src/screens/Signup/StepInfo/index.tsx:394 11424 11816 msgid "You must be {0} years of age or older to create an account in your region." 11425 11817 msgstr "" 11426 11818 11427 - #: src/screens/Signup/StepInfo/index.tsx:317 11819 + #: src/screens/Signup/StepInfo/index.tsx:389 11428 11820 msgid "You must be {MIN_ACCESS_AGE} years of age or older to create an account." 11429 11821 msgstr "" 11430 11822 ··· 11444 11836 msgid "You must grant access to your photo library to save a QR code" 11445 11837 msgstr "" 11446 11838 11447 - #: src/view/com/composer/SelectMediaButton.tsx:442 11839 + #: src/view/com/composer/SelectMediaButton.tsx:443 11448 11840 msgid "You need to allow access to your media library." 11449 11841 msgstr "" 11450 11842 ··· 11456 11848 msgid "You previously deactivated @{0}." 11457 11849 msgstr "" 11458 11850 11459 - #: src/screens/Settings/Settings.tsx:422 11851 + #: src/screens/Settings/Settings.tsx:430 11460 11852 msgid "You probably want to restart the app now." 11461 11853 msgstr "" 11462 11854 ··· 11464 11856 msgid "You reacted {0}" 11465 11857 msgstr "" 11466 11858 11467 - #: src/screens/Messages/components/ChatListItem.tsx:220 11859 + #: src/screens/Messages/components/ChatListItem.tsx:224 11468 11860 msgid "You reacted {0} to {1}" 11469 11861 msgstr "" 11470 11862 ··· 11473 11865 msgid "You recently changed your birthdate" 11474 11866 msgstr "" 11475 11867 11476 - #: src/screens/Settings/Settings.tsx:304 11477 - #: src/view/shell/desktop/LeftNav.tsx:210 11868 + #: src/screens/Settings/Settings.tsx:312 11869 + #: src/view/shell/desktop/LeftNav.tsx:213 11478 11870 msgid "You will be signed out of all your accounts." 11479 11871 msgstr "" 11480 11872 ··· 11482 11874 msgid "You will no longer receive notifications for {0}" 11483 11875 msgstr "" 11484 11876 11485 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:231 11877 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 11486 11878 msgid "You will no longer receive notifications for this thread" 11487 11879 msgstr "" 11488 11880 11489 - #: src/components/PostControls/PostMenu/PostMenuItems.tsx:221 11881 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:391 11490 11882 msgid "You will now receive notifications for this thread" 11491 11883 msgstr "" 11492 11884 ··· 11494 11886 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." 11495 11887 msgstr "" 11496 11888 11497 - #: src/screens/Messages/components/ChatListItem.tsx:156 11889 + #: src/screens/Messages/components/ChatListItem.tsx:160 11498 11890 msgid "You: {0}" 11499 11891 msgstr "" 11500 11892 11501 - #: src/screens/Messages/components/ChatListItem.tsx:185 11893 + #: src/screens/Messages/components/ChatListItem.tsx:189 11502 11894 msgid "You: {defaultEmbeddedContentMessage}" 11503 11895 msgstr "" 11504 11896 11505 - #: src/screens/Messages/components/ChatListItem.tsx:178 11897 + #: src/screens/Messages/components/ChatListItem.tsx:182 11506 11898 msgid "You: {short}" 11507 11899 msgstr "" 11508 11900 11509 - #: src/screens/Signup/index.tsx:141 11901 + #: src/screens/Signup/index.tsx:147 11510 11902 msgid "You'll follow the suggested users and feeds once you finish creating your account!" 11511 11903 msgstr "" 11512 11904 11513 - #: src/screens/Signup/index.tsx:146 11905 + #: src/screens/Signup/index.tsx:152 11514 11906 msgid "You'll follow the suggested users once you finish creating your account!" 11515 11907 msgstr "" 11516 11908 ··· 11576 11968 msgid "You've reached the start of the active content." 11577 11969 msgstr "" 11578 11970 11579 - #: src/view/com/composer/state/video.ts:422 11971 + #: src/view/com/composer/state/video.ts:458 11580 11972 msgid "You've reached your daily limit for video uploads (too many bytes)" 11581 11973 msgstr "" 11582 11974 11583 - #: src/view/com/composer/state/video.ts:426 11975 + #: src/view/com/composer/state/video.ts:462 11584 11976 msgid "You've reached your daily limit for video uploads (too many videos)" 11585 11977 msgstr "" 11586 11978 11587 - #: src/screens/VideoFeed/index.tsx:1166 11979 + #: src/screens/VideoFeed/index.tsx:1168 11588 11980 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" 11589 - msgstr "" 11590 - 11591 - #: src/screens/Signup/index.tsx:179 11592 - msgid "Your account" 11593 11981 msgstr "" 11594 11982 11595 11983 #: src/view/com/modals/DeleteAccount.tsx:84 ··· 11600 11988 msgid "Your account has been suspended" 11601 11989 msgstr "" 11602 11990 11603 - #: src/view/com/composer/state/video.ts:430 11991 + #: src/view/com/composer/state/video.ts:466 11604 11992 msgid "Your account is not yet old enough to upload videos. Please try again later." 11605 11993 msgstr "" 11606 11994 ··· 11616 12004 msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." 11617 12005 msgstr "" 11618 12006 11619 - #: src/screens/Signup/StepInfo/index.tsx:289 12007 + #: src/screens/Signup/StepInfo/index.tsx:361 11620 12008 msgid "Your birth date" 11621 12009 msgstr "" 11622 12010 ··· 11632 12020 msgid "Your choice will be remembered for future links. You can change it at any time in settings." 11633 12021 msgstr "" 11634 12022 11635 - #: src/view/com/notifications/NotificationFeedItem.tsx:374 12023 + #: src/view/com/notifications/NotificationFeedItem.tsx:376 11636 12024 msgid "Your contact {firstAuthorLink} is on Bluesky" 11637 12025 msgstr "" 11638 12026 11639 - #: src/view/com/notifications/NotificationFeedItem.tsx:372 12027 + #: src/view/com/notifications/NotificationFeedItem.tsx:374 11640 12028 msgid "Your contact {firstAuthorName} is on Bluesky" 11641 12029 msgstr "" 11642 12030 ··· 11644 12032 msgid "Your contact {name}" 11645 12033 msgstr "" 11646 12034 11647 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:529 12035 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:531 11648 12036 msgid "Your current handle <0>{0}</0> will automatically remain reserved for you. You can switch back to it at any time from this account." 11649 12037 msgstr "" 11650 12038 ··· 11661 12049 #: src/screens/Login/ForgotPasswordForm.tsx:51 11662 12050 #: src/screens/Settings/components/ChangePasswordDialog.tsx:81 11663 12051 #: src/screens/Signup/state.ts:273 11664 - #: src/screens/Signup/StepInfo/index.tsx:129 12052 + #: src/screens/Signup/StepInfo/index.tsx:146 11665 12053 msgid "Your email appears to be invalid." 11666 12054 msgstr "" 11667 12055 11668 - #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:65 11669 - msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." 12056 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:70 12057 + msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Witchsky." 11670 12058 msgstr "" 11671 12059 11672 12060 #: src/state/shell/progress-guide.tsx:215 ··· 11681 12069 msgid "Your following feed is empty! Follow more users to see what's happening." 11682 12070 msgstr "" 11683 12071 11684 - #: src/screens/Settings/components/ChangeHandleDialog.tsx:245 12072 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:247 11685 12073 msgid "Your full handle will be <0>@{0}</0>" 11686 12074 msgstr "" 11687 12075 11688 - #: src/Navigation.tsx:526 11689 - #: src/screens/Search/modules/ExploreInterestsCard.tsx:67 12076 + #: src/Navigation.tsx:555 12077 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:70 11690 12078 #: src/screens/Settings/ContentAndMediaSettings.tsx:93 11691 12079 #: src/screens/Settings/ContentAndMediaSettings.tsx:96 11692 - #: src/screens/Settings/InterestsSettings.tsx:46 12080 + #: src/screens/Settings/InterestsSettings.tsx:47 11693 12081 msgid "Your interests" 11694 12082 msgstr "" 11695 12083 11696 - #: src/screens/Settings/InterestsSettings.tsx:127 12084 + #: src/screens/Settings/InterestsSettings.tsx:128 11697 12085 msgctxt "toast" 11698 12086 msgid "Your interests have been updated!" 11699 12087 msgstr "" 11700 12088 11701 - #: src/screens/Search/modules/ExploreInterestsCard.tsx:94 12089 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:97 11702 12090 msgid "Your interests help us find what you like!" 11703 12091 msgstr "" 11704 12092 ··· 11710 12098 msgid "Your location data is not tracked and does not leave your device." 11711 12099 msgstr "" 11712 12100 11713 - #: src/screens/Signup/StepInfo/index.tsx:367 12101 + #: src/screens/Signup/StepInfo/index.tsx:439 11714 12102 msgid "Your location has been updated." 11715 12103 msgstr "" 11716 12104 11717 - #: src/components/dialogs/MutedWords.tsx:374 12105 + #: src/components/dialogs/MutedWords.tsx:375 11718 12106 msgid "Your muted words" 11719 12107 msgstr "" 11720 12108 ··· 11722 12110 msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on." 11723 12111 msgstr "" 11724 12112 11725 - #: src/screens/Signup/StepInfo/index.tsx:158 12113 + #: src/screens/Signup/StepInfo/index.tsx:175 11726 12114 msgid "Your password must be at least 8 characters long." 11727 12115 msgstr "" 11728 12116 11729 - #: src/view/com/composer/Composer.tsx:577 12117 + #: src/view/com/composer/Composer.tsx:579 11730 12118 msgid "Your post was sent" 11731 12119 msgstr "" 11732 12120 11733 - #: src/view/com/composer/Composer.tsx:574 12121 + #: src/view/com/composer/Composer.tsx:576 11734 12122 msgid "Your posts were sent" 11735 12123 msgstr "" 11736 12124 ··· 11751 12139 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." 11752 12140 msgstr "" 11753 12141 11754 - #: src/view/com/composer/Composer.tsx:576 12142 + #: src/view/com/composer/Composer.tsx:578 11755 12143 msgid "Your reply was sent" 11756 12144 msgstr "" 11757 12145 11758 - #: src/components/moderation/ReportDialog/index.tsx:511 12146 + #: src/components/moderation/ReportDialog/index.tsx:514 11759 12147 msgid "Your report will be sent to <0>{0}</0>." 11760 12148 msgstr "" 11761 12149 11762 - #: src/screens/Settings/InterestsSettings.tsx:60 12150 + #: src/screens/Settings/InterestsSettings.tsx:61 11763 12151 msgid "Your selected interests help us serve you content you care about." 11764 12152 msgstr "" 11765 12153 11766 - #: src/components/verification/VerificationsDialog.tsx:65 12154 + #: src/components/verification/VerificationsDialog.tsx:66 11767 12155 msgid "Your verifications" 11768 12156 msgstr "" 12157 + 12158 + #: src/screens/Settings/AppearanceSettings.tsx:113 12159 + msgid "Zeppelin" 12160 + msgstr ""
+12160
src/locale/locales/en-skeet/messages.po
··· 1 + msgid "" 2 + msgstr "" 3 + "POT-Creation-Date: 2023-11-05 16:01-0800\n" 4 + "MIME-Version: 1.0\n" 5 + "Content-Type: text/plain; charset=utf-8\n" 6 + "Content-Transfer-Encoding: 8bit\n" 7 + "X-Generator: @lingui/cli\n" 8 + "Language: en\n" 9 + "Project-Id-Version: \n" 10 + "Report-Msgid-Bugs-To: \n" 11 + "PO-Revision-Date: \n" 12 + "Last-Translator: \n" 13 + "Language-Team: \n" 14 + "Plural-Forms: \n" 15 + 16 + #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. 17 + #: src/components/InterestTabs.tsx:334 18 + msgid "\"{interestsDisplayName}\" category (active)" 19 + msgstr "" 20 + 21 + #: src/screens/Messages/components/ChatListItem.tsx:166 22 + msgid "(contains embedded content)" 23 + msgstr "" 24 + 25 + #: src/screens/Settings/AccountSettings.tsx:71 26 + msgid "(no email)" 27 + msgstr "" 28 + 29 + #: src/lib/hooks/useTimeAgo.ts:169 30 + msgid "{0, plural, one {# day} other {# days}}" 31 + msgstr "" 32 + 33 + #: src/screens/Profile/ProfileFollowers.tsx:48 34 + msgid "{0, plural, one {# follower} other {# followers}}" 35 + msgstr "" 36 + 37 + #: src/screens/Profile/ProfileFollows.tsx:50 38 + msgid "{0, plural, one {# following} other {# following}}" 39 + msgstr "" 40 + 41 + #: src/components/contacts/screens/ViewMatches.tsx:265 42 + msgid "{0, plural, one {# friend found!} other {# friends found!}}" 43 + msgstr "" 44 + 45 + #: src/lib/hooks/useTimeAgo.ts:159 46 + msgid "{0, plural, one {# hour} other {# hours}}" 47 + msgstr "" 48 + 49 + #: src/components/moderation/LabelsOnMe.tsx:58 50 + msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account" 51 + msgstr "" 52 + 53 + #: src/components/moderation/LabelsOnMe.tsx:67 54 + msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content" 55 + msgstr "" 56 + 57 + #: src/screens/Post/PostLikedBy.tsx:54 58 + msgid "{0, plural, one {# like} other {# likes}}" 59 + msgstr "" 60 + 61 + #: src/lib/hooks/useTimeAgo.ts:149 62 + msgid "{0, plural, one {# minute} other {# minutes}}" 63 + msgstr "" 64 + 65 + #: src/lib/hooks/useTimeAgo.ts:180 66 + msgid "{0, plural, one {# month} other {# months}}" 67 + msgstr "" 68 + 69 + #: src/screens/Post/PostQuotes.tsx:54 70 + msgid "{0, plural, one {# quote} other {# quotes}}" 71 + msgstr "" 72 + 73 + #: src/screens/Post/PostRepostedBy.tsx:54 74 + msgid "{0, plural, one {# repost} other {# reposts}}" 75 + msgstr "" 76 + 77 + #: src/lib/hooks/useTimeAgo.ts:139 78 + msgid "{0, plural, one {# second} other {# seconds}}" 79 + msgstr "" 80 + 81 + #: src/view/shell/bottom-bar/BottomBar.tsx:229 82 + #: src/view/shell/bottom-bar/BottomBar.tsx:261 83 + #: src/view/shell/Drawer.tsx:516 84 + msgid "{0, plural, one {# unread item} other {# unread items}}" 85 + msgstr "" 86 + 87 + #. How many months have passed, displayed in a narrow form 88 + #: src/lib/hooks/useTimeAgo.ts:182 89 + msgid "{0, plural, one {#mo} other {#mo}}" 90 + msgstr "" 91 + 92 + #: src/components/ProfileHoverCard/index.web.tsx:449 93 + #: src/screens/Profile/Header/Metrics.tsx:25 94 + msgid "{0, plural, one {follower} other {followers}}" 95 + msgstr "" 96 + 97 + #: src/components/ProfileHoverCard/index.web.tsx:453 98 + #: src/screens/Profile/Header/Metrics.tsx:29 99 + msgid "{0, plural, one {following} other {following}}" 100 + msgstr "" 101 + 102 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:505 103 + msgid "{0, plural, one {like} other {likes}}" 104 + msgstr "" 105 + 106 + #: src/screens/Profile/Header/Metrics.tsx:66 107 + msgid "{0, plural, one {post} other {posts}}" 108 + msgstr "" 109 + 110 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:487 111 + msgid "{0, plural, one {quote} other {quotes}}" 112 + msgstr "" 113 + 114 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:468 115 + #: src/view/com/posts/PostFeedItemCarousel.tsx:66 116 + msgid "{0, plural, one {repost} other {reposts}}" 117 + msgstr "" 118 + 119 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:518 120 + msgid "{0, plural, one {save} other {saves}}" 121 + msgstr "" 122 + 123 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 124 + msgid "{0, plural, other {{1} posts}}" 125 + msgstr "" 126 + 127 + #. Number of users (always at least 25) who have joined Bluesky using a specific starter pack 128 + #: src/screens/StarterPack/StarterPackScreen.tsx:493 129 + msgid "{0, plural, other {# people have}} used this starter pack!" 130 + msgstr "" 131 + 132 + #: src/components/dialogs/StarterPackDialog.tsx:363 133 + msgid "{0, plural, other {+# more}}" 134 + msgstr "" 135 + 136 + #: src/lib/strings/time.ts:13 137 + msgctxt "date and time formatted like this: [time] ยท [date]" 138 + msgid "{0} ยท {1}" 139 + msgstr "" 140 + 141 + #: src/components/moderation/ContentHider.tsx:89 142 + msgid "{0} (Account)" 143 + msgstr "" 144 + 145 + #. Pattern: {wordValue} in tags 146 + #: src/components/dialogs/MutedWords.tsx:484 147 + msgid "{0} <0>in <1>tags</1></0>" 148 + msgstr "" 149 + 150 + #. Pattern: {wordValue} in text, tags 151 + #: src/components/dialogs/MutedWords.tsx:473 152 + msgid "{0} <0>in <1>text & tags</1></0>" 153 + msgstr "" 154 + 155 + #: src/screens/Profile/Header/Metrics.tsx:57 156 + msgid "{0} following" 157 + msgstr "" 158 + 159 + #: src/components/live/LiveStatusDialog.tsx:90 160 + msgid "{0} is live" 161 + msgstr "" 162 + 163 + #: src/screens/Signup/StepHandle/index.tsx:188 164 + msgid "{0} is not available" 165 + msgstr "" 166 + 167 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 168 + msgid "{0} joined this week" 169 + msgstr "" 170 + 171 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:205 172 + msgid "{0} of {1}" 173 + msgstr "" 174 + 175 + #. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field 176 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:55 177 + msgid "{0} out of 50" 178 + msgstr "" 179 + 180 + #: src/components/dms/MessageItem.tsx:143 181 + msgid "{0} reacted {1}" 182 + msgstr "" 183 + 184 + #: src/screens/Messages/components/ChatListItem.tsx:237 185 + msgid "{0} reacted {1} to {2}" 186 + msgstr "" 187 + 188 + #: src/view/com/feeds/FeedSourceCard.tsx:187 189 + msgid "{0}, a feed by {1}, liked by {2}" 190 + msgstr "" 191 + 192 + #: src/view/com/feeds/FeedSourceCard.tsx:188 193 + msgid "{0}, a list by {1}" 194 + msgstr "" 195 + 196 + #: src/view/com/util/UserAvatar.tsx:613 197 + #: src/view/com/util/UserAvatar.tsx:631 198 + msgid "{0}'s avatar" 199 + msgstr "" 200 + 201 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:74 202 + msgid "{0}'s favorite feeds and people - join me!" 203 + msgstr "" 204 + 205 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:46 206 + msgid "{0}'s starter pack" 207 + msgstr "" 208 + 209 + #. How many days have passed, displayed in a narrow form 210 + #: src/lib/hooks/useTimeAgo.ts:171 211 + msgid "{0}d" 212 + msgstr "" 213 + 214 + #. How many hours have passed, displayed in a narrow form 215 + #: src/lib/hooks/useTimeAgo.ts:161 216 + msgid "{0}h" 217 + msgstr "" 218 + 219 + #. How many minutes have passed, displayed in a narrow form 220 + #: src/lib/hooks/useTimeAgo.ts:151 221 + msgid "{0}m" 222 + msgstr "" 223 + 224 + #. How many seconds have passed, displayed in a narrow form 225 + #: src/lib/hooks/useTimeAgo.ts:141 226 + msgid "{0}s" 227 + msgstr "" 228 + 229 + #: src/view/shell/desktop/LeftNav.tsx:462 230 + msgid "{count, plural, one {# unread item} other {# unread items}}" 231 + msgstr "" 232 + 233 + #: src/screens/Profile/Header/EditProfileDialog.tsx:389 234 + msgid "{DESCRIPTION_MAX_GRAPHEMES, plural, other {Description is too long. The maximum number of characters is #.}}" 235 + msgstr "" 236 + 237 + #: src/screens/Profile/Header/EditProfileDialog.tsx:338 238 + msgid "{DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Display name is too long. The maximum number of characters is #.}}" 239 + msgstr "" 240 + 241 + #: src/lib/generate-starterpack.ts:104 242 + #: src/screens/StarterPack/Wizard/index.tsx:202 243 + msgid "{displayName}'s Starter Pack" 244 + msgstr "" 245 + 246 + #: src/screens/SignupQueued.tsx:216 247 + msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" 248 + msgstr "" 249 + 250 + #: src/screens/SignupQueued.tsx:222 251 + msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" 252 + msgstr "" 253 + 254 + #: src/view/com/notifications/NotificationFeedItem.tsx:357 255 + msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> followed you" 256 + msgstr "" 257 + 258 + #: src/view/com/notifications/NotificationFeedItem.tsx:391 259 + msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> liked your custom feed" 260 + msgstr "" 261 + 262 + #: src/view/com/notifications/NotificationFeedItem.tsx:300 263 + msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> liked your post" 264 + msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> liked your skeet" 265 + 266 + #: src/view/com/notifications/NotificationFeedItem.tsx:496 267 + msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> liked your repost" 268 + msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> liked your reskeet" 269 + 270 + #: src/view/com/notifications/NotificationFeedItem.tsx:469 271 + msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> removed their verifications from your account" 272 + msgstr "" 273 + 274 + #: src/view/com/notifications/NotificationFeedItem.tsx:324 275 + msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> reposted your post" 276 + msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> reskeeted your skeet" 277 + 278 + #: src/view/com/notifications/NotificationFeedItem.tsx:521 279 + msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> reposted your repost" 280 + msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> reskeeted your reskeet" 281 + 282 + #: src/view/com/notifications/NotificationFeedItem.tsx:415 283 + msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> signed up with your starter pack" 284 + msgstr "" 285 + 286 + #: src/view/com/notifications/NotificationFeedItem.tsx:444 287 + msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0> verified you" 288 + msgstr "" 289 + 290 + #: src/view/com/notifications/NotificationFeedItem.tsx:369 291 + msgid "{firstAuthorLink} followed you" 292 + msgstr "" 293 + 294 + #: src/view/com/notifications/NotificationFeedItem.tsx:346 295 + msgid "{firstAuthorLink} followed you back" 296 + msgstr "" 297 + 298 + #: src/view/com/notifications/NotificationFeedItem.tsx:403 299 + msgid "{firstAuthorLink} liked your custom feed" 300 + msgstr "" 301 + 302 + #: src/view/com/notifications/NotificationFeedItem.tsx:312 303 + msgid "{firstAuthorLink} liked your post" 304 + msgstr "{firstAuthorLink} liked your skeet" 305 + 306 + #: src/view/com/notifications/NotificationFeedItem.tsx:508 307 + msgid "{firstAuthorLink} liked your repost" 308 + msgstr "{firstAuthorLink} liked your reskeet" 309 + 310 + #: src/view/com/notifications/NotificationFeedItem.tsx:481 311 + msgid "{firstAuthorLink} removed their verification from your account" 312 + msgstr "" 313 + 314 + #: src/view/com/notifications/NotificationFeedItem.tsx:336 315 + msgid "{firstAuthorLink} reposted your post" 316 + msgstr "" 317 + 318 + #: src/view/com/notifications/NotificationFeedItem.tsx:533 319 + msgid "{firstAuthorLink} reposted your repost" 320 + msgstr "{firstAuthorLink} reskeeted your reskeet" 321 + 322 + #: src/view/com/notifications/NotificationFeedItem.tsx:427 323 + msgid "{firstAuthorLink} signed up with your starter pack" 324 + msgstr "" 325 + 326 + #: src/view/com/notifications/NotificationFeedItem.tsx:456 327 + msgid "{firstAuthorLink} verified you" 328 + msgstr "" 329 + 330 + #: src/view/com/notifications/NotificationFeedItem.tsx:350 331 + msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" 332 + msgstr "" 333 + 334 + #: src/view/com/notifications/NotificationFeedItem.tsx:384 335 + msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" 336 + msgstr "" 337 + 338 + #: src/view/com/notifications/NotificationFeedItem.tsx:293 339 + msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" 340 + msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your skeet" 341 + 342 + #: src/view/com/notifications/NotificationFeedItem.tsx:489 343 + msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" 344 + msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your reskeet" 345 + 346 + #: src/view/com/notifications/NotificationFeedItem.tsx:462 347 + msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" 348 + msgstr "" 349 + 350 + #: src/view/com/notifications/NotificationFeedItem.tsx:317 351 + msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" 352 + msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reskeeted your skeet" 353 + 354 + #: src/view/com/notifications/NotificationFeedItem.tsx:514 355 + msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" 356 + msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reskeeted your skeet" 357 + 358 + #: src/view/com/notifications/NotificationFeedItem.tsx:408 359 + msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" 360 + msgstr "" 361 + 362 + #: src/view/com/notifications/NotificationFeedItem.tsx:437 363 + msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" 364 + msgstr "" 365 + 366 + #: src/view/com/notifications/NotificationFeedItem.tsx:355 367 + msgid "{firstAuthorName} followed you" 368 + msgstr "" 369 + 370 + #: src/view/com/notifications/NotificationFeedItem.tsx:345 371 + msgid "{firstAuthorName} followed you back" 372 + msgstr "" 373 + 374 + #: src/view/com/notifications/NotificationFeedItem.tsx:389 375 + msgid "{firstAuthorName} liked your custom feed" 376 + msgstr "" 377 + 378 + #: src/view/com/notifications/NotificationFeedItem.tsx:298 379 + msgid "{firstAuthorName} liked your post" 380 + msgstr "{firstAuthorName} liked your skeet" 381 + 382 + #: src/view/com/notifications/NotificationFeedItem.tsx:494 383 + msgid "{firstAuthorName} liked your repost" 384 + msgstr "{firstAuthorName} liked your skeet" 385 + 386 + #: src/view/com/notifications/NotificationFeedItem.tsx:467 387 + msgid "{firstAuthorName} removed their verification from your account" 388 + msgstr "" 389 + 390 + #: src/view/com/notifications/NotificationFeedItem.tsx:322 391 + msgid "{firstAuthorName} reposted your post" 392 + msgstr "{firstAuthorName} reskeeted your skeet" 393 + 394 + #: src/view/com/notifications/NotificationFeedItem.tsx:519 395 + msgid "{firstAuthorName} reposted your repost" 396 + msgstr "{firstAuthorName} reskeeted your skeet" 397 + 398 + #: src/view/com/notifications/NotificationFeedItem.tsx:413 399 + msgid "{firstAuthorName} signed up with your starter pack" 400 + msgstr "" 401 + 402 + #: src/view/com/notifications/NotificationFeedItem.tsx:442 403 + msgid "{firstAuthorName} verified you" 404 + msgstr "" 405 + 406 + #: src/components/ProfileHoverCard/index.web.tsx:601 407 + msgid "{following} following" 408 + msgstr "" 409 + 410 + #: src/components/dialogs/SearchablePeopleList.tsx:417 411 + msgid "{handle} can't be messaged" 412 + msgstr "" 413 + 414 + #: src/components/live/utils.ts:15 415 + msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" 416 + msgstr "" 417 + 418 + #: src/components/live/utils.ts:19 419 + msgid "{hours, plural, one {# hour} other {# hours}}" 420 + msgstr "" 421 + 422 + #. Number of users (always at least 50) who have joined Bluesky using a specific starter pack 423 + #: src/components/StarterPack/StarterPackCard.tsx:101 424 + msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" 425 + msgstr "" 426 + 427 + #: src/screens/Settings/AppearanceSettings.tsx:197 428 + msgid "{label}" 429 + msgstr "" 430 + 431 + #: src/components/live/utils.ts:10 432 + msgid "{minutes, plural, one {# minute} other {# minutes}}" 433 + msgstr "" 434 + 435 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:282 436 + msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" 437 + msgstr "" 438 + 439 + #: src/screens/Settings/FindContactsSettings.tsx:430 440 + msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" 441 + msgstr "" 442 + 443 + #: src/components/NewskieDialog.tsx:113 444 + msgid "{profileName} joined Bluesky {timeAgoString} ago" 445 + msgstr "" 446 + 447 + #: src/components/NewskieDialog.tsx:110 448 + msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" 449 + msgstr "" 450 + 451 + #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" 452 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:112 453 + msgid "{rank}." 454 + msgstr "" 455 + 456 + #. trending topic time spent trending. should be as short as possible to fit in a pill 457 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:207 458 + msgid "{type}h ago" 459 + msgstr "" 460 + 461 + #: src/components/verification/VerifierDialog.tsx:61 462 + msgid "{userName} is a trusted verifier" 463 + msgstr "" 464 + 465 + #: src/components/verification/VerificationsDialog.tsx:68 466 + msgid "{userName} is verified" 467 + msgstr "" 468 + 469 + #. Possessive, meaning "the verifications of {userName}" 470 + #: src/components/verification/VerificationsDialog.tsx:70 471 + msgid "{userName}'s verifications" 472 + msgstr "" 473 + 474 + #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 475 + #: src/screens/Search/components/StarterPackCard.tsx:254 476 + msgid "+{computedTotal}" 477 + msgstr "" 478 + 479 + #: src/screens/StarterPack/Wizard/index.tsx:526 480 + msgctxt "profiles" 481 + msgid "<0>{0}, </0><1>{1}, </1>and {2, plural, one {# other} other {# others}} are included in your starter pack" 482 + msgstr "" 483 + 484 + #: src/screens/StarterPack/Wizard/index.tsx:579 485 + msgctxt "feeds" 486 + msgid "<0>{0}, </0><1>{1}, </1>and {2, plural, one {# other} other {# others}} are included in your starter pack" 487 + msgstr "" 488 + 489 + #: src/view/shell/Drawer.tsx:126 490 + msgid "<0>{0}</0> {1, plural, one {follower} other {followers}}" 491 + msgstr "" 492 + 493 + #: src/view/shell/Drawer.tsx:144 494 + msgid "<0>{0}</0> {1, plural, one {following} other {following}}" 495 + msgstr "" 496 + 497 + #: src/screens/StarterPack/Wizard/index.tsx:513 498 + #: src/screens/StarterPack/Wizard/index.tsx:567 499 + msgid "<0>{0}</0> and<1> </1><2>{1} </2>are included in your starter pack" 500 + msgstr "" 501 + 502 + #: src/screens/StarterPack/Wizard/index.tsx:560 503 + msgid "<0>{0}</0> is included in your starter pack" 504 + msgstr "" 505 + 506 + #: src/components/WhoCanReply.tsx:351 507 + msgid "<0>{0}</0> members" 508 + msgstr "" 509 + 510 + #: src/components/dms/DateDivider.tsx:69 511 + msgid "<0>{date}</0> at {time}" 512 + msgstr "" 513 + 514 + #: src/screens/Hashtag.tsx:241 515 + #: src/screens/Search/SearchResults.tsx:296 516 + msgid "<0>Sign in</0><1> or </1><2>create an account</2><3> </3><4>to search for news, sports, politics, and everything else happening on Bluesky.</4>" 517 + msgstr "" 518 + 519 + #: src/screens/StarterPack/Wizard/index.tsx:504 520 + msgid "<0>You</0> and<1> </1><2>{0} </2>are included in your starter pack" 521 + msgstr "" 522 + 523 + #: src/screens/Profile/Header/Handle.tsx:60 524 + msgid "โš Invalid Handle" 525 + msgstr "" 526 + 527 + #: src/components/dialogs/MutedWords.tsx:199 528 + msgid "24 hours" 529 + msgstr "" 530 + 531 + #: src/screens/Login/LoginForm.tsx:303 532 + msgid "2FA Confirmation" 533 + msgstr "" 534 + 535 + #: src/components/dialogs/MutedWords.tsx:238 536 + msgid "30 days" 537 + msgstr "" 538 + 539 + #: src/components/dialogs/MutedWords.tsx:223 540 + msgid "7 days" 541 + msgstr "" 542 + 543 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 544 + msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" 545 + msgstr "" 546 + 547 + #. If last message does not contain text, fall back to "{user} reacted to {a message}" 548 + #: src/screens/Messages/components/ChatListItem.tsx:216 549 + msgid "a message" 550 + msgstr "" 551 + 552 + #: src/components/contacts/screens/PhoneInput.tsx:99 553 + msgid "A network error occurred. Please check your internet connection" 554 + msgstr "" 555 + 556 + #: src/components/contacts/screens/VerifyNumber.tsx:96 557 + #: src/components/contacts/screens/VerifyNumber.tsx:152 558 + msgid "A network error occurred. Please check your internet connection." 559 + msgstr "" 560 + 561 + #: src/components/contacts/screens/VerifyNumber.tsx:140 562 + msgid "A new code has been sent" 563 + msgstr "" 564 + 565 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 566 + msgid "A new form of verification" 567 + msgstr "" 568 + 569 + #. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. 570 + #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 571 + msgid "A screenshot of a post from @esb.lol, showing the user is currently livestreaming content on Twitch. The post reads: \"Hello! I'm live on Twitch, and I'm testing Bluesky's latest feature too!\"" 572 + msgstr "A screenshot of a skeet from @esb.lol, showing the user is currently livestreaming content on Twitch. The skeet reads: \"Hello! I'm live on Twitch, and I'm testing Bluesky's latest feature too!\"" 573 + 574 + #. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. 575 + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:120 576 + msgid "A screenshot of a post with a new button next to the share button that allows you to save the post to your bookmarks. The post is from @jcsalterego.bsky.social and reads \"inventing a saturday that immediately follows monday\"." 577 + msgstr "A screenshot of a skeet with a new button next to the share button that allows you to save the skeet to your bookmarks. The skeet is from @jcsalterego.bsky.social and reads \"inventing a saturday that immediately follows monday\"." 578 + 579 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:116 580 + msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." 581 + msgstr "" 582 + 583 + #: src/Navigation.tsx:563 584 + #: src/screens/Settings/AboutSettings.tsx:73 585 + #: src/screens/Settings/Settings.tsx:270 586 + #: src/screens/Settings/Settings.tsx:273 587 + msgid "About" 588 + msgstr "" 589 + 590 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:100 591 + msgid "Abusive or discriminatory behavior" 592 + msgstr "" 593 + 594 + #. Accept a chat request 595 + #: src/screens/Messages/components/RequestButtons.tsx:269 596 + msgid "Accept" 597 + msgstr "" 598 + 599 + #: src/screens/Messages/components/RequestButtons.tsx:260 600 + msgid "Accept chat request" 601 + msgstr "" 602 + 603 + #. Accept a chat request 604 + #: src/screens/Messages/components/RequestListItem.tsx:42 605 + msgid "Accept Request" 606 + msgstr "" 607 + 608 + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:178 609 + msgid "Accept this language suggestion" 610 + msgstr "" 611 + 612 + #: src/screens/Settings/AccessibilitySettings.tsx:44 613 + #: src/screens/Settings/Settings.tsx:246 614 + #: src/screens/Settings/Settings.tsx:249 615 + msgid "Accessibility" 616 + msgstr "" 617 + 618 + #: src/Navigation.tsx:406 619 + msgid "Accessibility Settings" 620 + msgstr "" 621 + 622 + #: src/Navigation.tsx:430 623 + #: src/screens/Login/LoginForm.tsx:210 624 + #: src/screens/Settings/AccountSettings.tsx:51 625 + #: src/screens/Settings/Settings.tsx:182 626 + #: src/screens/Settings/Settings.tsx:185 627 + msgid "Account" 628 + msgstr "" 629 + 630 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:649 631 + #: src/screens/Messages/components/RequestButtons.tsx:91 632 + #: src/view/com/profile/ProfileMenu.tsx:196 633 + msgctxt "toast" 634 + msgid "Account blocked" 635 + msgstr "" 636 + 637 + #: src/view/com/profile/ProfileMenu.tsx:209 638 + msgctxt "toast" 639 + msgid "Account followed" 640 + msgstr "" 641 + 642 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:672 643 + #: src/view/com/profile/ProfileMenu.tsx:172 644 + msgctxt "toast" 645 + msgid "Account muted" 646 + msgstr "" 647 + 648 + #: src/components/moderation/ModerationDetailsDialog.tsx:105 649 + #: src/lib/moderation/useModerationCauseDescription.ts:99 650 + msgid "Account Muted" 651 + msgstr "" 652 + 653 + #: src/components/moderation/ModerationDetailsDialog.tsx:91 654 + msgid "Account Muted by List" 655 + msgstr "" 656 + 657 + #: src/screens/Settings/Settings.tsx:656 658 + msgid "Account options" 659 + msgstr "" 660 + 661 + #: src/screens/Settings/Settings.tsx:692 662 + msgid "Account removed from quick access" 663 + msgstr "" 664 + 665 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:85 666 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 667 + #: src/view/com/profile/ProfileMenu.tsx:186 668 + msgctxt "toast" 669 + msgid "Account unblocked" 670 + msgstr "" 671 + 672 + #: src/view/com/profile/ProfileMenu.tsx:221 673 + msgctxt "toast" 674 + msgid "Account unfollowed" 675 + msgstr "" 676 + 677 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:662 678 + #: src/view/com/profile/ProfileMenu.tsx:162 679 + msgctxt "toast" 680 + msgid "Account unmuted" 681 + msgstr "" 682 + 683 + #: src/components/verification/VerifierDialog.tsx:102 684 + msgid "Accounts with a scalloped blue check mark <0><1/></0> can verify others. These trusted verifiers are selected by {0}." 685 + msgstr "" 686 + 687 + #: src/lib/hooks/useNotificationHandler.ts:182 688 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 689 + #: src/screens/Settings/NotificationSettings/index.tsx:192 690 + msgid "Activity from others" 691 + msgstr "" 692 + 693 + #: src/Navigation.tsx:531 694 + msgid "Activity notifications" 695 + msgstr "" 696 + 697 + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 698 + #: src/components/dialogs/MutedWords.tsx:334 699 + #: src/components/dialogs/StarterPackDialog.tsx:377 700 + #: src/components/dialogs/StarterPackDialog.tsx:383 701 + #: src/view/com/modals/UserAddRemoveLists.tsx:237 702 + msgid "Add" 703 + msgstr "" 704 + 705 + #: src/screens/StarterPack/Wizard/index.tsx:615 706 + msgid "Add {0} more to continue" 707 + msgstr "" 708 + 709 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:62 710 + msgid "Add {displayName} to starter pack" 711 + msgstr "" 712 + 713 + #: src/view/com/composer/labels/LabelsBtn.tsx:102 714 + #: src/view/com/composer/labels/LabelsBtn.tsx:107 715 + msgid "Add a content warning" 716 + msgstr "" 717 + 718 + #: src/components/live/GoLiveDialog.tsx:106 719 + msgid "Add a temporary live status to your profile. When someone clicks on your avatar, theyโ€™ll see information about your live event." 720 + msgstr "" 721 + 722 + #: src/screens/ProfileList/AboutSection.tsx:63 723 + #: src/screens/ProfileList/AboutSection.tsx:81 724 + msgid "Add a user to this list" 725 + msgstr "" 726 + 727 + #: src/components/dialogs/SwitchAccount.tsx:55 728 + #: src/screens/Deactivated.tsx:183 729 + msgid "Add account" 730 + msgstr "" 731 + 732 + #: src/view/com/composer/GifAltText.tsx:76 733 + #: src/view/com/composer/GifAltText.tsx:144 734 + #: src/view/com/composer/GifAltText.tsx:211 735 + #: src/view/com/composer/photos/Gallery.tsx:173 736 + #: src/view/com/composer/photos/Gallery.tsx:228 737 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:88 738 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:93 739 + msgid "Add alt text" 740 + msgstr "" 741 + 742 + #: src/view/com/composer/videos/SubtitleDialog.tsx:115 743 + msgid "Add alt text (optional)" 744 + msgstr "" 745 + 746 + #: src/screens/Settings/Settings.tsx:592 747 + #: src/screens/Settings/Settings.tsx:595 748 + #: src/view/shell/desktop/LeftNav.tsx:265 749 + #: src/view/shell/desktop/LeftNav.tsx:269 750 + msgid "Add another account" 751 + msgstr "" 752 + 753 + #: src/view/com/composer/Composer.tsx:860 754 + msgid "Add another post" 755 + msgstr "Add another skeet" 756 + 757 + #: src/view/com/composer/Composer.tsx:1527 758 + msgid "Add another post to thread" 759 + msgstr "Add another skeet to thread" 760 + 761 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 762 + msgid "Add app password" 763 + msgstr "" 764 + 765 + #: src/screens/Settings/AppPasswords.tsx:74 766 + #: src/screens/Settings/AppPasswords.tsx:82 767 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 768 + msgid "Add App Password" 769 + msgstr "" 770 + 771 + #: src/components/dms/EmojiReactionPicker.web.tsx:36 772 + msgid "Add emoji reaction" 773 + msgstr "" 774 + 775 + #: src/view/com/feeds/ComposerPrompt.tsx:220 776 + msgid "Add image" 777 + msgstr "" 778 + 779 + #. Accessibility label for button in composer to add images, a video, or a GIF to a post 780 + #: src/view/com/composer/SelectMediaButton.tsx:484 781 + msgid "Add media to post" 782 + msgstr "Add media to skeet" 783 + 784 + #: src/components/moderation/ReportDialog/index.tsx:523 785 + #: src/components/moderation/ReportDialog/index.tsx:527 786 + msgid "Add more details (optional)" 787 + msgstr "" 788 + 789 + #: src/components/dialogs/MutedWords.tsx:327 790 + msgid "Add mute word with chosen settings" 791 + msgstr "" 792 + 793 + #: src/components/dialogs/MutedWords.tsx:118 794 + msgid "Add muted words and tags" 795 + msgstr "" 796 + 797 + #: src/screens/ProfileList/AboutSection.tsx:71 798 + #: src/screens/ProfileList/AboutSection.tsx:89 799 + msgid "Add people" 800 + msgstr "" 801 + 802 + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:79 803 + msgid "Add people to list" 804 + msgstr "" 805 + 806 + #: src/components/dms/EmojiPopup.android.tsx:58 807 + msgid "Add Reaction" 808 + msgstr "" 809 + 810 + #: src/screens/Home/NoFeedsPinned.tsx:99 811 + msgid "Add recommended feeds" 812 + msgstr "" 813 + 814 + #: src/screens/StarterPack/Wizard/index.tsx:548 815 + msgid "Add some feeds to your starter pack!" 816 + msgstr "" 817 + 818 + #: src/screens/Feeds/NoFollowingFeed.tsx:39 819 + msgid "Add the default feed of only people you follow" 820 + msgstr "" 821 + 822 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:419 823 + msgid "Add the following DNS record to your domain:" 824 + msgstr "" 825 + 826 + #: src/components/FeedCard.tsx:337 827 + msgid "Add this feed to your feeds" 828 + msgstr "" 829 + 830 + #: src/view/com/profile/ProfileMenu.tsx:396 831 + #: src/view/com/profile/ProfileMenu.tsx:399 832 + msgid "Add to lists" 833 + msgstr "" 834 + 835 + #: src/components/PostControls/BookmarkButton.tsx:141 836 + msgid "Add to saved posts" 837 + msgstr "Add to saved skeets" 838 + 839 + #: src/components/dialogs/StarterPackDialog.tsx:179 840 + #: src/view/com/profile/ProfileMenu.tsx:387 841 + #: src/view/com/profile/ProfileMenu.tsx:390 842 + msgid "Add to starter packs" 843 + msgstr "" 844 + 845 + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 846 + msgid "Add user to list" 847 + msgstr "" 848 + 849 + #: src/ageAssurance/components/NoAccessScreen.tsx:231 850 + msgid "Add your birthdate" 851 + msgstr "" 852 + 853 + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:109 854 + #: src/view/com/modals/UserAddRemoveLists.tsx:164 855 + msgid "Added to list" 856 + msgstr "" 857 + 858 + #: src/components/dialogs/StarterPackDialog.tsx:261 859 + msgid "Added to starter pack" 860 + msgstr "" 861 + 862 + #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:111 863 + msgid "Additional details (limit 1000 characters)" 864 + msgstr "" 865 + 866 + #: src/components/moderation/ReportDialog/index.tsx:541 867 + msgid "Additional details (limit 300 characters)" 868 + msgstr "" 869 + 870 + #: src/view/com/composer/labels/LabelsBtn.tsx:154 871 + msgid "Adult" 872 + msgstr "" 873 + 874 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:66 875 + msgid "Adult content" 876 + msgstr "" 877 + 878 + #: src/components/moderation/ContentHider.tsx:120 879 + #: src/lib/moderation/useGlobalLabelStrings.ts:34 880 + #: src/lib/moderation/useModerationCauseDescription.ts:149 881 + #: src/view/com/composer/labels/LabelsBtn.tsx:122 882 + msgid "Adult Content" 883 + msgstr "" 884 + 885 + #: src/screens/Moderation/index.tsx:394 886 + msgid "Adult content can only be enabled via the Web at <0>bsky.app</0>." 887 + msgstr "" 888 + 889 + #: src/components/moderation/LabelPreference.tsx:251 890 + msgid "Adult content is disabled." 891 + msgstr "" 892 + 893 + #: src/view/com/composer/labels/LabelsBtn.tsx:133 894 + #: src/view/com/composer/labels/LabelsBtn.tsx:191 895 + msgid "Adult Content labels" 896 + msgstr "" 897 + 898 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76 899 + msgid "Adult sexual abuse content" 900 + msgstr "" 901 + 902 + #: src/screens/Moderation/index.tsx:439 903 + msgid "Advanced" 904 + msgstr "" 905 + 906 + #: src/components/ageAssurance/AgeAssuranceBadge.tsx:44 907 + msgid "Age Assurance" 908 + msgstr "" 909 + 910 + #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:69 911 + msgid "Age assurance inquiry failed to send, please try again." 912 + msgstr "" 913 + 914 + #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:77 915 + msgctxt "toast" 916 + msgid "Age assurance inquiry was submitted" 917 + msgstr "" 918 + 919 + #: src/ageAssurance/components/NoAccessScreen.tsx:354 920 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:199 921 + msgid "Age assurance only takes a few minutes" 922 + msgstr "" 923 + 924 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 925 + msgid "alice@example.com" 926 + msgstr "" 927 + 928 + #. the default tab in the interests tab bar 929 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:174 930 + #: src/view/screens/Notifications.tsx:91 931 + msgid "All" 932 + msgstr "" 933 + 934 + #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:91 935 + #: src/screens/StarterPack/StarterPackScreen.tsx:387 936 + msgid "All accounts have been followed!" 937 + msgstr "" 938 + 939 + #: src/components/contacts/screens/ViewMatches.tsx:141 940 + msgid "All friends followed!" 941 + msgstr "" 942 + 943 + #: src/screens/Search/components/SearchLanguageDropdown.tsx:64 944 + #: src/screens/Search/components/SearchLanguageDropdown.tsx:99 945 + #: src/screens/Search/components/SearchLanguageDropdown.tsx:101 946 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:241 947 + msgid "All languages" 948 + msgstr "" 949 + 950 + #: src/view/screens/Feeds.tsx:712 951 + msgid "All the feeds you've saved, right in one place." 952 + msgstr "" 953 + 954 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 955 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 956 + msgid "Allow access to your direct messages" 957 + msgstr "" 958 + 959 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 960 + msgid "Allow anyone to reply" 961 + msgstr "" 962 + 963 + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:139 964 + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:145 965 + msgid "Allow location access" 966 + msgstr "" 967 + 968 + #: src/screens/Messages/Settings.tsx:75 969 + #: src/screens/Messages/Settings.tsx:78 970 + msgid "Allow new messages from" 971 + msgstr "" 972 + 973 + #: src/screens/Settings/ActivityPrivacySettings.tsx:52 974 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:91 975 + msgid "Allow others to be notified of your posts" 976 + msgstr "Allow others to be notified of your skeets" 977 + 978 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:498 979 + msgid "Allow people you follow to reply" 980 + msgstr "" 981 + 982 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:512 983 + msgid "Allow people you mention to reply" 984 + msgstr "" 985 + 986 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:630 987 + msgid "Allow quote posts" 988 + msgstr "Allow quote skeets" 989 + 990 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:592 991 + msgid "Allow users in {0} to reply" 992 + msgstr "" 993 + 994 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:484 995 + msgid "Allow your followers to reply" 996 + msgstr "" 997 + 998 + #: src/screens/Settings/AppPasswords.tsx:200 999 + msgid "Allows access to direct messages" 1000 + msgstr "" 1001 + 1002 + #: src/screens/Login/ForgotPasswordForm.tsx:171 1003 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:236 1004 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:242 1005 + msgid "Already have a code?" 1006 + msgstr "" 1007 + 1008 + #: src/components/WelcomeModal.tsx:189 1009 + msgid "Already have an account?" 1010 + msgstr "" 1011 + 1012 + #: src/screens/Login/ChooseAccountForm.tsx:43 1013 + msgid "Already signed in as @{0}" 1014 + msgstr "" 1015 + 1016 + #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:197 1017 + #: src/view/com/composer/GifAltText.tsx:100 1018 + #: src/view/com/composer/photos/Gallery.tsx:191 1019 + msgid "ALT" 1020 + msgstr "" 1021 + 1022 + #: src/screens/Settings/AccessibilitySettings.tsx:54 1023 + #: src/view/com/composer/GifAltText.tsx:154 1024 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:117 1025 + #: src/view/com/composer/videos/SubtitleDialog.tsx:41 1026 + #: src/view/com/composer/videos/SubtitleDialog.tsx:59 1027 + #: src/view/com/composer/videos/SubtitleDialog.tsx:110 1028 + #: src/view/com/composer/videos/SubtitleDialog.tsx:114 1029 + msgid "Alt text" 1030 + msgstr "" 1031 + 1032 + #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:202 1033 + msgid "Alt Text" 1034 + msgstr "" 1035 + 1036 + #: src/view/com/composer/photos/Gallery.tsx:272 1037 + msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." 1038 + msgstr "" 1039 + 1040 + #: src/view/com/composer/videos/SubtitleDialog.tsx:138 1041 + msgid "Alt text must be less than {MAX_ALT_TEXT} characters." 1042 + msgstr "" 1043 + 1044 + #: src/view/com/composer/GifAltText.tsx:179 1045 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:138 1046 + msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" 1047 + msgstr "" 1048 + 1049 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:93 1050 + msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." 1051 + msgstr "" 1052 + 1053 + #: src/components/dialogs/GifSelect.tsx:256 1054 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:323 1055 + msgid "An error has occurred" 1056 + msgstr "" 1057 + 1058 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:421 1059 + msgid "An error occurred" 1060 + msgstr "" 1061 + 1062 + #: src/view/com/composer/state/video.ts:435 1063 + msgid "An error occurred while compressing the video." 1064 + msgstr "" 1065 + 1066 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:196 1067 + #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:68 1068 + msgid "An error occurred while fetching suggested accounts." 1069 + msgstr "" 1070 + 1071 + #: src/state/queries/explore-feed-previews.tsx:183 1072 + msgid "An error occurred while fetching the feed." 1073 + msgstr "" 1074 + 1075 + #: src/components/StarterPack/ProfileStarterPacks.tsx:371 1076 + msgid "An error occurred while generating your starter pack. Want to try again?" 1077 + msgstr "" 1078 + 1079 + #: src/components/contacts/screens/ViewMatches.tsx:240 1080 + msgid "An error occurred while hiding suggestion. {0}" 1081 + msgstr "" 1082 + 1083 + #: src/components/Post/Embed/VideoEmbed/index.tsx:143 1084 + msgid "An error occurred while loading the video. Please try again later." 1085 + msgstr "" 1086 + 1087 + #: src/components/Post/Embed/VideoEmbed/index.web.tsx:226 1088 + msgid "An error occurred while loading the video. Please try again." 1089 + msgstr "" 1090 + 1091 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 1092 + msgid "An error occurred while loading your lists :/" 1093 + msgstr "" 1094 + 1095 + #: src/components/StarterPack/QrCodeDialog.tsx:75 1096 + msgid "An error occurred while saving the QR code!" 1097 + msgstr "" 1098 + 1099 + #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:51 1100 + #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:76 1101 + #: src/screens/StarterPack/StarterPackScreen.tsx:353 1102 + #: src/screens/StarterPack/StarterPackScreen.tsx:375 1103 + msgid "An error occurred while trying to follow all" 1104 + msgstr "" 1105 + 1106 + #: src/view/com/composer/state/video.ts:476 1107 + msgid "An error occurred while uploading the video." 1108 + msgstr "" 1109 + 1110 + #: src/components/contacts/screens/PhoneInput.tsx:117 1111 + #: src/components/contacts/screens/VerifyNumber.tsx:128 1112 + #: src/components/contacts/screens/VerifyNumber.tsx:181 1113 + msgid "An error occurred. {0}" 1114 + msgstr "" 1115 + 1116 + #: src/components/contacts/components/HeroImage.tsx:28 1117 + #: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:78 1118 + msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" 1119 + msgstr "" 1120 + 1121 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 1122 + msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" 1123 + msgstr "An illustration of several Bluesky skeets alongside reskeet, like, and comment icons" 1124 + 1125 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:87 1126 + #: src/components/verification/VerifierDialog.tsx:90 1127 + msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." 1128 + msgstr "" 1129 + 1130 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 1131 + msgid "An issue not included in these options" 1132 + msgstr "" 1133 + 1134 + #: src/components/dms/dialogs/NewChatDialog.tsx:38 1135 + msgid "An issue occurred starting the chat" 1136 + msgstr "" 1137 + 1138 + #: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 1139 + msgid "An issue occurred while trying to open the chat" 1140 + msgstr "" 1141 + 1142 + #: src/components/hooks/useFollowMethods.ts:35 1143 + #: src/components/hooks/useFollowMethods.ts:50 1144 + #: src/components/ProfileCard.tsx:519 1145 + #: src/components/ProfileCard.tsx:540 1146 + #: src/view/com/notifications/NotificationFeedItem.tsx:784 1147 + #: src/view/com/notifications/NotificationFeedItem.tsx:804 1148 + msgid "An issue occurred, please try again." 1149 + msgstr "" 1150 + 1151 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121 1152 + msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." 1153 + msgstr "" 1154 + 1155 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:164 1156 + msgid "An unknown error occurred." 1157 + msgstr "" 1158 + 1159 + #: src/components/moderation/ModerationDetailsDialog.tsx:136 1160 + #: src/lib/moderation/useModerationCauseDescription.ts:145 1161 + msgid "an unknown labeler" 1162 + msgstr "" 1163 + 1164 + #: src/components/WhoCanReply.tsx:372 1165 + msgid "and" 1166 + msgstr "" 1167 + 1168 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:88 1169 + msgid "Animal sexual abuse" 1170 + msgstr "" 1171 + 1172 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:130 1173 + msgid "Animal welfare" 1174 + msgstr "" 1175 + 1176 + #: src/lib/interests.ts:52 1177 + msgid "Animals" 1178 + msgstr "" 1179 + 1180 + #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:160 1181 + msgid "Animated GIF" 1182 + msgstr "" 1183 + 1184 + #: src/components/PolicyUpdateOverlay/Badge.tsx:35 1185 + msgid "Announcement" 1186 + msgstr "" 1187 + 1188 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:40 1189 + msgid "Announcing verification on Bluesky" 1190 + msgstr "" 1191 + 1192 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:451 1193 + msgid "Anyone" 1194 + msgstr "" 1195 + 1196 + #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:134 1197 + msgid "Anyone can interact" 1198 + msgstr "" 1199 + 1200 + #: src/screens/Settings/ActivityPrivacySettings.tsx:111 1201 + #: src/screens/Settings/ActivityPrivacySettings.tsx:116 1202 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:162 1203 + msgid "Anyone who follows me" 1204 + msgstr "" 1205 + 1206 + #: src/Navigation.tsx:571 1207 + #: src/screens/Settings/AppIconSettings/index.tsx:67 1208 + #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:18 1209 + #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:23 1210 + msgid "App Icon" 1211 + msgstr "" 1212 + 1213 + #: src/screens/Settings/DeerSettings.tsx:862 1214 + msgid "App labelers are mandatory top-level labelers that can perform \"takedowns\". This setting does not influence geolocation-based labelers." 1215 + msgstr "" 1216 + 1217 + #: src/screens/Settings/LanguageSettings.tsx:103 1218 + msgid "App language" 1219 + msgstr "" 1220 + 1221 + #: src/screens/Settings/LanguageSettings.tsx:87 1222 + msgid "App Language" 1223 + msgstr "" 1224 + 1225 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 1226 + msgid "App Password" 1227 + msgstr "" 1228 + 1229 + #: src/screens/Settings/AppPasswords.tsx:146 1230 + msgctxt "toast" 1231 + msgid "App password deleted" 1232 + msgstr "" 1233 + 1234 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 1235 + msgid "App password name must be unique" 1236 + msgstr "" 1237 + 1238 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 1239 + msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores" 1240 + msgstr "" 1241 + 1242 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 1243 + msgid "App password names must be at least 4 characters long" 1244 + msgstr "" 1245 + 1246 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:71 1247 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:74 1248 + msgid "App passwords" 1249 + msgstr "" 1250 + 1251 + #: src/Navigation.tsx:374 1252 + #: src/screens/Settings/AppPasswords.tsx:50 1253 + msgid "App Passwords" 1254 + msgstr "" 1255 + 1256 + #: src/components/moderation/LabelsOnMeDialog.tsx:154 1257 + #: src/components/moderation/LabelsOnMeDialog.tsx:157 1258 + msgid "Appeal" 1259 + msgstr "" 1260 + 1261 + #: src/components/moderation/LabelsOnMeDialog.tsx:281 1262 + msgid "Appeal \"{0}\" label" 1263 + msgstr "" 1264 + 1265 + #: src/components/live/GoLiveDisabledDialog.tsx:92 1266 + msgid "Appeal livestream suspension" 1267 + msgstr "" 1268 + 1269 + #: src/components/live/GoLiveDisabledDialog.tsx:82 1270 + #: src/components/moderation/LabelsOnMeDialog.tsx:271 1271 + #: src/screens/Messages/components/ChatDisabled.tsx:103 1272 + msgctxt "toast" 1273 + msgid "Appeal submitted" 1274 + msgstr "" 1275 + 1276 + #: src/screens/Takendown.tsx:114 1277 + #: src/screens/Takendown.tsx:142 1278 + msgid "Appeal suspension" 1279 + msgstr "" 1280 + 1281 + #: src/screens/Takendown.tsx:117 1282 + msgid "Appeal Suspension" 1283 + msgstr "" 1284 + 1285 + #: src/screens/Messages/components/ChatDisabled.tsx:57 1286 + #: src/screens/Messages/components/ChatDisabled.tsx:59 1287 + #: src/screens/Messages/components/ChatDisabled.tsx:111 1288 + #: src/screens/Messages/components/ChatDisabled.tsx:113 1289 + msgid "Appeal this decision" 1290 + msgstr "" 1291 + 1292 + #: src/Navigation.tsx:422 1293 + #: src/screens/Settings/AppearanceSettings.tsx:125 1294 + #: src/screens/Settings/Settings.tsx:232 1295 + #: src/screens/Settings/Settings.tsx:235 1296 + msgid "Appearance" 1297 + msgstr "" 1298 + 1299 + #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:51 1300 + #: src/screens/Home/NoFeedsPinned.tsx:93 1301 + msgid "Apply default recommended feeds" 1302 + msgstr "" 1303 + 1304 + #: src/screens/Settings/Settings.tsx:524 1305 + #: src/screens/Settings/Settings.tsx:526 1306 + msgid "Apply Pull Request" 1307 + msgstr "" 1308 + 1309 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:689 1310 + msgid "Archived from {0}" 1311 + msgstr "" 1312 + 1313 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:658 1314 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:697 1315 + msgid "Archived post" 1316 + msgstr "Archived skeet" 1317 + 1318 + #: src/screens/Settings/AppPasswords.tsx:209 1319 + msgid "Are you sure you want to delete the app password \"{0}\"?" 1320 + msgstr "" 1321 + 1322 + #: src/components/dms/MessageContextMenu.tsx:200 1323 + msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." 1324 + msgstr "" 1325 + 1326 + #: src/screens/StarterPack/StarterPackScreen.tsx:662 1327 + msgid "Are you sure you want to delete this starter pack?" 1328 + msgstr "" 1329 + 1330 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:91 1331 + #: src/screens/Profile/Header/EditProfileDialog.tsx:82 1332 + msgid "Are you sure you want to discard your changes?" 1333 + msgstr "" 1334 + 1335 + #: src/components/dms/LeaveConvoPrompt.tsx:46 1336 + msgid "Are you sure you want to leave this conversation?" 1337 + msgstr "" 1338 + 1339 + #: src/components/dms/LeaveConvoPrompt.tsx:45 1340 + msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." 1341 + msgstr "" 1342 + 1343 + #: src/components/FeedCard.tsx:372 1344 + msgid "Are you sure you want to remove this from your feeds?" 1345 + msgstr "" 1346 + 1347 + #: src/view/com/composer/Composer.tsx:809 1348 + msgid "Are you sure you'd like to discard this draft?" 1349 + msgstr "" 1350 + 1351 + #: src/view/com/composer/Composer.tsx:1001 1352 + msgid "Are you sure you'd like to discard this post?" 1353 + msgstr "Are you sure you'd like to discard this skeet?" 1354 + 1355 + #: src/components/dialogs/MutedWords.tsx:441 1356 + msgid "Are you sure?" 1357 + msgstr "" 1358 + 1359 + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:99 1360 + msgid "Are you writing in <0>{suggestedLanguageName}</0>?" 1361 + msgstr "" 1362 + 1363 + #: src/lib/interests.ts:53 1364 + msgid "Art" 1365 + msgstr "" 1366 + 1367 + #: src/view/com/composer/labels/LabelsBtn.tsx:166 1368 + msgid "Artistic or non-erotic nudity." 1369 + msgstr "" 1370 + 1371 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:832 1372 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:834 1373 + msgid "Assign topic for algo" 1374 + msgstr "" 1375 + 1376 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:208 1377 + msgid "At least 8 characters" 1378 + msgstr "" 1379 + 1380 + #: src/screens/Signup/StepInfo/index.tsx:204 1381 + msgid "ATmosphere" 1382 + msgstr "" 1383 + 1384 + #: src/components/forms/HostingProvider.tsx:30 1385 + msgid "Automatic" 1386 + msgstr "" 1387 + 1388 + #: src/screens/Settings/ContentAndMediaSettings.tsx:117 1389 + #: src/screens/Settings/ContentAndMediaSettings.tsx:123 1390 + msgid "Autoplay videos and GIFs" 1391 + msgstr "" 1392 + 1393 + #. Shown next to an available username suggestion in the account creation flow 1394 + #: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 1395 + msgid "Available" 1396 + msgstr "" 1397 + 1398 + #: src/components/moderation/LabelsOnMeDialog.tsx:333 1399 + #: src/components/moderation/LabelsOnMeDialog.tsx:334 1400 + #: src/screens/Login/ChooseAccountForm.tsx:91 1401 + #: src/screens/Login/ChooseAccountForm.tsx:96 1402 + #: src/screens/Login/ForgotPasswordForm.tsx:123 1403 + #: src/screens/Login/ForgotPasswordForm.tsx:129 1404 + #: src/screens/Login/LoginForm.tsx:338 1405 + #: src/screens/Login/LoginForm.tsx:344 1406 + #: src/screens/Login/SetNewPasswordForm.tsx:168 1407 + #: src/screens/Login/SetNewPasswordForm.tsx:174 1408 + #: src/screens/Messages/components/ChatDisabled.tsx:145 1409 + #: src/screens/Messages/components/ChatDisabled.tsx:146 1410 + #: src/screens/Profile/Header/Shell.tsx:213 1411 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:272 1412 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:281 1413 + #: src/screens/Signup/BackNextButtons.tsx:41 1414 + #: src/screens/StarterPack/Wizard/index.tsx:324 1415 + msgid "Back" 1416 + msgstr "" 1417 + 1418 + #: src/screens/Messages/Inbox.tsx:261 1419 + msgid "Back to Chats" 1420 + msgstr "" 1421 + 1422 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:216 1423 + msgid "Banned activities or security violations" 1424 + msgstr "" 1425 + 1426 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:227 1427 + msgid "Banned user returning" 1428 + msgstr "" 1429 + 1430 + #: src/view/screens/Lists.tsx:42 1431 + #: src/view/screens/ModerationModlists.tsx:42 1432 + msgid "Before creating a list, you must first verify your email." 1433 + msgstr "" 1434 + 1435 + #: src/lib/hooks/useOpenComposer.tsx:14 1436 + msgid "Before creating a post or replying, you must first verify your email." 1437 + msgstr "Before creating a skeet or replying, you must first verify your email." 1438 + 1439 + #: src/components/dialogs/StarterPackDialog.tsx:72 1440 + #: src/components/StarterPack/ProfileStarterPacks.tsx:263 1441 + #: src/components/StarterPack/ProfileStarterPacks.tsx:273 1442 + #: src/view/screens/Profile.tsx:351 1443 + msgid "Before creating a starter pack, you must first verify your email." 1444 + msgstr "" 1445 + 1446 + #: src/screens/Messages/components/RequestButtons.tsx:246 1447 + msgid "Before you can accept this chat request, you must first verify your email." 1448 + msgstr "" 1449 + 1450 + #: src/components/activity-notifications/SubscribeProfileButton.tsx:59 1451 + msgid "Before you can get notifications for {name}'s posts, you must first verify your email." 1452 + msgstr "Before you can get notifications for {name}'s skeets, you must first verify your email." 1453 + 1454 + #: src/components/dms/dialogs/NewChatDialog.tsx:54 1455 + #: src/components/dms/MessageProfileButton.tsx:61 1456 + #: src/screens/Messages/ChatList.tsx:374 1457 + #: src/screens/Messages/Conversation.tsx:228 1458 + msgid "Before you can message another user, you must first verify your email." 1459 + msgstr "" 1460 + 1461 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:317 1462 + msgid "Begin" 1463 + msgstr "" 1464 + 1465 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:311 1466 + msgid "Begin age assurance process" 1467 + msgstr "" 1468 + 1469 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 1470 + msgid "Begin the age assurance process by completing the fields below." 1471 + msgstr "" 1472 + 1473 + #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 1474 + msgid "Beta Feature" 1475 + msgstr "" 1476 + 1477 + #: src/components/dialogs/BirthDateSettings.tsx:162 1478 + msgid "Birthdate" 1479 + msgstr "" 1480 + 1481 + #: src/screens/Settings/AccountSettings.tsx:142 1482 + msgid "Birthday" 1483 + msgstr "" 1484 + 1485 + #: src/screens/Settings/AppearanceSettings.tsx:111 1486 + msgid "Blacksky" 1487 + msgstr "" 1488 + 1489 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1095 1490 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 1491 + #: src/view/com/profile/ProfileMenu.tsx:629 1492 + msgid "Block" 1493 + msgstr "" 1494 + 1495 + #: src/components/dms/ConvoMenu.tsx:264 1496 + #: src/components/dms/ConvoMenu.tsx:267 1497 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:980 1498 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:982 1499 + #: src/screens/Messages/components/RequestButtons.tsx:144 1500 + #: src/screens/Messages/components/RequestButtons.tsx:146 1501 + #: src/view/com/profile/ProfileMenu.tsx:535 1502 + #: src/view/com/profile/ProfileMenu.tsx:542 1503 + msgid "Block account" 1504 + msgstr "" 1505 + 1506 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1090 1507 + #: src/view/com/profile/ProfileMenu.tsx:612 1508 + msgid "Block Account?" 1509 + msgstr "" 1510 + 1511 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:100 1512 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:103 1513 + msgid "Block accounts" 1514 + msgstr "" 1515 + 1516 + #: src/components/dms/AfterReportDialog.tsx:145 1517 + msgid "Block and Delete" 1518 + msgstr "" 1519 + 1520 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:128 1521 + msgid "Block list" 1522 + msgstr "" 1523 + 1524 + #: src/screens/Messages/components/ChatStatusInfo.tsx:46 1525 + msgid "Block or report" 1526 + msgstr "" 1527 + 1528 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:123 1529 + msgid "Block these accounts?" 1530 + msgstr "" 1531 + 1532 + #: src/components/dms/AfterReportDialog.tsx:184 1533 + #: src/components/dms/AfterReportDialog.tsx:187 1534 + msgid "Block user" 1535 + msgstr "" 1536 + 1537 + #: src/components/dms/AfterReportDialog.tsx:151 1538 + msgid "Block User" 1539 + msgstr "" 1540 + 1541 + #: src/components/dms/AfterReportDialog.tsx:180 1542 + msgid "Block user and/or delete this conversation" 1543 + msgstr "" 1544 + 1545 + #: src/components/Post/Embed/index.tsx:207 1546 + #: src/components/Post/Embed/index.tsx:214 1547 + msgid "Blocked" 1548 + msgstr "" 1549 + 1550 + #: src/screens/Moderation/index.tsx:311 1551 + msgid "Blocked accounts" 1552 + msgstr "" 1553 + 1554 + #: src/Navigation.tsx:215 1555 + #: src/view/screens/ModerationBlockedAccounts.tsx:104 1556 + msgid "Blocked Accounts" 1557 + msgstr "" 1558 + 1559 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1092 1560 + #: src/view/com/profile/ProfileMenu.tsx:624 1561 + msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." 1562 + msgstr "" 1563 + 1564 + #: src/view/screens/ModerationBlockedAccounts.tsx:190 1565 + msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." 1566 + msgstr "" 1567 + 1568 + #: src/screens/Profile/Sections/Labels.tsx:202 1569 + msgid "Blocking does not prevent this labeler from placing labels on your account." 1570 + msgstr "" 1571 + 1572 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:125 1573 + msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." 1574 + msgstr "" 1575 + 1576 + #: src/view/com/profile/ProfileMenu.tsx:621 1577 + msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." 1578 + msgstr "" 1579 + 1580 + #: src/screens/Settings/AppearanceSettings.tsx:110 1581 + msgid "Bluesky" 1582 + msgstr "" 1583 + 1584 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:719 1585 + msgid "Bluesky cannot confirm the authenticity of the claimed date." 1586 + msgstr "" 1587 + 1588 + #: src/components/contacts/screens/GetContacts.tsx:232 1589 + msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes." 1590 + msgstr "" 1591 + 1592 + #: src/components/dialogs/ServerInput.tsx:180 1593 + msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." 1594 + msgstr "" 1595 + 1596 + #: src/components/dialogs/ServerInput.tsx:124 1597 + msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." 1598 + msgstr "" 1599 + 1600 + #: src/components/ProgressGuide/List.tsx:103 1601 + msgid "Bluesky is better with friends!" 1602 + msgstr "" 1603 + 1604 + #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:35 1605 + msgid "Bluesky is more fun with friends" 1606 + msgstr "" 1607 + 1608 + #: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:106 1609 + msgid "Bluesky is more fun with friends! Import your contacts to see whoโ€™s already here." 1610 + msgstr "" 1611 + 1612 + #: src/components/contacts/screens/ViewMatches.tsx:312 1613 + msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" 1614 + msgstr "" 1615 + 1616 + #: src/screens/Takendown.tsx:215 1617 + msgid "Bluesky Social Terms of Service" 1618 + msgstr "" 1619 + 1620 + #: src/screens/Settings/FindContactsSettings.tsx:542 1621 + msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." 1622 + msgstr "" 1623 + 1624 + #: src/components/StarterPack/ProfileStarterPacks.tsx:338 1625 + msgid "Bluesky will choose a set of recommended accounts from people in your network." 1626 + msgstr "" 1627 + 1628 + #: src/screens/Settings/components/PwiOptOut.tsx:99 1629 + msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." 1630 + msgstr "Bluesky will not show your profile and skeets to logged-out users. Other apps may not honor this request. This does not make your account private." 1631 + 1632 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:135 1633 + msgid "Bluesky will proactively verify notable and authentic accounts." 1634 + msgstr "" 1635 + 1636 + #: src/screens/Settings/AppIconSettings/index.tsx:99 1637 + msgid "Bluesky+" 1638 + msgstr "" 1639 + 1640 + #: src/screens/Settings/AppIconSettings/index.tsx:102 1641 + msgid "Bluesky+ icons" 1642 + msgstr "" 1643 + 1644 + #: src/lib/moderation/useLabelBehaviorDescription.ts:56 1645 + msgid "Blur images" 1646 + msgstr "" 1647 + 1648 + #: src/lib/moderation/useLabelBehaviorDescription.ts:54 1649 + msgid "Blur images and filter from feeds" 1650 + msgstr "" 1651 + 1652 + #: src/lib/interests.ts:54 1653 + msgid "Books" 1654 + msgstr "" 1655 + 1656 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 1657 + msgid "Breaking site rules" 1658 + msgstr "" 1659 + 1660 + #: src/screens/Settings/DeerSettings.tsx:425 1661 + msgid "Bridging and Fediverse" 1662 + msgstr "" 1663 + 1664 + #: src/view/com/feeds/ProfileFeedgens.tsx:167 1665 + #: src/view/com/feeds/ProfileFeedgens.tsx:168 1666 + msgid "Browse custom feeds" 1667 + msgstr "" 1668 + 1669 + #: src/components/FeedInterstitials.tsx:785 1670 + msgid "Browse more accounts" 1671 + msgstr "" 1672 + 1673 + #: src/components/FeedInterstitials.tsx:914 1674 + msgid "Browse more feeds on the Explore page" 1675 + msgstr "" 1676 + 1677 + #: src/components/FeedInterstitials.tsx:895 1678 + #: src/components/FeedInterstitials.tsx:898 1679 + msgid "Browse more suggestions" 1680 + msgstr "" 1681 + 1682 + #: src/components/FeedInterstitials.tsx:923 1683 + msgid "Browse more suggestions on the Explore page" 1684 + msgstr "" 1685 + 1686 + #: src/screens/Home/NoFeedsPinned.tsx:103 1687 + #: src/screens/Home/NoFeedsPinned.tsx:109 1688 + msgid "Browse other feeds" 1689 + msgstr "" 1690 + 1691 + #: src/components/TrendingTopics.tsx:183 1692 + msgid "Browse posts about {displayName}" 1693 + msgstr "Browse skeets about {displayName}" 1694 + 1695 + #: src/components/TrendingTopics.tsx:191 1696 + msgid "Browse posts tagged with {displayName}" 1697 + msgstr "Browse skeets tagged with {displayName}" 1698 + 1699 + #: src/components/TrendingTopics.tsx:200 1700 + msgid "Browse starter pack {displayName}" 1701 + msgstr "" 1702 + 1703 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:94 1704 + msgid "Browse topic {0}" 1705 + msgstr "" 1706 + 1707 + #: src/components/TrendingTopics.tsx:237 1708 + msgid "Browse topic {displayName}" 1709 + msgstr "" 1710 + 1711 + #: src/screens/Signup/StepInfo/index.tsx:249 1712 + msgid "bsky.app" 1713 + msgstr "" 1714 + 1715 + #: src/screens/Bookmarks/index.tsx:284 1716 + msgid "Button to go back to the home timeline" 1717 + msgstr "" 1718 + 1719 + #: src/components/LabelingServiceCard/index.tsx:62 1720 + #: src/components/moderation/ReportDialog/index.tsx:846 1721 + #: src/screens/Search/components/StarterPackCard.tsx:107 1722 + #: src/screens/Search/Explore.tsx:943 1723 + msgid "By {0}" 1724 + msgstr "" 1725 + 1726 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:457 1727 + msgid "By <0>{0}</0>" 1728 + msgstr "" 1729 + 1730 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:181 1731 + msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." 1732 + msgstr "" 1733 + 1734 + #: src/components/contacts/screens/PhoneInput.tsx:294 1735 + msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more</0>" 1736 + msgstr "" 1737 + 1738 + #: src/screens/Signup/StepInfo/Policies.tsx:75 1739 + msgid "By creating an account you agree to the <0>Privacy Policy</0>." 1740 + msgstr "" 1741 + 1742 + #: src/screens/Signup/StepInfo/Policies.tsx:42 1743 + msgid "By creating an account you agree to the <0>Terms of Service</0> and <1>Privacy Policy</1>." 1744 + msgstr "" 1745 + 1746 + #: src/screens/Signup/StepInfo/Policies.tsx:62 1747 + msgid "By creating an account you agree to the <0>Terms of Service</0>." 1748 + msgstr "" 1749 + 1750 + #: src/screens/Search/components/StarterPackCard.tsx:106 1751 + msgid "By you" 1752 + msgstr "" 1753 + 1754 + #: src/view/com/composer/photos/OpenCameraBtn.tsx:73 1755 + msgid "Camera" 1756 + msgstr "" 1757 + 1758 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:206 1759 + #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128 1760 + #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:134 1761 + #: src/components/contacts/screens/GetContacts.tsx:289 1762 + #: src/components/contacts/screens/GetContacts.tsx:294 1763 + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:152 1764 + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:157 1765 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:125 1766 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:131 1767 + #: src/components/dialogs/InAppBrowserConsent.tsx:98 1768 + #: src/components/dialogs/InAppBrowserConsent.tsx:104 1769 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:277 1770 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:285 1771 + #: src/components/live/GoLiveDialog.tsx:246 1772 + #: src/components/live/GoLiveDialog.tsx:252 1773 + #: src/components/Menu/index.tsx:354 1774 + #: src/components/PostControls/RepostButton.tsx:209 1775 + #: src/components/Prompt.tsx:144 1776 + #: src/components/Prompt.tsx:146 1777 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:151 1778 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:156 1779 + #: src/lib/media/picker.tsx:38 1780 + #: src/screens/Deactivated.tsx:149 1781 + #: src/screens/Profile/Header/EditProfileDialog.tsx:223 1782 + #: src/screens/Profile/Header/EditProfileDialog.tsx:231 1783 + #: src/screens/Search/Shell.tsx:370 1784 + #: src/screens/Settings/AppIconSettings/index.tsx:44 1785 + #: src/screens/Settings/AppIconSettings/index.tsx:230 1786 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:80 1787 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:87 1788 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:247 1789 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:253 1790 + #: src/screens/Settings/Settings.tsx:315 1791 + #: src/screens/Takendown.tsx:102 1792 + #: src/screens/Takendown.tsx:105 1793 + #: src/view/com/composer/Composer.tsx:1060 1794 + #: src/view/com/composer/Composer.tsx:1075 1795 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:46 1796 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:55 1797 + #: src/view/shell/desktop/LeftNav.tsx:216 1798 + msgid "Cancel" 1799 + msgstr "" 1800 + 1801 + #: src/view/com/modals/DeleteAccount.tsx:170 1802 + #: src/view/com/modals/DeleteAccount.tsx:284 1803 + msgctxt "action" 1804 + msgid "Cancel" 1805 + msgstr "" 1806 + 1807 + #: src/view/com/modals/DeleteAccount.tsx:166 1808 + #: src/view/com/modals/DeleteAccount.tsx:280 1809 + msgid "Cancel account deletion" 1810 + msgstr "" 1811 + 1812 + #: src/components/PostControls/RepostButton.tsx:204 1813 + msgid "Cancel quote post" 1814 + msgstr "" 1815 + 1816 + #: src/screens/Deactivated.tsx:143 1817 + msgid "Cancel reactivation and sign out" 1818 + msgstr "" 1819 + 1820 + #: src/screens/Search/Shell.tsx:361 1821 + msgid "Cancel search" 1822 + msgstr "" 1823 + 1824 + #: src/components/PostControls/index.tsx:115 1825 + #: src/components/PostControls/index.tsx:146 1826 + #: src/components/PostControls/index.tsx:174 1827 + #: src/state/shell/composer/index.tsx:108 1828 + msgid "Cannot interact with a blocked user" 1829 + msgstr "" 1830 + 1831 + #: src/view/com/composer/videos/SubtitleDialog.tsx:153 1832 + msgid "Captions (.vtt)" 1833 + msgstr "" 1834 + 1835 + #: src/view/com/composer/videos/SubtitleDialog.tsx:41 1836 + #: src/view/com/composer/videos/SubtitleDialog.tsx:57 1837 + msgid "Captions & alt text" 1838 + msgstr "" 1839 + 1840 + #: src/components/RichTextTag.tsx:52 1841 + msgid "Cashtag {tag}" 1842 + msgstr "" 1843 + 1844 + #: src/screens/Settings/components/Email2FAToggle.tsx:31 1845 + #: src/screens/Settings/DeerSettings.tsx:497 1846 + msgid "Change" 1847 + msgstr "" 1848 + 1849 + #: src/screens/Settings/AppIconSettings/index.tsx:39 1850 + msgid "Change app icon" 1851 + msgstr "" 1852 + 1853 + #: src/screens/Settings/AppIconSettings/index.tsx:38 1854 + #: src/screens/Settings/AppIconSettings/index.tsx:226 1855 + msgid "Change app icon to \"{0}\"" 1856 + msgstr "" 1857 + 1858 + #: src/components/AppLanguageDropdown.tsx:40 1859 + msgid "Change app language" 1860 + msgstr "" 1861 + 1862 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:96 1863 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:100 1864 + msgid "Change Handle" 1865 + msgstr "" 1866 + 1867 + #: src/components/moderation/ReportDialog/index.tsx:440 1868 + msgid "Change moderation service" 1869 + msgstr "" 1870 + 1871 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:261 1872 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:267 1873 + msgid "Change password" 1874 + msgstr "" 1875 + 1876 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:164 1877 + msgid "Change password dialog" 1878 + msgstr "" 1879 + 1880 + #: src/components/moderation/ReportDialog/index.tsx:305 1881 + msgid "Change report category" 1882 + msgstr "" 1883 + 1884 + #: src/components/moderation/ReportDialog/index.tsx:385 1885 + msgid "Change report reason" 1886 + msgstr "" 1887 + 1888 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:57 1889 + msgid "Change your password" 1890 + msgstr "" 1891 + 1892 + #: src/screens/Settings/AppIconSettings/index.tsx:221 1893 + msgid "Changes app icon" 1894 + msgstr "" 1895 + 1896 + #: src/components/forms/HostingProvider.tsx:51 1897 + #: src/components/forms/HostingProvider.tsx:69 1898 + msgid "Changes hosting provider" 1899 + msgstr "" 1900 + 1901 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:174 1902 + msgid "Changes saved" 1903 + msgstr "" 1904 + 1905 + #: src/lib/hooks/useNotificationHandler.ts:99 1906 + #: src/Navigation.tsx:588 1907 + #: src/view/shell/bottom-bar/BottomBar.tsx:225 1908 + #: src/view/shell/desktop/LeftNav.tsx:618 1909 + #: src/view/shell/Drawer.tsx:484 1910 + msgid "Chat" 1911 + msgstr "" 1912 + 1913 + #: src/screens/Messages/components/RequestButtons.tsx:78 1914 + #: src/screens/Messages/components/RequestButtons.tsx:313 1915 + msgctxt "toast" 1916 + msgid "Chat deleted" 1917 + msgstr "" 1918 + 1919 + #: src/lib/hooks/useNotificationHandler.ts:114 1920 + msgid "Chat messages - silent" 1921 + msgstr "" 1922 + 1923 + #: src/lib/hooks/useNotificationHandler.ts:105 1924 + msgid "Chat messages - sound" 1925 + msgstr "" 1926 + 1927 + #: src/components/dms/ConvoMenu.tsx:193 1928 + msgctxt "toast" 1929 + msgid "Chat muted" 1930 + msgstr "" 1931 + 1932 + #: src/Navigation.tsx:598 1933 + #: src/screens/Messages/components/InboxPreview.tsx:24 1934 + msgid "Chat request inbox" 1935 + msgstr "" 1936 + 1937 + #: src/screens/Messages/components/InboxPreview.tsx:64 1938 + #: src/screens/Messages/Inbox.tsx:56 1939 + #: src/screens/Messages/Inbox.tsx:98 1940 + msgid "Chat requests" 1941 + msgstr "" 1942 + 1943 + #: src/components/dms/ConvoMenu.tsx:81 1944 + #: src/Navigation.tsx:593 1945 + #: src/screens/Messages/ChatList.tsx:82 1946 + #: src/screens/Messages/ChatList.tsx:86 1947 + #: src/screens/Messages/ChatList.tsx:383 1948 + msgid "Chat settings" 1949 + msgstr "" 1950 + 1951 + #: src/screens/Messages/Settings.tsx:67 1952 + msgid "Chat Settings" 1953 + msgstr "" 1954 + 1955 + #: src/components/dms/ConvoMenu.tsx:195 1956 + msgctxt "toast" 1957 + msgid "Chat unmuted" 1958 + msgstr "" 1959 + 1960 + #: src/screens/Messages/ChatList.tsx:77 1961 + #: src/screens/Messages/ChatList.tsx:399 1962 + #: src/screens/Messages/ChatList.tsx:423 1963 + msgid "Chats" 1964 + msgstr "" 1965 + 1966 + #: src/screens/SignupQueued.tsx:78 1967 + #: src/screens/SignupQueued.tsx:82 1968 + msgid "Check my status" 1969 + msgstr "" 1970 + 1971 + #: src/screens/Login/LoginForm.tsx:329 1972 + msgid "Check your email for a sign in code and enter it here." 1973 + msgstr "" 1974 + 1975 + #: src/view/com/modals/DeleteAccount.tsx:213 1976 + msgid "Check your inbox for an email with the confirmation code to enter below:" 1977 + msgstr "" 1978 + 1979 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:161 1980 + msgid "Child safety" 1981 + msgstr "" 1982 + 1983 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:165 1984 + msgid "Child Sexual Abuse Material (CSAM)" 1985 + msgstr "" 1986 + 1987 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:401 1988 + msgid "Choose domain verification method" 1989 + msgstr "" 1990 + 1991 + #: src/screens/StarterPack/Wizard/index.tsx:218 1992 + msgid "Choose Feeds" 1993 + msgstr "" 1994 + 1995 + #: src/components/StarterPack/ProfileStarterPacks.tsx:346 1996 + msgid "Choose for me" 1997 + msgstr "" 1998 + 1999 + #: src/screens/StarterPack/Wizard/index.tsx:214 2000 + msgid "Choose People" 2001 + msgstr "" 2002 + 2003 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:187 2004 + msgid "Choose Post Languages" 2005 + msgstr "Choose skeet Languages" 2006 + 2007 + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 2008 + msgid "Choose this color as your avatar" 2009 + msgstr "" 2010 + 2011 + #: src/screens/Settings/AppearanceSettings.tsx:183 2012 + msgid "Choose which color scheme to use:" 2013 + msgstr "" 2014 + 2015 + #: src/components/contacts/components/InviteInfo.tsx:56 2016 + msgid "Choose who to invite" 2017 + msgstr "" 2018 + 2019 + #: src/components/dialogs/ServerInput.tsx:119 2020 + msgid "Choose your account provider" 2021 + msgstr "" 2022 + 2023 + #: src/view/screens/Feeds.tsx:738 2024 + msgid "Choose your own timeline! Feeds built by the community help you find content you love." 2025 + msgstr "" 2026 + 2027 + #: src/screens/Signup/StepInfo/index.tsx:345 2028 + msgid "Choose your password" 2029 + msgstr "" 2030 + 2031 + #: src/screens/Signup/index.tsx:187 2032 + msgid "Choose your username" 2033 + msgstr "" 2034 + 2035 + #: src/screens/Settings/Settings.tsx:516 2036 + msgid "Clear all storage data" 2037 + msgstr "" 2038 + 2039 + #: src/screens/Settings/Settings.tsx:518 2040 + msgid "Clear all storage data (restart after this)" 2041 + msgstr "" 2042 + 2043 + #: src/screens/Settings/AboutSettings.tsx:114 2044 + #: src/screens/Settings/AboutSettings.tsx:118 2045 + msgid "Clear image cache" 2046 + msgstr "" 2047 + 2048 + #: src/components/forms/SearchInput.tsx:73 2049 + msgid "Clear search query" 2050 + msgstr "" 2051 + 2052 + #: src/view/com/feeds/MissingFeed.tsx:87 2053 + msgid "Click for information" 2054 + msgstr "" 2055 + 2056 + #: src/view/screens/Support.tsx:44 2057 + msgid "click here" 2058 + msgstr "" 2059 + 2060 + #: src/ageAssurance/components/NoAccessScreen.tsx:126 2061 + msgid "Click here to contact our support team" 2062 + msgstr "" 2063 + 2064 + #: src/ageAssurance/components/NoAccessScreen.tsx:245 2065 + msgid "Click here to log out" 2066 + msgstr "" 2067 + 2068 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:383 2069 + msgid "Click here to restart the verification process." 2070 + msgstr "" 2071 + 2072 + #: src/ageAssurance/components/NoAccessScreen.tsx:103 2073 + #: src/ageAssurance/components/NoAccessScreen.tsx:228 2074 + msgid "Click here to update your birthdate" 2075 + msgstr "" 2076 + 2077 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:275 2078 + msgid "Click here to update your email" 2079 + msgstr "" 2080 + 2081 + #: src/components/RichTextTag.tsx:55 2082 + msgid "Click to open tag menu for {0}" 2083 + msgstr "" 2084 + 2085 + #: src/components/dms/MessageItem.tsx:318 2086 + msgid "Click to retry failed message" 2087 + msgstr "" 2088 + 2089 + #: src/components/dms/ChatEmptyPill.tsx:42 2090 + msgid "Clip ๐Ÿด clop ๐Ÿด" 2091 + msgstr "" 2092 + 2093 + #: src/ageAssurance/components/RedirectOverlay.tsx:268 2094 + #: src/ageAssurance/components/RedirectOverlay.tsx:274 2095 + #: src/ageAssurance/components/RedirectOverlay.tsx:324 2096 + #: src/ageAssurance/components/RedirectOverlay.tsx:330 2097 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:172 2098 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:178 2099 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:231 2100 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:237 2101 + #: src/components/dialogs/GifSelect.tsx:272 2102 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:161 2103 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:170 2104 + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:163 2105 + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:171 2106 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:181 2107 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:190 2108 + #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 2109 + #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 2110 + #: src/components/dialogs/SearchablePeopleList.tsx:298 2111 + #: src/components/dialogs/StarterPackDialog.tsx:182 2112 + #: src/components/dms/AfterReportDialog.tsx:93 2113 + #: src/components/dms/AfterReportDialog.tsx:98 2114 + #: src/components/dms/AfterReportDialog.tsx:208 2115 + #: src/components/dms/AfterReportDialog.tsx:213 2116 + #: src/components/dms/EmojiPopup.android.tsx:61 2117 + #: src/components/live/EditLiveDialog.tsx:215 2118 + #: src/components/live/EditLiveDialog.tsx:221 2119 + #: src/components/NewskieDialog.tsx:167 2120 + #: src/components/NewskieDialog.tsx:173 2121 + #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:208 2122 + #: src/components/ProgressGuide/FollowDialog.tsx:446 2123 + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:118 2124 + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:124 2125 + #: src/components/verification/VerificationsDialog.tsx:145 2126 + #: src/components/verification/VerifierDialog.tsx:155 2127 + #: src/components/WhoCanReply.tsx:234 2128 + #: src/components/WhoCanReply.tsx:241 2129 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:287 2130 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:292 2131 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:338 2132 + #: src/view/com/feeds/MissingFeed.tsx:210 2133 + #: src/view/com/feeds/MissingFeed.tsx:217 2134 + msgid "Close" 2135 + msgstr "" 2136 + 2137 + #: src/components/Dialog/index.web.tsx:119 2138 + #: src/components/Dialog/index.web.tsx:300 2139 + msgid "Close active dialog" 2140 + msgstr "" 2141 + 2142 + #: src/screens/Login/PasswordUpdatedForm.tsx:31 2143 + msgid "Close alert" 2144 + msgstr "" 2145 + 2146 + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:37 2147 + msgid "Close bottom drawer" 2148 + msgstr "" 2149 + 2150 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:222 2151 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:228 2152 + #: src/components/dialogs/GifSelect.tsx:266 2153 + #: src/components/verification/VerificationsDialog.tsx:137 2154 + #: src/components/verification/VerifierDialog.tsx:147 2155 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:207 2156 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:301 2157 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:333 2158 + msgid "Close dialog" 2159 + msgstr "" 2160 + 2161 + #: src/view/shell/index.web.tsx:162 2162 + msgid "Close drawer menu" 2163 + msgstr "" 2164 + 2165 + #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:136 2166 + #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:172 2167 + msgid "Close emoji picker" 2168 + msgstr "" 2169 + 2170 + #: src/components/dialogs/GifSelect.tsx:162 2171 + msgid "Close GIF dialog" 2172 + msgstr "" 2173 + 2174 + #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36 2175 + msgid "Close image" 2176 + msgstr "" 2177 + 2178 + #: src/view/com/lightbox/Lightbox.web.tsx:110 2179 + msgid "Close image viewer" 2180 + msgstr "" 2181 + 2182 + #: src/components/ContextMenu/Backdrop.ios.tsx:53 2183 + #: src/components/ContextMenu/Backdrop.ios.tsx:79 2184 + #: src/components/ContextMenu/Backdrop.tsx:45 2185 + msgid "Close menu" 2186 + msgstr "" 2187 + 2188 + #: src/components/Menu/index.tsx:348 2189 + msgid "Close this dialog" 2190 + msgstr "" 2191 + 2192 + #: src/components/WelcomeModal.tsx:214 2193 + msgid "Close welcome modal" 2194 + msgstr "" 2195 + 2196 + #: src/screens/Login/PasswordUpdatedForm.tsx:32 2197 + msgid "Closes password update alert" 2198 + msgstr "" 2199 + 2200 + #: src/view/com/composer/Composer.tsx:1072 2201 + msgid "Closes post composer and discards post draft" 2202 + msgstr "Closes skeet composer and discards skeet draft" 2203 + 2204 + #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:137 2205 + #: src/view/com/composer/text-input/web/EmojiPicker.web.tsx:173 2206 + msgid "Closes the emoji picker" 2207 + msgstr "" 2208 + 2209 + #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 2210 + msgid "Closes viewer for header image" 2211 + msgstr "" 2212 + 2213 + #: src/screens/Settings/Settings.tsx:262 2214 + #: src/view/shell/desktop/RightNav.tsx:128 2215 + #: src/view/shell/desktop/RightNav.tsx:131 2216 + #: src/view/shell/Drawer.tsx:399 2217 + msgid "Code" 2218 + msgstr "" 2219 + 2220 + #: src/view/com/notifications/NotificationFeedItem.tsx:606 2221 + msgid "Collapse list of users" 2222 + msgstr "" 2223 + 2224 + #: src/view/com/notifications/NotificationFeedItem.tsx:931 2225 + msgid "Collapses list of users for a given notification" 2226 + msgstr "" 2227 + 2228 + #: src/components/dialogs/Embed.tsx:154 2229 + #: src/screens/Settings/AppearanceSettings.tsx:133 2230 + msgid "Color mode" 2231 + msgstr "" 2232 + 2233 + #: src/components/dialogs/Embed.tsx:151 2234 + msgid "Color theme" 2235 + msgstr "" 2236 + 2237 + #: src/screens/Settings/AppearanceSettings.tsx:179 2238 + #: src/screens/Settings/AppearanceSettings.tsx:186 2239 + msgid "Color Theme" 2240 + msgstr "" 2241 + 2242 + #: src/screens/Settings/DeerSettings.tsx:518 2243 + #: src/screens/Settings/DeerSettings.tsx:523 2244 + #: src/screens/Settings/DeerSettings.tsx:556 2245 + #: src/screens/Settings/DeerSettings.tsx:561 2246 + msgid "Combine reposts into a horizontal carousel" 2247 + msgstr "Combine reskeets into a horizontal carousel" 2248 + 2249 + #: src/lib/interests.ts:55 2250 + msgid "Comedy" 2251 + msgstr "" 2252 + 2253 + #: src/lib/interests.ts:56 2254 + msgid "Comics" 2255 + msgstr "" 2256 + 2257 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:45 2258 + #: src/Navigation.tsx:364 2259 + #: src/view/screens/CommunityGuidelines.tsx:37 2260 + msgid "Community Guidelines" 2261 + msgstr "" 2262 + 2263 + #: src/screens/Onboarding/StepFinished/index.tsx:328 2264 + msgid "Complete onboarding and start using your account" 2265 + msgstr "" 2266 + 2267 + #: src/screens/Signup/index.tsx:189 2268 + msgid "Complete the challenge" 2269 + msgstr "" 2270 + 2271 + #: src/view/com/feeds/ComposerPrompt.tsx:143 2272 + #: src/view/shell/desktop/LeftNav.tsx:583 2273 + msgid "Compose new post" 2274 + msgstr "Compose new skeet" 2275 + 2276 + #: src/view/com/composer/Composer.tsx:965 2277 + msgid "Compose posts up to {0, plural, other {# characters}} in length" 2278 + msgstr "Compose skeets up to {0, plural, other {# characters}} in length" 2279 + 2280 + #: src/screens/PostThread/components/ThreadComposePrompt.tsx:64 2281 + msgid "Compose reply" 2282 + msgstr "" 2283 + 2284 + #: src/view/com/composer/Composer.tsx:1924 2285 + msgid "Compressing video..." 2286 + msgstr "" 2287 + 2288 + #: src/components/moderation/LabelPreference.tsx:87 2289 + msgid "Configure content filtering setting for category: {name}" 2290 + msgstr "" 2291 + 2292 + #: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 2293 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:36 2294 + msgid "Configure live event banner" 2295 + msgstr "" 2296 + 2297 + #: src/components/moderation/LabelPreference.tsx:253 2298 + msgid "Configured in <0>moderation settings</0>." 2299 + msgstr "" 2300 + 2301 + #: src/components/Prompt.tsx:187 2302 + #: src/components/Prompt.tsx:190 2303 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:185 2304 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:188 2305 + msgid "Confirm" 2306 + msgstr "" 2307 + 2308 + #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34 2309 + msgid "Confirm content language settings" 2310 + msgstr "" 2311 + 2312 + #: src/view/com/modals/DeleteAccount.tsx:270 2313 + msgid "Confirm delete account" 2314 + msgstr "" 2315 + 2316 + #: src/ageAssurance/components/NoAccessScreen.tsx:368 2317 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:95 2318 + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:40 2319 + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:105 2320 + msgid "Confirm your location" 2321 + msgstr "" 2322 + 2323 + #: src/components/dialogs/EmailDialog/components/TokenField.tsx:36 2324 + #: src/screens/Login/LoginForm.tsx:309 2325 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:186 2326 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:190 2327 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:144 2328 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:150 2329 + #: src/view/com/modals/DeleteAccount.tsx:220 2330 + #: src/view/com/modals/DeleteAccount.tsx:229 2331 + msgid "Confirmation code" 2332 + msgstr "" 2333 + 2334 + #: src/screens/Login/LoginForm.tsx:365 2335 + msgid "Connecting..." 2336 + msgstr "" 2337 + 2338 + #: src/ageAssurance/components/RedirectOverlay.tsx:300 2339 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207 2340 + msgid "Connection issue" 2341 + msgstr "" 2342 + 2343 + #: src/screens/Settings/DeerSettings.tsx:494 2344 + msgid "Constellation Instance" 2345 + msgstr "" 2346 + 2347 + #: src/screens/Settings/DeerSettings.tsx:503 2348 + msgid "Constellation is used to supplement AppView responses for custom verifications and nuclear block bypass, via backlinks. Current instance: {constellationInstance}" 2349 + msgstr "" 2350 + 2351 + #: src/screens/Settings/DeerSettings.tsx:184 2352 + #: src/screens/Settings/DeerSettings.tsx:187 2353 + msgid "Constellations instance URL" 2354 + msgstr "" 2355 + 2356 + #: src/ageAssurance/components/NoAccessScreen.tsx:305 2357 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:138 2358 + #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:29 2359 + msgid "Contact our moderation team" 2360 + msgstr "" 2361 + 2362 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 2363 + #: src/screens/Signup/index.tsx:231 2364 + msgid "Contact support" 2365 + msgstr "" 2366 + 2367 + #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:57 2368 + #: src/screens/Settings/FindContactsSettings.tsx:154 2369 + msgid "Contact sync is not available on this device, as the app is unable to access your contacts." 2370 + msgstr "" 2371 + 2372 + #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:93 2373 + msgid "Contact us" 2374 + msgstr "" 2375 + 2376 + #: src/screens/Settings/FindContactsSettings.tsx:498 2377 + msgid "Contacts imported" 2378 + msgstr "" 2379 + 2380 + #: src/screens/Settings/FindContactsSettings.tsx:471 2381 + msgid "Contacts removed" 2382 + msgstr "" 2383 + 2384 + #: src/screens/Settings/ContentAndMediaSettings.tsx:52 2385 + msgid "Content & Media" 2386 + msgstr "" 2387 + 2388 + #: src/screens/Settings/Settings.tsx:212 2389 + #: src/screens/Settings/Settings.tsx:215 2390 + msgid "Content and media" 2391 + msgstr "" 2392 + 2393 + #: src/Navigation.tsx:547 2394 + msgid "Content and Media" 2395 + msgstr "" 2396 + 2397 + #: src/lib/moderation/useGlobalLabelStrings.ts:18 2398 + msgid "Content Blocked" 2399 + msgstr "" 2400 + 2401 + #: src/screens/Moderation/index.tsx:344 2402 + msgid "Content filters" 2403 + msgstr "" 2404 + 2405 + #: src/screens/Search/modules/ExploreRecommendations.tsx:59 2406 + msgid "Content from across the network we think you might like." 2407 + msgstr "" 2408 + 2409 + #: src/screens/Settings/LanguageSettings.tsx:155 2410 + #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:76 2411 + msgid "Content Languages" 2412 + msgstr "" 2413 + 2414 + #: src/components/moderation/ModerationDetailsDialog.tsx:84 2415 + #: src/lib/moderation/useModerationCauseDescription.ts:83 2416 + msgid "Content Not Available" 2417 + msgstr "" 2418 + 2419 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:192 2420 + msgid "Content promoting or depicting self-harm" 2421 + msgstr "" 2422 + 2423 + #: src/components/moderation/ModerationDetailsDialog.tsx:52 2424 + #: src/components/moderation/ScreenHider.tsx:102 2425 + #: src/lib/moderation/useGlobalLabelStrings.ts:22 2426 + #: src/lib/moderation/useModerationCauseDescription.ts:46 2427 + msgid "Content Warning" 2428 + msgstr "" 2429 + 2430 + #: src/view/com/composer/labels/LabelsBtn.tsx:60 2431 + msgid "Content warnings" 2432 + msgstr "" 2433 + 2434 + #: src/components/Menu/index.web.tsx:92 2435 + msgid "Context menu backdrop, click to close the menu." 2436 + msgstr "" 2437 + 2438 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2439 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2440 + #: src/screens/Onboarding/StepInterests/index.tsx:91 2441 + #: src/screens/Onboarding/StepProfile/index.tsx:287 2442 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:276 2443 + #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:116 2444 + msgid "Continue" 2445 + msgstr "" 2446 + 2447 + #: src/components/AccountList.tsx:138 2448 + msgid "Continue as {0} (currently signed in)" 2449 + msgstr "" 2450 + 2451 + #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:27 2452 + msgid "Continue thread" 2453 + msgstr "" 2454 + 2455 + #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:63 2456 + msgid "Continue thread..." 2457 + msgstr "" 2458 + 2459 + #: src/screens/Onboarding/StepInterests/index.tsx:88 2460 + #: src/screens/Onboarding/StepProfile/index.tsx:284 2461 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:273 2462 + #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:113 2463 + #: src/screens/Signup/BackNextButtons.tsx:60 2464 + msgid "Continue to next step" 2465 + msgstr "" 2466 + 2467 + #: src/screens/Messages/Conversation.tsx:57 2468 + msgid "Conversation" 2469 + msgstr "" 2470 + 2471 + #: src/components/dms/AfterReportDialog.tsx:146 2472 + #: src/components/dms/AfterReportDialog.tsx:149 2473 + msgctxt "toast" 2474 + msgid "Conversation deleted" 2475 + msgstr "" 2476 + 2477 + #: src/screens/Messages/components/ChatListItem.tsx:202 2478 + msgid "Conversation deleted" 2479 + msgstr "" 2480 + 2481 + #: src/screens/Settings/AboutSettings.tsx:149 2482 + msgid "Copied build version to clipboard" 2483 + msgstr "" 2484 + 2485 + #: src/components/dms/MessageContextMenu.tsx:57 2486 + #: src/components/PostControls/DiscoverDebug.tsx:36 2487 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:419 2488 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:84 2489 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:97 2490 + #: src/lib/sharing.ts:25 2491 + #: src/lib/sharing.ts:41 2492 + msgid "Copied to clipboard" 2493 + msgstr "" 2494 + 2495 + #: src/components/dialogs/Embed.tsx:202 2496 + #: src/screens/Settings/components/CopyButton.tsx:66 2497 + msgid "Copied!" 2498 + msgstr "" 2499 + 2500 + #: src/screens/Settings/AboutSettings.tsx:125 2501 + msgid "Copies build version to clipboard" 2502 + msgstr "" 2503 + 2504 + #: src/components/StarterPack/QrCodeDialog.tsx:192 2505 + msgid "Copy" 2506 + msgstr "" 2507 + 2508 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 2509 + msgid "Copy App Password" 2510 + msgstr "" 2511 + 2512 + #: src/view/com/profile/ProfileMenu.tsx:572 2513 + #: src/view/com/profile/ProfileMenu.tsx:575 2514 + msgid "Copy at:// URI" 2515 + msgstr "" 2516 + 2517 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:212 2518 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:215 2519 + msgid "Copy author DID" 2520 + msgstr "" 2521 + 2522 + #: src/components/dialogs/Embed.tsx:190 2523 + #: src/components/dialogs/Embed.tsx:207 2524 + msgid "Copy code" 2525 + msgstr "" 2526 + 2527 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:504 2528 + #: src/view/com/profile/ProfileMenu.tsx:581 2529 + #: src/view/com/profile/ProfileMenu.tsx:584 2530 + msgid "Copy DID" 2531 + msgstr "" 2532 + 2533 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:436 2534 + msgid "Copy host" 2535 + msgstr "" 2536 + 2537 + #: src/components/StarterPack/ShareDialog.tsx:113 2538 + #: src/screens/StarterPack/StarterPackScreen.tsx:622 2539 + msgid "Copy link" 2540 + msgstr "" 2541 + 2542 + #: src/components/StarterPack/ShareDialog.tsx:120 2543 + msgid "Copy Link" 2544 + msgstr "" 2545 + 2546 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:168 2547 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:172 2548 + msgid "Copy link to list" 2549 + msgstr "" 2550 + 2551 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:202 2552 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:205 2553 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:112 2554 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:115 2555 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:121 2556 + msgid "Copy link to post" 2557 + msgstr "Copy link to skeet" 2558 + 2559 + #: src/view/com/profile/ProfileMenu.tsx:292 2560 + #: src/view/com/profile/ProfileMenu.tsx:303 2561 + msgid "Copy link to profile" 2562 + msgstr "" 2563 + 2564 + #: src/screens/StarterPack/StarterPackScreen.tsx:615 2565 + msgid "Copy link to starter pack" 2566 + msgstr "" 2567 + 2568 + #: src/components/dms/MessageContextMenu.tsx:146 2569 + #: src/components/dms/MessageContextMenu.tsx:149 2570 + msgid "Copy message text" 2571 + msgstr "" 2572 + 2573 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:203 2574 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:206 2575 + msgid "Copy post at:// URI" 2576 + msgstr "Copy skeet at:// URI" 2577 + 2578 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 2579 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 2580 + msgid "Copy post text" 2581 + msgstr "Copy skeet text" 2582 + 2583 + #: src/components/StarterPack/QrCodeDialog.tsx:178 2584 + msgid "Copy QR code" 2585 + msgstr "" 2586 + 2587 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:457 2588 + msgid "Copy TXT record value" 2589 + msgstr "" 2590 + 2591 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:212 2592 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:215 2593 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:124 2594 + #: src/view/com/profile/ProfileMenu.tsx:316 2595 + #: src/view/com/profile/ProfileMenu.tsx:328 2596 + msgid "Copy via bsky.app" 2597 + msgstr "" 2598 + 2599 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:40 2600 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:107 2601 + #: src/Navigation.tsx:369 2602 + #: src/view/screens/CopyrightPolicy.tsx:34 2603 + msgid "Copyright Policy" 2604 + msgstr "" 2605 + 2606 + #: src/view/com/feeds/MissingFeed.tsx:41 2607 + msgid "Could not connect to custom feed" 2608 + msgstr "" 2609 + 2610 + #: src/view/com/feeds/MissingFeed.tsx:133 2611 + msgid "Could not connect to feed service" 2612 + msgstr "" 2613 + 2614 + #: src/view/com/feeds/MissingFeed.tsx:182 2615 + msgid "Could not find profile" 2616 + msgstr "" 2617 + 2618 + #: src/screens/Settings/FindContactsSettings.tsx:208 2619 + #: src/screens/Settings/FindContactsSettings.tsx:397 2620 + msgid "Could not follow all matches - please check your network connection." 2621 + msgstr "" 2622 + 2623 + #: src/screens/Settings/FindContactsSettings.tsx:214 2624 + #: src/screens/Settings/FindContactsSettings.tsx:403 2625 + msgid "Could not follow all matches. {0}" 2626 + msgstr "" 2627 + 2628 + #: src/components/dms/AfterReportDialog.tsx:138 2629 + #: src/components/dms/LeaveConvoPrompt.tsx:35 2630 + msgid "Could not leave chat" 2631 + msgstr "" 2632 + 2633 + #: src/screens/Profile/ProfileFeed/index.tsx:84 2634 + msgid "Could not load feed" 2635 + msgstr "" 2636 + 2637 + #: src/screens/ProfileList/components/ErrorScreen.tsx:26 2638 + #: src/screens/ProfileList/index.tsx:79 2639 + #: src/screens/ProfileList/index.tsx:101 2640 + msgid "Could not load list" 2641 + msgstr "" 2642 + 2643 + #: src/components/dms/ConvoMenu.tsx:199 2644 + msgid "Could not mute chat" 2645 + msgstr "" 2646 + 2647 + #: src/view/com/composer/videos/VideoPreview.web.tsx:66 2648 + msgid "Could not process your video" 2649 + msgstr "" 2650 + 2651 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 2652 + msgid "Could not save changes: {0}" 2653 + msgstr "" 2654 + 2655 + #: src/state/queries/notifications/settings.ts:49 2656 + msgid "Could not update notification settings" 2657 + msgstr "" 2658 + 2659 + #: src/components/contacts/screens/GetContacts.tsx:168 2660 + msgid "Could not upload contacts. {0}" 2661 + msgstr "" 2662 + 2663 + #: src/components/contacts/screens/GetContacts.tsx:162 2664 + msgid "Could not upload contacts. You need to re-verify your phone number to proceed" 2665 + msgstr "" 2666 + 2667 + #: src/components/InternationalPhoneCodeSelect.tsx:80 2668 + msgid "Country code" 2669 + msgstr "" 2670 + 2671 + #. Text on button to create a new starter pack 2672 + #. Text on button to create a new starter pack 2673 + #: src/components/dialogs/StarterPackDialog.tsx:113 2674 + #: src/components/dialogs/StarterPackDialog.tsx:204 2675 + #: src/components/StarterPack/ProfileStarterPacks.tsx:328 2676 + msgid "Create" 2677 + msgstr "" 2678 + 2679 + #: src/view/com/lists/ProfileLists.tsx:166 2680 + #: src/view/com/lists/ProfileLists.tsx:167 2681 + msgid "Create a list" 2682 + msgstr "" 2683 + 2684 + #: src/components/StarterPack/QrCodeDialog.tsx:163 2685 + msgid "Create a QR code for a starter pack" 2686 + msgstr "" 2687 + 2688 + #: src/components/StarterPack/ProfileStarterPacks.tsx:206 2689 + #: src/components/StarterPack/ProfileStarterPacks.tsx:315 2690 + #: src/Navigation.tsx:628 2691 + msgid "Create a starter pack" 2692 + msgstr "" 2693 + 2694 + #: src/view/screens/Profile.tsx:560 2695 + #: src/view/screens/Profile.tsx:561 2696 + msgid "Create a Starter Pack" 2697 + msgstr "" 2698 + 2699 + #: src/components/StarterPack/ProfileStarterPacks.tsx:302 2700 + msgid "Create a starter pack for me" 2701 + msgstr "" 2702 + 2703 + #: src/components/WelcomeModal.tsx:155 2704 + #: src/components/WelcomeModal.tsx:163 2705 + #: src/view/com/auth/SplashScreen.tsx:76 2706 + #: src/view/com/auth/SplashScreen.web.tsx:121 2707 + #: src/view/shell/bottom-bar/BottomBar.tsx:351 2708 + #: src/view/shell/bottom-bar/BottomBar.tsx:356 2709 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:206 2710 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:211 2711 + #: src/view/shell/NavSignupCard.tsx:47 2712 + #: src/view/shell/NavSignupCard.tsx:52 2713 + msgid "Create account" 2714 + msgstr "" 2715 + 2716 + #: src/screens/Signup/index.tsx:130 2717 + msgid "Create Account" 2718 + msgstr "" 2719 + 2720 + #: src/components/dialogs/Signin.tsx:86 2721 + #: src/components/dialogs/Signin.tsx:88 2722 + #: src/screens/Hashtag.tsx:250 2723 + #: src/screens/Search/SearchResults.tsx:305 2724 + msgid "Create an account" 2725 + msgstr "" 2726 + 2727 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:311 2728 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 2729 + msgid "Create an account without using this starter pack" 2730 + msgstr "" 2731 + 2732 + #: src/screens/Onboarding/StepProfile/index.tsx:300 2733 + msgid "Create an avatar instead" 2734 + msgstr "" 2735 + 2736 + #: src/components/StarterPack/ProfileStarterPacks.tsx:213 2737 + msgid "Create another" 2738 + msgstr "" 2739 + 2740 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:354 2741 + msgid "Create moderation list" 2742 + msgstr "" 2743 + 2744 + #: src/view/com/auth/SplashScreen.tsx:68 2745 + #: src/view/com/auth/SplashScreen.web.tsx:113 2746 + msgid "Create new account" 2747 + msgstr "" 2748 + 2749 + #. Accessibility label for button to create a moderation report for the selected option 2750 + #: src/components/moderation/ReportDialog/index.tsx:706 2751 + #: src/components/moderation/ReportDialog/index.tsx:752 2752 + msgid "Create report for {0}" 2753 + msgstr "" 2754 + 2755 + #: src/components/dialogs/StarterPackDialog.tsx:108 2756 + #: src/components/dialogs/StarterPackDialog.tsx:199 2757 + msgid "Create starter pack" 2758 + msgstr "" 2759 + 2760 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:353 2761 + msgid "Create user list" 2762 + msgstr "" 2763 + 2764 + #: src/screens/Settings/AppPasswords.tsx:173 2765 + msgid "Created {0}" 2766 + msgstr "" 2767 + 2768 + #: src/screens/List/ListHiddenScreen.tsx:127 2769 + msgid "Creator has been blocked" 2770 + msgstr "" 2771 + 2772 + #: src/lib/interests.ts:57 2773 + msgid "Culture" 2774 + msgstr "" 2775 + 2776 + #: src/components/dialogs/Embed.tsx:144 2777 + msgid "Customization options" 2778 + msgstr "" 2779 + 2780 + #: src/screens/Onboarding/Layout.tsx:60 2781 + msgid "Customizes your Bluesky experience" 2782 + msgstr "" 2783 + 2784 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:200 2785 + msgid "Dangerous challenges or activities" 2786 + msgstr "" 2787 + 2788 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:204 2789 + msgid "Dangerous substances or drug abuse" 2790 + msgstr "" 2791 + 2792 + #: src/components/dialogs/Embed.tsx:168 2793 + #: src/components/dialogs/Embed.tsx:170 2794 + #: src/screens/Settings/AppearanceSettings.tsx:145 2795 + #: src/screens/Settings/AppearanceSettings.tsx:166 2796 + msgid "Dark" 2797 + msgstr "" 2798 + 2799 + #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 2800 + msgctxt "Name of app icon variant" 2801 + msgid "Dark" 2802 + msgstr "" 2803 + 2804 + #: src/view/screens/Debug.tsx:69 2805 + msgid "Dark mode" 2806 + msgstr "" 2807 + 2808 + #: src/screens/Settings/AppearanceSettings.tsx:158 2809 + msgid "Dark theme" 2810 + msgstr "" 2811 + 2812 + #: src/screens/Signup/StepInfo/index.tsx:373 2813 + msgid "Date of birth" 2814 + msgstr "" 2815 + 2816 + #: src/screens/Settings/AccountSettings.tsx:161 2817 + #: src/screens/Settings/AccountSettings.tsx:166 2818 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 2819 + msgid "Deactivate account" 2820 + msgstr "" 2821 + 2822 + #: src/screens/Settings/Settings.tsx:481 2823 + msgid "Debug Moderation" 2824 + msgstr "" 2825 + 2826 + #: src/view/screens/Debug.tsx:89 2827 + msgid "Debug panel" 2828 + msgstr "" 2829 + 2830 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84 2831 + msgid "Deepfake adult content" 2832 + msgstr "" 2833 + 2834 + #: src/screens/Settings/AppearanceSettings.tsx:112 2835 + #: src/screens/Settings/Settings.tsx:238 2836 + msgid "Deer" 2837 + msgstr "" 2838 + 2839 + #: src/screens/Settings/AppearanceSettings.tsx:249 2840 + msgid "Default" 2841 + msgstr "" 2842 + 2843 + #: src/screens/Settings/AppIconSettings/index.tsx:75 2844 + msgid "Default icons" 2845 + msgstr "" 2846 + 2847 + #: src/components/dms/MessageContextMenu.tsx:202 2848 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1039 2849 + #: src/screens/Messages/components/ChatStatusInfo.tsx:55 2850 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:283 2851 + #: src/screens/Settings/AppPasswords.tsx:212 2852 + #: src/screens/StarterPack/StarterPackScreen.tsx:604 2853 + #: src/screens/StarterPack/StarterPackScreen.tsx:693 2854 + #: src/screens/StarterPack/StarterPackScreen.tsx:765 2855 + msgid "Delete" 2856 + msgstr "" 2857 + 2858 + #: src/screens/Settings/AccountSettings.tsx:171 2859 + #: src/screens/Settings/AccountSettings.tsx:176 2860 + msgid "Delete account" 2861 + msgstr "" 2862 + 2863 + #: src/view/com/modals/DeleteAccount.tsx:101 2864 + msgid "Delete Account <0>\"</0><1>{0}</1><2>\"</2>" 2865 + msgstr "" 2866 + 2867 + #: src/screens/Settings/AppPasswords.tsx:186 2868 + msgid "Delete app password" 2869 + msgstr "" 2870 + 2871 + #: src/screens/Settings/AppPasswords.tsx:207 2872 + msgid "Delete app password?" 2873 + msgstr "" 2874 + 2875 + #: src/screens/Messages/components/RequestButtons.tsx:325 2876 + #: src/screens/Messages/components/RequestButtons.tsx:331 2877 + msgid "Delete chat" 2878 + msgstr "" 2879 + 2880 + #: src/screens/Settings/Settings.tsx:488 2881 + msgid "Delete chat declaration record" 2882 + msgstr "" 2883 + 2884 + #: src/screens/Settings/FindContactsSettings.tsx:539 2885 + msgid "Delete contacts" 2886 + msgstr "" 2887 + 2888 + #: src/components/dms/AfterReportDialog.tsx:190 2889 + #: src/components/dms/AfterReportDialog.tsx:193 2890 + #: src/screens/Messages/components/RequestButtons.tsx:136 2891 + #: src/screens/Messages/components/RequestButtons.tsx:139 2892 + msgid "Delete conversation" 2893 + msgstr "" 2894 + 2895 + #: src/components/dms/AfterReportDialog.tsx:148 2896 + msgid "Delete Conversation" 2897 + msgstr "" 2898 + 2899 + #: src/components/dms/MessageContextMenu.tsx:160 2900 + msgid "Delete for me" 2901 + msgstr "" 2902 + 2903 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:207 2904 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:210 2905 + msgid "Delete list" 2906 + msgstr "" 2907 + 2908 + #: src/components/dms/MessageContextMenu.tsx:198 2909 + msgid "Delete message" 2910 + msgstr "" 2911 + 2912 + #: src/components/dms/MessageContextMenu.tsx:158 2913 + msgid "Delete message for me" 2914 + msgstr "" 2915 + 2916 + #: src/view/com/modals/DeleteAccount.tsx:273 2917 + msgid "Delete my account" 2918 + msgstr "" 2919 + 2920 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1020 2921 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1022 2922 + #: src/view/com/composer/Composer.tsx:975 2923 + msgid "Delete post" 2924 + msgstr "Delete skeet" 2925 + 2926 + #: src/screens/StarterPack/StarterPackScreen.tsx:598 2927 + #: src/screens/StarterPack/StarterPackScreen.tsx:756 2928 + msgid "Delete starter pack" 2929 + msgstr "" 2930 + 2931 + #: src/screens/StarterPack/StarterPackScreen.tsx:659 2932 + msgid "Delete starter pack?" 2933 + msgstr "" 2934 + 2935 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:278 2936 + msgid "Delete this list?" 2937 + msgstr "" 2938 + 2939 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1034 2940 + msgid "Delete this post?" 2941 + msgstr "Delete this skeet?" 2942 + 2943 + #: src/components/Post/Embed/index.tsx:196 2944 + msgid "Deleted" 2945 + msgstr "" 2946 + 2947 + #: src/components/dms/MessagesListHeader.tsx:121 2948 + #: src/screens/Messages/components/ChatListItem.tsx:135 2949 + msgid "Deleted Account" 2950 + msgstr "" 2951 + 2952 + #: src/components/contacts/screens/PhoneInput.tsx:283 2953 + msgid "Deleted by Plivo after verification" 2954 + msgstr "" 2955 + 2956 + #: src/view/com/feeds/MissingFeed.tsx:42 2957 + #: src/view/com/feeds/MissingFeed.tsx:75 2958 + #: src/view/com/feeds/MissingFeed.tsx:127 2959 + #: src/view/com/feeds/MissingFeed.tsx:135 2960 + msgid "Deleted list" 2961 + msgstr "" 2962 + 2963 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:440 2964 + #: src/screens/Profile/Header/EditProfileDialog.tsx:369 2965 + #: src/screens/Profile/Header/EditProfileDialog.tsx:376 2966 + msgid "Description" 2967 + msgstr "" 2968 + 2969 + #: src/view/com/composer/GifAltText.tsx:150 2970 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:113 2971 + msgid "Descriptive alt text" 2972 + msgstr "" 2973 + 2974 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:924 2975 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:934 2976 + msgid "Detach quote" 2977 + msgstr "" 2978 + 2979 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1070 2980 + msgid "Detach quote post?" 2981 + msgstr "Detach quote skeet?" 2982 + 2983 + #: src/screens/Settings/AboutSettings.tsx:138 2984 + msgctxt "toast" 2985 + msgid "Developer mode disabled" 2986 + msgstr "" 2987 + 2988 + #: src/screens/Settings/AboutSettings.tsx:132 2989 + msgctxt "toast" 2990 + msgid "Developer mode enabled" 2991 + msgstr "" 2992 + 2993 + #: src/screens/Settings/Settings.tsx:297 2994 + #: src/screens/Settings/Settings.tsx:300 2995 + msgid "Developer options" 2996 + msgstr "" 2997 + 2998 + #: src/components/WhoCanReply.tsx:220 2999 + msgid "Dialog: adjust who can interact with this post" 3000 + msgstr "Dialog: adjust who can interact with this skeet" 3001 + 3002 + #: src/screens/Settings/AppearanceSettings.tsx:162 3003 + msgid "Dim" 3004 + msgstr "" 3005 + 3006 + #: src/screens/Settings/DeerSettings.tsx:770 3007 + #: src/screens/Settings/DeerSettings.tsx:775 3008 + msgid "Disable \"followed by\" metrics" 3009 + msgstr "" 3010 + 3011 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:233 3012 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:242 3013 + msgid "Disable 2FA" 3014 + msgstr "" 3015 + 3016 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:157 3017 + msgid "Disable email 2FA" 3018 + msgstr "" 3019 + 3020 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:89 3021 + msgid "Disable Email 2FA" 3022 + msgstr "" 3023 + 3024 + #: src/screens/Settings/DeerSettings.tsx:746 3025 + #: src/screens/Settings/DeerSettings.tsx:751 3026 + msgid "Disable followers metrics" 3027 + msgstr "" 3028 + 3029 + #: src/screens/Settings/DeerSettings.tsx:758 3030 + #: src/screens/Settings/DeerSettings.tsx:763 3031 + msgid "Disable following metrics" 3032 + msgstr "" 3033 + 3034 + #: src/screens/Settings/AccessibilitySettings.tsx:89 3035 + #: src/screens/Settings/AccessibilitySettings.tsx:94 3036 + msgid "Disable haptic feedback" 3037 + msgstr "" 3038 + 3039 + #: src/screens/Settings/DeerSettings.tsx:686 3040 + #: src/screens/Settings/DeerSettings.tsx:691 3041 + msgid "Disable likes metrics" 3042 + msgstr "" 3043 + 3044 + #: src/screens/Settings/DeerSettings.tsx:782 3045 + #: src/screens/Settings/DeerSettings.tsx:787 3046 + msgid "Disable posts metrics" 3047 + msgstr "Disable skeet metrics" 3048 + 3049 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:622 3050 + msgid "Disable quote posts of this post" 3051 + msgstr "Disable quote skeets of this skeet" 3052 + 3053 + #: src/screens/Settings/DeerSettings.tsx:710 3054 + #: src/screens/Settings/DeerSettings.tsx:715 3055 + msgid "Disable quotes metrics" 3056 + msgstr "" 3057 + 3058 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:459 3059 + msgid "Disable replies entirely" 3060 + msgstr "" 3061 + 3062 + #: src/screens/Settings/DeerSettings.tsx:734 3063 + #: src/screens/Settings/DeerSettings.tsx:739 3064 + msgid "Disable reply metrics" 3065 + msgstr "" 3066 + 3067 + #: src/screens/Settings/DeerSettings.tsx:698 3068 + #: src/screens/Settings/DeerSettings.tsx:703 3069 + msgid "Disable Reposts Metrics" 3070 + msgstr "Disable Reskeets Metrics" 3071 + 3072 + #: src/screens/Settings/DeerSettings.tsx:722 3073 + #: src/screens/Settings/DeerSettings.tsx:727 3074 + msgid "Disable saves metrics" 3075 + msgstr "" 3076 + 3077 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:387 3078 + msgid "Disable subtitles" 3079 + msgstr "" 3080 + 3081 + #: src/screens/Settings/DeerSettings.tsx:660 3082 + #: src/screens/Settings/DeerSettings.tsx:665 3083 + msgid "Disable verify email reminder" 3084 + msgstr "" 3085 + 3086 + #: src/screens/Settings/DeerSettings.tsx:612 3087 + #: src/screens/Settings/DeerSettings.tsx:617 3088 + msgid "Disable via repost notifications" 3089 + msgstr "Disable via reskeet notifications" 3090 + 3091 + #: src/lib/moderation/useLabelBehaviorDescription.ts:35 3092 + #: src/lib/moderation/useLabelBehaviorDescription.ts:45 3093 + #: src/lib/moderation/useLabelBehaviorDescription.ts:71 3094 + #: src/screens/Messages/Settings.tsx:144 3095 + #: src/screens/Messages/Settings.tsx:147 3096 + #: src/screens/Moderation/index.tsx:384 3097 + msgid "Disabled" 3098 + msgstr "" 3099 + 3100 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:93 3101 + #: src/screens/Profile/Header/EditProfileDialog.tsx:84 3102 + #: src/view/com/composer/Composer.tsx:811 3103 + #: src/view/com/composer/Composer.tsx:1008 3104 + msgid "Discard" 3105 + msgstr "" 3106 + 3107 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:90 3108 + #: src/screens/Profile/Header/EditProfileDialog.tsx:81 3109 + msgid "Discard changes?" 3110 + msgstr "" 3111 + 3112 + #: src/view/com/composer/Composer.tsx:808 3113 + msgid "Discard draft?" 3114 + msgstr "" 3115 + 3116 + #: src/view/com/composer/Composer.tsx:1000 3117 + msgid "Discard post?" 3118 + msgstr "Discard skeet?" 3119 + 3120 + #: src/screens/Settings/components/PwiOptOut.tsx:87 3121 + #: src/screens/Settings/components/PwiOptOut.tsx:91 3122 + msgid "Discourage apps from showing my account to logged-out users" 3123 + msgstr "" 3124 + 3125 + #: src/view/com/posts/FollowingEmptyState.tsx:70 3126 + #: src/view/com/posts/FollowingEndOfFeed.tsx:71 3127 + msgid "Discover new custom feeds" 3128 + msgstr "" 3129 + 3130 + #: src/screens/Search/Explore.tsx:436 3131 + #: src/view/screens/Feeds.tsx:735 3132 + msgid "Discover New Feeds" 3133 + msgstr "" 3134 + 3135 + #: src/components/Dialog/index.tsx:379 3136 + msgid "Dismiss" 3137 + msgstr "" 3138 + 3139 + #: src/components/contacts/FindContactsBannerNUX.tsx:76 3140 + msgid "Dismiss banner" 3141 + msgstr "" 3142 + 3143 + #: src/view/com/composer/Composer.tsx:1848 3144 + msgid "Dismiss error" 3145 + msgstr "" 3146 + 3147 + #: src/components/ProgressGuide/List.tsx:67 3148 + msgid "Dismiss getting started guide" 3149 + msgstr "" 3150 + 3151 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:46 3152 + msgid "Dismiss interests" 3153 + msgstr "" 3154 + 3155 + #: src/components/interstitials/TrendingVideos.tsx:90 3156 + msgid "Dismiss this section" 3157 + msgstr "" 3158 + 3159 + #: src/components/FeedInterstitials.tsx:593 3160 + msgid "Dismiss this suggestion" 3161 + msgstr "" 3162 + 3163 + #: src/screens/Settings/DeerSettings.tsx:580 3164 + #: src/screens/Settings/DeerSettings.tsx:585 3165 + msgid "Display images in higher quality" 3166 + msgstr "" 3167 + 3168 + #: src/screens/Settings/AccessibilitySettings.tsx:69 3169 + #: src/screens/Settings/AccessibilitySettings.tsx:74 3170 + msgid "Display larger alt text badges" 3171 + msgstr "" 3172 + 3173 + #: src/screens/Profile/Header/EditProfileDialog.tsx:319 3174 + #: src/screens/Profile/Header/EditProfileDialog.tsx:325 3175 + msgid "Display name" 3176 + msgstr "" 3177 + 3178 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 3179 + msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." 3180 + msgstr "" 3181 + 3182 + #: src/view/com/profile/ProfileMenu.tsx:360 3183 + #: src/view/com/profile/ProfileMenu.tsx:372 3184 + msgid "Divorce mutual" 3185 + msgstr "" 3186 + 3187 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:405 3188 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:407 3189 + msgid "DNS Panel" 3190 + msgstr "" 3191 + 3192 + #: src/components/dialogs/MutedWords.tsx:308 3193 + msgid "Do not apply this mute word to users you follow" 3194 + msgstr "" 3195 + 3196 + #: src/screens/Settings/DeerSettings.tsx:835 3197 + msgid "Do not declare any app labelers" 3198 + msgstr "" 3199 + 3200 + #: src/screens/Settings/DeerSettings.tsx:840 3201 + msgid "Do not declare any default app labelers" 3202 + msgstr "" 3203 + 3204 + #: src/screens/Settings/DeerSettings.tsx:529 3205 + #: src/screens/Settings/DeerSettings.tsx:534 3206 + #: src/screens/Settings/DeerSettings.tsx:568 3207 + #: src/screens/Settings/DeerSettings.tsx:573 3208 + msgid "Do not fall back to discover feed" 3209 + msgstr "" 3210 + 3211 + #: src/lib/moderation/useGlobalLabelStrings.ts:39 3212 + msgid "Does not include nudity." 3213 + msgstr "" 3214 + 3215 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:525 3216 + msgid "Domain verified!" 3217 + msgstr "" 3218 + 3219 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:380 3220 + msgid "Don't have a code or need a new one? <0>Click here.</0>" 3221 + msgstr "" 3222 + 3223 + #: src/screens/Signup/StepInfo/index.tsx:244 3224 + msgid "Don't have an account provider or an existing Bluesky account? To create a new account on a Bluesky-hosted PDS, sign up through <0>bsky.app</0> first, then return to Witchsky and log in with the account you created." 3225 + msgstr "" 3226 + 3227 + #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:37 3228 + msgid "Don't see an email? <0>Click here to resend.</0>" 3229 + msgstr "" 3230 + 3231 + #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:107 3232 + #: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:39 3233 + msgid "Don't show again" 3234 + msgstr "" 3235 + 3236 + #: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 3237 + msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." 3238 + msgstr "" 3239 + 3240 + #: src/components/contacts/components/InviteInfo.tsx:72 3241 + #: src/components/contacts/components/InviteInfo.tsx:78 3242 + #: src/components/contacts/screens/ViewMatches.tsx:392 3243 + #: src/components/contacts/screens/ViewMatches.tsx:409 3244 + #: src/components/dialogs/BirthDateSettings.tsx:196 3245 + #: src/components/dialogs/BirthDateSettings.tsx:203 3246 + #: src/components/dialogs/ServerInput.tsx:203 3247 + #: src/components/dialogs/ServerInput.tsx:205 3248 + #: src/components/dms/AfterReportDialog.tsx:142 3249 + #: src/components/forms/DateField/index.tsx:103 3250 + #: src/components/forms/DateField/index.tsx:109 3251 + #: src/lib/media/picker.tsx:37 3252 + #: src/screens/Onboarding/StepProfile/index.tsx:337 3253 + #: src/screens/Onboarding/StepProfile/index.tsx:340 3254 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 3255 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 3256 + #: src/view/com/composer/labels/LabelsBtn.tsx:218 3257 + #: src/view/com/composer/labels/LabelsBtn.tsx:225 3258 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:306 3259 + #: src/view/com/composer/videos/SubtitleDialog.tsx:189 3260 + #: src/view/com/composer/videos/SubtitleDialog.tsx:200 3261 + msgid "Done" 3262 + msgstr "" 3263 + 3264 + #: src/view/com/modals/UserAddRemoveLists.tsx:114 3265 + #: src/view/com/modals/UserAddRemoveLists.tsx:117 3266 + msgctxt "action" 3267 + msgid "Done" 3268 + msgstr "" 3269 + 3270 + #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42 3271 + msgid "Done{extraText}" 3272 + msgstr "" 3273 + 3274 + #: src/components/dms/MessageItem.tsx:161 3275 + msgid "Double tap or long press the message to add a reaction" 3276 + msgstr "" 3277 + 3278 + #: src/components/Dialog/index.tsx:380 3279 + msgid "Double tap to close the dialog" 3280 + msgstr "" 3281 + 3282 + #: src/screens/VideoFeed/index.tsx:1124 3283 + msgid "Double tap to like" 3284 + msgstr "" 3285 + 3286 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 3287 + msgid "Download Bluesky" 3288 + msgstr "" 3289 + 3290 + #: src/screens/Settings/components/ExportCarDialog.tsx:79 3291 + #: src/screens/Settings/components/ExportCarDialog.tsx:84 3292 + msgid "Download CAR file" 3293 + msgstr "" 3294 + 3295 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:764 3296 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:766 3297 + msgid "Download GIF" 3298 + msgstr "" 3299 + 3300 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 3301 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:751 3302 + msgid "Download Video" 3303 + msgstr "" 3304 + 3305 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:629 3306 + msgctxt "toast" 3307 + msgid "Downloading GIF..." 3308 + msgstr "" 3309 + 3310 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 3311 + msgctxt "toast" 3312 + msgid "Downloading video..." 3313 + msgstr "" 3314 + 3315 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 3316 + msgid "Doxxing" 3317 + msgstr "" 3318 + 3319 + #: src/view/com/composer/text-input/TextInput.web.tsx:429 3320 + msgid "Drop to add images" 3321 + msgstr "" 3322 + 3323 + #: src/components/ageAssurance/useAgeAssuranceCopy.ts:11 3324 + msgid "Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult." 3325 + msgstr "" 3326 + 3327 + #: src/components/dialogs/MutedWords.tsx:159 3328 + msgid "Duration:" 3329 + msgstr "" 3330 + 3331 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 3332 + msgid "e.g. alice" 3333 + msgstr "" 3334 + 3335 + #: src/screens/Profile/Header/EditProfileDialog.tsx:326 3336 + msgid "e.g. Alice Lastname" 3337 + msgstr "" 3338 + 3339 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:388 3340 + msgid "e.g. alice.com" 3341 + msgstr "" 3342 + 3343 + #: src/lib/moderation/useGlobalLabelStrings.ts:43 3344 + msgid "E.g. artistic nudes." 3345 + msgstr "" 3346 + 3347 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:357 3348 + msgid "e.g. Great Posters" 3349 + msgstr "" 3350 + 3351 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:358 3352 + msgid "e.g. Spammers" 3353 + msgstr "" 3354 + 3355 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:361 3356 + msgid "e.g. The posters who never miss." 3357 + msgstr "e.g. The skeeters who never miss." 3358 + 3359 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:362 3360 + msgid "e.g. Users that repeatedly reply with ads." 3361 + msgstr "" 3362 + 3363 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:196 3364 + msgid "Eating disorders" 3365 + msgstr "" 3366 + 3367 + #: src/screens/Settings/AccountSettings.tsx:145 3368 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:252 3369 + #: src/screens/StarterPack/StarterPackScreen.tsx:593 3370 + #: src/screens/StarterPack/Wizard/index.tsx:340 3371 + #: src/screens/StarterPack/Wizard/index.tsx:345 3372 + msgid "Edit" 3373 + msgstr "" 3374 + 3375 + #: src/view/com/lists/ListMembers.tsx:187 3376 + #: src/view/com/lists/ListMembers.tsx:193 3377 + msgctxt "action" 3378 + msgid "Edit" 3379 + msgstr "" 3380 + 3381 + #: src/view/com/util/UserAvatar.tsx:473 3382 + #: src/view/com/util/UserBanner.tsx:126 3383 + msgid "Edit avatar" 3384 + msgstr "" 3385 + 3386 + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:112 3387 + msgid "Edit Feeds" 3388 + msgstr "" 3389 + 3390 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:88 3391 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:92 3392 + #: src/view/com/composer/photos/Gallery.tsx:198 3393 + msgid "Edit image" 3394 + msgstr "" 3395 + 3396 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1001 3397 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1014 3398 + msgid "Edit interaction settings" 3399 + msgstr "" 3400 + 3401 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:101 3402 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:108 3403 + msgid "Edit interests" 3404 + msgstr "" 3405 + 3406 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199 3407 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:202 3408 + msgid "Edit list details" 3409 + msgstr "" 3410 + 3411 + #: src/view/com/profile/ProfileMenu.tsx:435 3412 + #: src/view/com/profile/ProfileMenu.tsx:455 3413 + msgid "Edit live status" 3414 + msgstr "" 3415 + 3416 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:351 3417 + msgid "Edit moderation list" 3418 + msgstr "" 3419 + 3420 + #: src/Navigation.tsx:379 3421 + #: src/view/screens/Feeds.tsx:523 3422 + msgid "Edit My Feeds" 3423 + msgstr "" 3424 + 3425 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:243 3426 + msgid "Edit notifications from {0}" 3427 + msgstr "" 3428 + 3429 + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:110 3430 + msgid "Edit People" 3431 + msgstr "" 3432 + 3433 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:114 3434 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:260 3435 + msgid "Edit post interaction settings" 3436 + msgstr "Edit skeet interaction settings" 3437 + 3438 + #: src/screens/Profile/Header/EditProfileDialog.tsx:274 3439 + #: src/screens/Profile/Header/EditProfileDialog.tsx:280 3440 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:295 3441 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:326 3442 + msgid "Edit profile" 3443 + msgstr "" 3444 + 3445 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298 3446 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:328 3447 + msgid "Edit Profile" 3448 + msgstr "" 3449 + 3450 + #: src/screens/StarterPack/StarterPackScreen.tsx:585 3451 + msgid "Edit starter pack" 3452 + msgstr "" 3453 + 3454 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:350 3455 + msgid "Edit user list" 3456 + msgstr "" 3457 + 3458 + #: src/components/WhoCanReply.tsx:114 3459 + msgid "Edit who can reply" 3460 + msgstr "" 3461 + 3462 + #: src/Navigation.tsx:633 3463 + msgid "Edit your starter pack" 3464 + msgstr "" 3465 + 3466 + #: src/lib/interests.ts:59 3467 + msgid "Education" 3468 + msgstr "" 3469 + 3470 + #: src/screens/List/ListHiddenScreen.tsx:141 3471 + msgid "Either the creator of this list has blocked you or you have blocked the creator." 3472 + msgstr "" 3473 + 3474 + #: src/screens/Settings/AccountSettings.tsx:66 3475 + #: src/screens/Signup/StepInfo/index.tsx:297 3476 + msgid "Email" 3477 + msgstr "" 3478 + 3479 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:64 3480 + msgctxt "toast" 3481 + msgid "Email 2FA disabled" 3482 + msgstr "" 3483 + 3484 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:62 3485 + msgid "Email 2FA enabled" 3486 + msgstr "" 3487 + 3488 + #: src/screens/Login/ForgotPasswordForm.tsx:93 3489 + msgid "Email address" 3490 + msgstr "" 3491 + 3492 + #: src/components/intents/VerifyEmailIntentDialog.tsx:98 3493 + msgid "Email Resent" 3494 + msgstr "" 3495 + 3496 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:208 3497 + msgid "Email sent!" 3498 + msgstr "" 3499 + 3500 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:182 3501 + msgid "Email verification complete!" 3502 + msgstr "" 3503 + 3504 + #: src/components/intents/VerifyEmailIntentDialog.tsx:73 3505 + msgid "Email Verified" 3506 + msgstr "" 3507 + 3508 + #: src/components/dialogs/Embed.tsx:182 3509 + msgid "Embed HTML code" 3510 + msgstr "" 3511 + 3512 + #: src/components/dialogs/Embed.tsx:104 3513 + #: src/components/dialogs/Embed.tsx:108 3514 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:178 3515 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:183 3516 + msgid "Embed post" 3517 + msgstr "Embed skeet" 3518 + 3519 + #: src/components/dialogs/Embed.tsx:112 3520 + msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." 3521 + msgstr "Embed this skeet in your website. Simply copy the following snippet and paste it into the HTML code of your website." 3522 + 3523 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57 3524 + msgid "Embedded video player" 3525 + msgstr "" 3526 + 3527 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:104 3528 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:111 3529 + #: src/screens/Settings/components/Email2FAToggle.tsx:31 3530 + msgid "Enable" 3531 + msgstr "" 3532 + 3533 + #: src/components/dialogs/EmbedConsent.tsx:100 3534 + msgid "Enable {0} only" 3535 + msgstr "" 3536 + 3537 + #: src/screens/Moderation/index.tsx:371 3538 + msgid "Enable adult content" 3539 + msgstr "" 3540 + 3541 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:92 3542 + msgid "Enable email 2FA" 3543 + msgstr "" 3544 + 3545 + #: src/components/dialogs/EmbedConsent.tsx:81 3546 + #: src/components/dialogs/EmbedConsent.tsx:88 3547 + msgid "Enable external media" 3548 + msgstr "" 3549 + 3550 + #: src/screens/Settings/AppearanceSettings.tsx:270 3551 + #: src/screens/Settings/AppearanceSettings.tsx:275 3552 + msgid "Enable kawaii logo" 3553 + msgstr "" 3554 + 3555 + #: src/screens/Settings/ExternalMediaPreferences.tsx:53 3556 + msgid "Enable media players for" 3557 + msgstr "" 3558 + 3559 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 3560 + #: src/view/screens/Storybook/Admonitions.tsx:75 3561 + msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon</0> <1/>." 3562 + msgstr "" 3563 + 3564 + #: src/screens/Settings/NotificationSettings/index.tsx:102 3565 + #: src/screens/Settings/NotificationSettings/index.tsx:106 3566 + msgid "Enable push notifications" 3567 + msgstr "" 3568 + 3569 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:623 3570 + msgid "Enable quote posts of this post" 3571 + msgstr "Enable quote skeets of this skeet" 3572 + 3573 + #: src/screens/Settings/AppearanceSettings.tsx:288 3574 + #: src/screens/Settings/AppearanceSettings.tsx:293 3575 + msgid "Enable square avatars" 3576 + msgstr "" 3577 + 3578 + #: src/screens/Settings/AppearanceSettings.tsx:300 3579 + #: src/screens/Settings/AppearanceSettings.tsx:305 3580 + msgid "Enable square buttons" 3581 + msgstr "" 3582 + 3583 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:388 3584 + msgid "Enable subtitles" 3585 + msgstr "" 3586 + 3587 + #: src/components/dialogs/EmbedConsent.tsx:93 3588 + msgid "Enable this source only" 3589 + msgstr "" 3590 + 3591 + #: src/screens/Settings/ContentAndMediaSettings.tsx:133 3592 + #: src/screens/Settings/ContentAndMediaSettings.tsx:147 3593 + msgid "Enable trending topics" 3594 + msgstr "" 3595 + 3596 + #: src/screens/Settings/ContentAndMediaSettings.tsx:155 3597 + #: src/screens/Settings/ContentAndMediaSettings.tsx:169 3598 + msgid "Enable trending videos in your Discover feed" 3599 + msgstr "" 3600 + 3601 + #: src/screens/Messages/Settings.tsx:135 3602 + #: src/screens/Messages/Settings.tsx:138 3603 + #: src/screens/Moderation/index.tsx:382 3604 + msgid "Enabled" 3605 + msgstr "" 3606 + 3607 + #: src/screens/Profile/Sections/Feed.tsx:131 3608 + msgid "End of feed" 3609 + msgstr "" 3610 + 3611 + #: src/view/com/composer/videos/SubtitleDialog.tsx:179 3612 + msgid "Ensure you have selected a language for each subtitle file." 3613 + msgstr "" 3614 + 3615 + #: src/components/contacts/screens/VerifyNumber.tsx:228 3616 + msgid "Enter 6-digit code that was sent to your phone number" 3617 + msgstr "" 3618 + 3619 + #: src/screens/Login/SetNewPasswordForm.tsx:147 3620 + msgid "Enter a password" 3621 + msgstr "" 3622 + 3623 + #: src/components/dialogs/MutedWords.tsx:133 3624 + #: src/components/dialogs/MutedWords.tsx:134 3625 + msgid "Enter a word or tag" 3626 + msgstr "" 3627 + 3628 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:201 3629 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:320 3630 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:63 3631 + msgid "Enter code" 3632 + msgstr "" 3633 + 3634 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:406 3635 + msgid "Enter fullscreen" 3636 + msgstr "" 3637 + 3638 + #: src/components/contacts/screens/VerifyNumber.tsx:223 3639 + msgid "Enter the 6-digit code sent to {prettyNumber}" 3640 + msgstr "" 3641 + 3642 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:382 3643 + msgid "Enter the domain you want to use" 3644 + msgstr "" 3645 + 3646 + #: src/screens/Login/ForgotPasswordForm.tsx:113 3647 + msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." 3648 + msgstr "" 3649 + 3650 + #: src/screens/Login/LoginForm.tsx:244 3651 + msgid "Enter the username or email address you used when you created your account" 3652 + msgstr "" 3653 + 3654 + #: src/components/dialogs/BirthDateSettings.tsx:163 3655 + msgid "Enter your birthdate" 3656 + msgstr "" 3657 + 3658 + #: src/screens/Login/ForgotPasswordForm.tsx:99 3659 + #: src/screens/Signup/StepInfo/index.tsx:317 3660 + msgid "Enter your email address" 3661 + msgstr "" 3662 + 3663 + #: src/screens/Login/LoginForm.tsx:268 3664 + msgid "Enter your password" 3665 + msgstr "" 3666 + 3667 + #: src/screens/Login/index.tsx:183 3668 + msgid "Enter your username and password" 3669 + msgstr "" 3670 + 3671 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:133 3672 + msgid "Enters full screen" 3673 + msgstr "" 3674 + 3675 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:240 3676 + msgid "Entertainment" 3677 + msgstr "" 3678 + 3679 + #: src/view/com/composer/Composer.tsx:1933 3680 + #: src/view/com/util/error/ErrorScreen.tsx:44 3681 + msgid "Error" 3682 + msgstr "" 3683 + 3684 + #: src/screens/Settings/FindContactsSettings.tsx:90 3685 + msgid "Error getting the latest data." 3686 + msgstr "" 3687 + 3688 + #: src/screens/PostThread/components/ThreadError.tsx:26 3689 + msgid "Error loading post" 3690 + msgstr "Error loading skeet" 3691 + 3692 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:153 3693 + msgid "Error loading preference" 3694 + msgstr "" 3695 + 3696 + #: src/view/com/feeds/MissingFeed.tsx:200 3697 + msgid "Error message" 3698 + msgstr "" 3699 + 3700 + #: src/screens/Settings/components/ExportCarDialog.tsx:47 3701 + msgid "Error occurred while saving file" 3702 + msgstr "" 3703 + 3704 + #: src/screens/Signup/StepCaptcha/index.tsx:126 3705 + msgid "Error receiving captcha response." 3706 + msgstr "" 3707 + 3708 + #: src/screens/Search/SearchResults.tsx:151 3709 + msgid "Error: {error}" 3710 + msgstr "" 3711 + 3712 + #: src/components/WhoCanReply.tsx:83 3713 + msgid "Everybody can reply" 3714 + msgstr "" 3715 + 3716 + #: src/components/WhoCanReply.tsx:277 3717 + msgid "Everybody can reply to this post." 3718 + msgstr "Everybody can reply to this skeet." 3719 + 3720 + #: src/screens/Messages/Settings.tsx:88 3721 + #: src/screens/Messages/Settings.tsx:91 3722 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:167 3723 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:177 3724 + msgid "Everyone" 3725 + msgstr "" 3726 + 3727 + #: src/screens/Settings/NotificationSettings/index.tsx:235 3728 + #: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 3729 + msgid "Everything else" 3730 + msgstr "" 3731 + 3732 + #: src/components/dialogs/MutedWords.tsx:317 3733 + msgid "Exclude users you follow" 3734 + msgstr "" 3735 + 3736 + #: src/components/dialogs/MutedWords.tsx:524 3737 + msgid "Excludes users you follow" 3738 + msgstr "" 3739 + 3740 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:405 3741 + msgid "Exit fullscreen" 3742 + msgstr "" 3743 + 3744 + #: src/view/com/modals/DeleteAccount.tsx:281 3745 + msgid "Exits account deletion process" 3746 + msgstr "" 3747 + 3748 + #: src/view/com/lightbox/Lightbox.web.tsx:111 3749 + msgid "Exits image view" 3750 + msgstr "" 3751 + 3752 + #: src/view/com/lightbox/Lightbox.web.tsx:185 3753 + msgid "Expand alt text" 3754 + msgstr "" 3755 + 3756 + #: src/view/com/notifications/NotificationFeedItem.tsx:607 3757 + msgid "Expand list of users" 3758 + msgstr "" 3759 + 3760 + #: src/view/com/composer/ComposerReplyTo.tsx:91 3761 + msgid "Expand or collapse the full post you are replying to" 3762 + msgstr "Expand or collapse the full skeet you are replying to" 3763 + 3764 + #: src/components/Post/ShowMoreTextButton.tsx:32 3765 + msgid "Expand post text" 3766 + msgstr "Expand skeet text" 3767 + 3768 + #: src/screens/VideoFeed/index.tsx:996 3769 + msgid "Expands or collapses post text" 3770 + msgstr "Expands or collapses skeet text" 3771 + 3772 + #: src/lib/api/index.ts:464 3773 + msgid "Expected uri to resolve to a record" 3774 + msgstr "" 3775 + 3776 + #: src/screens/Settings/FollowingFeedPreferences.tsx:126 3777 + msgid "Experimental" 3778 + msgstr "" 3779 + 3780 + #: src/Navigation.tsx:414 3781 + #: src/screens/Settings/DeerSettings.tsx:374 3782 + #: src/screens/Settings/Settings.tsx:241 3783 + msgid "Experiments" 3784 + msgstr "" 3785 + 3786 + #: src/components/dialogs/MutedWords.tsx:510 3787 + msgid "Expired" 3788 + msgstr "" 3789 + 3790 + #: src/components/dialogs/MutedWords.tsx:512 3791 + msgid "Expires {0}" 3792 + msgstr "" 3793 + 3794 + #: src/components/moderation/LabelsOnMeDialog.tsx:203 3795 + #: src/components/moderation/ModerationDetailsDialog.tsx:210 3796 + msgid "Expires in {0}" 3797 + msgstr "" 3798 + 3799 + #: src/components/live/EditLiveDialog.tsx:130 3800 + msgid "Expires in {0} at {1}" 3801 + msgstr "" 3802 + 3803 + #: src/lib/moderation/useGlobalLabelStrings.ts:47 3804 + #: src/lib/moderation/useGlobalLabelStrings.ts:51 3805 + msgid "Explicit or potentially disturbing media." 3806 + msgstr "" 3807 + 3808 + #: src/lib/moderation/useGlobalLabelStrings.ts:35 3809 + msgid "Explicit sexual images." 3810 + msgstr "" 3811 + 3812 + #: src/Navigation.tsx:817 3813 + #: src/screens/Search/Shell.tsx:327 3814 + #: src/view/shell/desktop/LeftNav.tsx:700 3815 + #: src/view/shell/Drawer.tsx:432 3816 + msgid "Explore" 3817 + msgstr "" 3818 + 3819 + #: src/components/WelcomeModal.tsx:168 3820 + #: src/components/WelcomeModal.tsx:177 3821 + msgid "Explore the app" 3822 + msgstr "" 3823 + 3824 + #: src/screens/Settings/AccountSettings.tsx:152 3825 + #: src/screens/Settings/AccountSettings.tsx:156 3826 + msgid "Export my data" 3827 + msgstr "" 3828 + 3829 + #: src/screens/Settings/components/ExportCarDialog.tsx:63 3830 + msgid "Export My Data" 3831 + msgstr "" 3832 + 3833 + #: src/screens/Settings/ContentAndMediaSettings.tsx:85 3834 + #: src/screens/Settings/ContentAndMediaSettings.tsx:88 3835 + msgid "External media" 3836 + msgstr "" 3837 + 3838 + #: src/components/dialogs/EmbedConsent.tsx:54 3839 + #: src/components/dialogs/EmbedConsent.tsx:58 3840 + msgid "External Media" 3841 + msgstr "" 3842 + 3843 + #: src/components/dialogs/EmbedConsent.tsx:70 3844 + #: src/screens/Settings/ExternalMediaPreferences.tsx:44 3845 + msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." 3846 + msgstr "" 3847 + 3848 + #: src/Navigation.tsx:398 3849 + #: src/screens/Settings/ExternalMediaPreferences.tsx:35 3850 + msgid "External Media Preferences" 3851 + msgstr "" 3852 + 3853 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:146 3854 + msgid "Extremist content" 3855 + msgstr "" 3856 + 3857 + #: src/screens/Messages/components/RequestButtons.tsx:231 3858 + msgctxt "toast" 3859 + msgid "Failed to accept chat" 3860 + msgstr "" 3861 + 3862 + #: src/components/dms/ActionsWrapper.web.tsx:69 3863 + #: src/components/dms/MessageContextMenu.tsx:101 3864 + msgid "Failed to add emoji reaction" 3865 + msgstr "" 3866 + 3867 + #: src/components/dialogs/StarterPackDialog.tsx:273 3868 + msgid "Failed to add to starter pack" 3869 + msgstr "" 3870 + 3871 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:605 3872 + msgid "Failed to change handle. Please try again." 3873 + msgstr "" 3874 + 3875 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 3876 + msgid "Failed to create app password. Please try again." 3877 + msgstr "" 3878 + 3879 + #: src/components/dms/MessageProfileButton.tsx:39 3880 + msgid "Failed to create conversation" 3881 + msgstr "" 3882 + 3883 + #: src/screens/StarterPack/Wizard/index.tsx:263 3884 + #: src/screens/StarterPack/Wizard/index.tsx:271 3885 + msgid "Failed to create starter pack" 3886 + msgstr "" 3887 + 3888 + #: src/screens/Messages/components/RequestButtons.tsx:64 3889 + #: src/screens/Messages/components/RequestButtons.tsx:300 3890 + msgctxt "toast" 3891 + msgid "Failed to delete chat" 3892 + msgstr "" 3893 + 3894 + #: src/components/dms/MessageContextMenu.tsx:81 3895 + msgid "Failed to delete message" 3896 + msgstr "" 3897 + 3898 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:227 3899 + msgid "Failed to delete post, please try again" 3900 + msgstr "Failed to delete skeet, please try again" 3901 + 3902 + #: src/screens/StarterPack/StarterPackScreen.tsx:727 3903 + msgid "Failed to delete starter pack" 3904 + msgstr "" 3905 + 3906 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:121 3907 + msgid "Failed to follow all suggested accounts, please try again" 3908 + msgstr "" 3909 + 3910 + #: src/components/contacts/screens/ViewMatches.tsx:145 3911 + msgid "Failed to follow all your friends, please try again" 3912 + msgstr "" 3913 + 3914 + #: src/components/contacts/screens/ViewMatches.tsx:233 3915 + msgid "Failed to hide suggestion, please check your internet connection" 3916 + msgstr "" 3917 + 3918 + #: src/components/contacts/screens/ViewMatches.tsx:578 3919 + msgid "Failed to launch SMS app" 3920 + msgstr "" 3921 + 3922 + #: src/screens/Messages/ChatList.tsx:283 3923 + #: src/screens/Messages/Inbox.tsx:209 3924 + msgid "Failed to load conversations" 3925 + msgstr "" 3926 + 3927 + #: src/screens/Search/Explore.tsx:472 3928 + #: src/screens/Search/Explore.tsx:524 3929 + #: src/screens/Search/Explore.tsx:562 3930 + #: src/screens/Search/Explore.tsx:601 3931 + msgid "Failed to load feeds preferences" 3932 + msgstr "" 3933 + 3934 + #: src/components/dialogs/GifSelect.tsx:216 3935 + msgid "Failed to load GIFs" 3936 + msgstr "" 3937 + 3938 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:114 3939 + #: src/screens/Settings/NotificationSettings/index.tsx:115 3940 + #: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 3941 + #: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 3942 + #: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 3943 + #: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 3944 + #: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 3945 + #: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 3946 + #: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 3947 + #: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 3948 + #: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 3949 + msgid "Failed to load notification settings." 3950 + msgstr "" 3951 + 3952 + #: src/screens/Messages/components/MessageListError.tsx:23 3953 + msgid "Failed to load past messages" 3954 + msgstr "" 3955 + 3956 + #: src/screens/Settings/ActivityPrivacySettings.tsx:65 3957 + msgid "Failed to load preference." 3958 + msgstr "" 3959 + 3960 + #: src/screens/Search/Explore.tsx:465 3961 + #: src/screens/Search/Explore.tsx:517 3962 + #: src/screens/Search/Explore.tsx:555 3963 + #: src/screens/Search/Explore.tsx:594 3964 + msgid "Failed to load suggested feeds" 3965 + msgstr "" 3966 + 3967 + #: src/screens/Search/Explore.tsx:375 3968 + msgid "Failed to load suggested follows" 3969 + msgstr "" 3970 + 3971 + #: src/screens/Messages/Inbox.tsx:318 3972 + #: src/screens/Messages/Inbox.tsx:341 3973 + msgid "Failed to mark all requests as read" 3974 + msgstr "" 3975 + 3976 + #: src/state/queries/pinned-post.ts:75 3977 + msgid "Failed to pin post" 3978 + msgstr "Failed to pin skeet" 3979 + 3980 + #: src/screens/Settings/FindContactsSettings.tsx:481 3981 + msgid "Failed to remove data due to a network error, please check your internet connection." 3982 + msgstr "" 3983 + 3984 + #: src/screens/Settings/FindContactsSettings.tsx:487 3985 + msgid "Failed to remove data. {0}" 3986 + msgstr "" 3987 + 3988 + #: src/components/dms/ActionsWrapper.web.tsx:63 3989 + #: src/components/dms/MessageContextMenu.tsx:95 3990 + msgid "Failed to remove emoji reaction" 3991 + msgstr "" 3992 + 3993 + #: src/components/dialogs/StarterPackDialog.tsx:292 3994 + msgid "Failed to remove from starter pack" 3995 + msgstr "" 3996 + 3997 + #: src/components/verification/VerificationRemovePrompt.tsx:34 3998 + msgid "Failed to remove verification" 3999 + msgstr "" 4000 + 4001 + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:80 4002 + msgid "Failed to resolve location. Please try again." 4003 + msgstr "" 4004 + 4005 + #: src/lib/media/save-image.ios.ts:27 4006 + #: src/lib/media/save-image.ts:31 4007 + msgid "Failed to save image: {0}" 4008 + msgstr "" 4009 + 4010 + #: src/screens/ModerationInteractionSettings/index.tsx:108 4011 + msgid "Failed to save settings. Please try again." 4012 + msgstr "" 4013 + 4014 + #: src/screens/Settings/InterestsSettings.tsx:137 4015 + msgctxt "toast" 4016 + msgid "Failed to save your interests." 4017 + msgstr "" 4018 + 4019 + #: src/components/dms/MessageItem.tsx:311 4020 + msgid "Failed to send" 4021 + msgstr "" 4022 + 4023 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:122 4024 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:136 4025 + msgid "Failed to send email, please try again." 4026 + msgstr "" 4027 + 4028 + #: src/components/live/GoLiveDisabledDialog.tsx:76 4029 + #: src/components/moderation/LabelsOnMeDialog.tsx:265 4030 + #: src/screens/Messages/components/ChatDisabled.tsx:99 4031 + msgid "Failed to submit appeal, please try again." 4032 + msgstr "" 4033 + 4034 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:408 4035 + msgid "Failed to toggle thread mute, please try again" 4036 + msgstr "" 4037 + 4038 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 4039 + msgid "Failed to unpin list" 4040 + msgstr "" 4041 + 4042 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:149 4043 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:83 4044 + msgid "Failed to update email 2FA settings" 4045 + msgstr "" 4046 + 4047 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:195 4048 + msgid "Failed to update email, please try again." 4049 + msgstr "" 4050 + 4051 + #: src/components/FeedCard.tsx:317 4052 + msgid "Failed to update feeds" 4053 + msgstr "" 4054 + 4055 + #: src/state/queries/activity-subscriptions.ts:101 4056 + msgid "Failed to update notification declaration" 4057 + msgstr "" 4058 + 4059 + #: src/screens/Messages/Settings.tsx:39 4060 + msgid "Failed to update settings" 4061 + msgstr "" 4062 + 4063 + #: src/lib/media/video/upload.ts:72 4064 + #: src/lib/media/video/upload.web.ts:74 4065 + #: src/lib/media/video/upload.web.ts:78 4066 + #: src/lib/media/video/upload.web.ts:88 4067 + msgid "Failed to upload video" 4068 + msgstr "" 4069 + 4070 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:168 4071 + msgid "Failed to verify email, please try again." 4072 + msgstr "" 4073 + 4074 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:372 4075 + msgid "Failed to verify handle. Please try again." 4076 + msgstr "" 4077 + 4078 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 4079 + msgid "Fake account or bot" 4080 + msgstr "" 4081 + 4082 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 4083 + msgid "False information about elections" 4084 + msgstr "" 4085 + 4086 + #: src/Navigation.tsx:314 4087 + msgid "Feed" 4088 + msgstr "" 4089 + 4090 + #: src/components/FeedCard.tsx:171 4091 + #: src/view/com/feeds/FeedSourceCard.tsx:150 4092 + msgid "Feed by {0}" 4093 + msgstr "" 4094 + 4095 + #: src/view/com/feeds/MissingFeed.tsx:152 4096 + msgid "Feed creator" 4097 + msgstr "" 4098 + 4099 + #: src/view/com/feeds/MissingFeed.tsx:189 4100 + msgid "Feed identifier" 4101 + msgstr "" 4102 + 4103 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:357 4104 + msgid "Feed menu" 4105 + msgstr "" 4106 + 4107 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 4108 + msgid "Feed toggle" 4109 + msgstr "" 4110 + 4111 + #: src/view/com/feeds/MissingFeed.tsx:73 4112 + msgid "Feed unavailable" 4113 + msgstr "" 4114 + 4115 + #: src/view/shell/desktop/RightNav.tsx:107 4116 + #: src/view/shell/desktop/RightNav.tsx:108 4117 + #: src/view/shell/Drawer.tsx:386 4118 + msgid "Feedback" 4119 + msgstr "" 4120 + 4121 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:466 4122 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:490 4123 + msgctxt "toast" 4124 + msgid "Feedback sent to feed operator" 4125 + msgstr "" 4126 + 4127 + #: src/Navigation.tsx:613 4128 + #: src/screens/SavedFeeds.tsx:108 4129 + #: src/screens/Search/SearchResults.tsx:78 4130 + #: src/screens/StarterPack/StarterPackScreen.tsx:191 4131 + #: src/view/screens/Feeds.tsx:516 4132 + #: src/view/screens/Profile.tsx:239 4133 + #: src/view/shell/desktop/LeftNav.tsx:738 4134 + #: src/view/shell/Drawer.tsx:548 4135 + msgid "Feeds" 4136 + msgstr "" 4137 + 4138 + #: src/screens/SavedFeeds.tsx:215 4139 + msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide</0> for more information." 4140 + msgstr "" 4141 + 4142 + #: src/components/FeedCard.tsx:314 4143 + #: src/screens/SavedFeeds.tsx:90 4144 + msgctxt "toast" 4145 + msgid "Feeds updated!" 4146 + msgstr "" 4147 + 4148 + #: src/screens/Search/modules/ExploreRecommendations.tsx:65 4149 + msgid "Feeds we think you might like." 4150 + msgstr "" 4151 + 4152 + #: src/screens/Settings/DeerSettings.tsx:413 4153 + msgid "Fetch records directly from PDS to see contents of blocked and detatched quotes" 4154 + msgstr "" 4155 + 4156 + #: src/screens/Settings/DeerSettings.tsx:407 4157 + msgid "Fetch records directly from PDS to see through quote blocks" 4158 + msgstr "" 4159 + 4160 + #: src/screens/Settings/components/OTAInfo.tsx:58 4161 + msgid "Fetch update" 4162 + msgstr "" 4163 + 4164 + #: src/screens/Settings/components/ExportCarDialog.tsx:43 4165 + msgid "File saved successfully!" 4166 + msgstr "" 4167 + 4168 + #: src/lib/moderation/useLabelBehaviorDescription.ts:69 4169 + msgid "Filter from feeds" 4170 + msgstr "" 4171 + 4172 + #: src/screens/Search/components/SearchLanguageDropdown.tsx:97 4173 + msgid "Filter search by language" 4174 + msgstr "" 4175 + 4176 + #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 4177 + msgid "Filter search by language (currently: {currentLanguageLabel})" 4178 + msgstr "" 4179 + 4180 + #: src/screens/Settings/ActivityPrivacySettings.tsx:105 4181 + msgid "Filter who can opt to receive notifications for your activity" 4182 + msgstr "" 4183 + 4184 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:161 4185 + msgid "Filter who you receive notifications from" 4186 + msgstr "" 4187 + 4188 + #: src/screens/Onboarding/StepFinished/index.tsx:334 4189 + msgid "Finalizing" 4190 + msgstr "" 4191 + 4192 + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:154 4193 + msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." 4194 + msgstr "" 4195 + 4196 + #: src/lib/interests.ts:60 4197 + msgid "Finance" 4198 + msgstr "" 4199 + 4200 + #: src/view/com/posts/CustomFeedEmptyState.tsx:71 4201 + #: src/view/com/posts/FollowingEmptyState.tsx:53 4202 + #: src/view/com/posts/FollowingEndOfFeed.tsx:54 4203 + msgid "Find accounts to follow" 4204 + msgstr "" 4205 + 4206 + #: src/Navigation.tsx:454 4207 + #: src/Navigation.tsx:655 4208 + msgid "Find Contacts" 4209 + msgstr "" 4210 + 4211 + #: src/screens/Settings/FindContactsSettings.tsx:76 4212 + msgid "Find Friends" 4213 + msgstr "" 4214 + 4215 + #: src/screens/Settings/Settings.tsx:223 4216 + #: src/screens/Settings/Settings.tsx:226 4217 + msgid "Find friends from contacts" 4218 + msgstr "" 4219 + 4220 + #: src/components/contacts/screens/GetContacts.tsx:270 4221 + #: src/components/contacts/screens/GetContacts.tsx:284 4222 + msgid "Find my friends" 4223 + msgstr "" 4224 + 4225 + #. Starter packs suggested to the user for them to follow 4226 + #: src/components/ProgressGuide/FollowDialog.tsx:79 4227 + #: src/components/ProgressGuide/FollowDialog.tsx:87 4228 + #: src/components/ProgressGuide/FollowDialog.tsx:432 4229 + #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:42 4230 + msgid "Find people to follow" 4231 + msgstr "" 4232 + 4233 + #: src/screens/Search/Shell.tsx:526 4234 + msgid "Find posts, users, and feeds on Bluesky" 4235 + msgstr "Find skeets, users, and feeds on Bluesky" 4236 + 4237 + #: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:96 4238 + msgid "Find your friends" 4239 + msgstr "" 4240 + 4241 + #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:38 4242 + #: src/screens/Settings/FindContactsSettings.tsx:123 4243 + msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more</0>" 4244 + msgstr "" 4245 + 4246 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 4247 + msgid "Find your people" 4248 + msgstr "" 4249 + 4250 + #: src/components/contacts/screens/GetContacts.tsx:278 4251 + msgid "Finding friends..." 4252 + msgstr "" 4253 + 4254 + #: src/screens/StarterPack/Wizard/index.tsx:219 4255 + msgid "Finish" 4256 + msgstr "" 4257 + 4258 + #: src/components/contacts/components/OTPInput.tsx:55 4259 + msgid "Focus code input" 4260 + msgstr "" 4261 + 4262 + #. User is not following this account, click to follow 4263 + #: src/components/ProfileCard.tsx:566 4264 + #: src/components/ProfileHoverCard/index.web.tsx:512 4265 + #: src/components/ProfileHoverCard/index.web.tsx:527 4266 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:143 4267 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:387 4268 + #: src/screens/VideoFeed/index.tsx:880 4269 + #: src/view/com/notifications/NotificationFeedItem.tsx:846 4270 + #: src/view/com/notifications/NotificationFeedItem.tsx:853 4271 + msgid "Follow" 4272 + msgstr "" 4273 + 4274 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 4275 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:371 4276 + msgid "Follow {0}" 4277 + msgstr "" 4278 + 4279 + #: src/screens/VideoFeed/index.tsx:857 4280 + msgid "Follow {handle}" 4281 + msgstr "" 4282 + 4283 + #: src/state/shell/progress-guide.tsx:231 4284 + msgid "Follow 10 accounts" 4285 + msgstr "" 4286 + 4287 + #: src/components/ProgressGuide/List.tsx:60 4288 + msgid "Follow 10 people to get started" 4289 + msgstr "" 4290 + 4291 + #: src/components/ProgressGuide/List.tsx:102 4292 + msgid "Follow 7 accounts" 4293 + msgstr "" 4294 + 4295 + #: src/view/com/profile/ProfileMenu.tsx:362 4296 + #: src/view/com/profile/ProfileMenu.tsx:377 4297 + msgid "Follow account" 4298 + msgstr "" 4299 + 4300 + #: src/components/contacts/screens/ViewMatches.tsx:273 4301 + #: src/components/contacts/screens/ViewMatches.tsx:288 4302 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:265 4303 + #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156 4304 + #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163 4305 + #: src/screens/Settings/FindContactsSettings.tsx:438 4306 + #: src/screens/Settings/FindContactsSettings.tsx:448 4307 + #: src/screens/StarterPack/StarterPackScreen.tsx:439 4308 + #: src/screens/StarterPack/StarterPackScreen.tsx:447 4309 + msgid "Follow all" 4310 + msgstr "" 4311 + 4312 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:262 4313 + msgid "Follow all accounts" 4314 + msgstr "" 4315 + 4316 + #. User is not following this account, click to follow back 4317 + #: src/components/ProfileCard.tsx:560 4318 + #: src/components/ProfileHoverCard/index.web.tsx:511 4319 + #: src/components/ProfileHoverCard/index.web.tsx:526 4320 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:141 4321 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 4322 + #: src/view/com/notifications/NotificationFeedItem.tsx:846 4323 + #: src/view/com/notifications/NotificationFeedItem.tsx:853 4324 + msgid "Follow back" 4325 + msgstr "" 4326 + 4327 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:116 4328 + msgid "Followed all accounts!" 4329 + msgstr "" 4330 + 4331 + #: src/screens/Settings/FindContactsSettings.tsx:391 4332 + msgid "Followed all matches" 4333 + msgstr "" 4334 + 4335 + #: src/components/KnownFollowers.tsx:238 4336 + msgid "Followed by <0>{0}</0>" 4337 + msgstr "" 4338 + 4339 + #: src/components/KnownFollowers.tsx:224 4340 + msgid "Followed by <0>{0}</0> and {1, plural, one {# other} other {# others}}" 4341 + msgstr "" 4342 + 4343 + #: src/components/KnownFollowers.tsx:211 4344 + msgid "Followed by <0>{0}</0> and <1>{1}</1>" 4345 + msgstr "" 4346 + 4347 + #: src/components/KnownFollowers.tsx:193 4348 + msgid "Followed by <0>{0}</0>, <1>{1}</1>, and {2, plural, one {# other} other {# others}}" 4349 + msgstr "" 4350 + 4351 + #: src/Navigation.tsx:268 4352 + #: src/screens/Profile/KnownFollowers.tsx:76 4353 + msgid "Followers of @{0} that you know" 4354 + msgstr "" 4355 + 4356 + #: src/screens/Profile/KnownFollowers.tsx:116 4357 + #: src/screens/Profile/KnownFollowers.tsx:133 4358 + msgid "Followers you know" 4359 + msgstr "" 4360 + 4361 + #. User is following this account, click to unfollow 4362 + #. User is following this account, click to unfollow 4363 + #: src/components/ProfileCard.tsx:553 4364 + #: src/components/ProfileHoverCard/index.web.tsx:509 4365 + #: src/components/ProfileHoverCard/index.web.tsx:524 4366 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:148 4367 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:382 4368 + #: src/screens/VideoFeed/index.tsx:878 4369 + #: src/view/com/notifications/NotificationFeedItem.tsx:824 4370 + #: src/view/com/notifications/NotificationFeedItem.tsx:841 4371 + msgid "Following" 4372 + msgstr "" 4373 + 4374 + #: src/screens/SavedFeeds.tsx:410 4375 + #: src/view/screens/Feeds.tsx:608 4376 + msgctxt "feed-name" 4377 + msgid "Following" 4378 + msgstr "" 4379 + 4380 + #: src/components/ProfileCard.tsx:509 4381 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:249 4382 + #: src/view/com/notifications/NotificationFeedItem.tsx:777 4383 + msgid "Following {0}" 4384 + msgstr "" 4385 + 4386 + #: src/screens/VideoFeed/index.tsx:856 4387 + msgid "Following {handle}" 4388 + msgstr "" 4389 + 4390 + #: src/screens/Settings/ContentAndMediaSettings.tsx:77 4391 + #: src/screens/Settings/ContentAndMediaSettings.tsx:80 4392 + msgid "Following feed preferences" 4393 + msgstr "" 4394 + 4395 + #: src/Navigation.tsx:385 4396 + #: src/screens/Settings/FollowingFeedPreferences.tsx:56 4397 + msgid "Following Feed Preferences" 4398 + msgstr "" 4399 + 4400 + #: src/screens/Settings/AppearanceSettings.tsx:221 4401 + msgid "Font" 4402 + msgstr "" 4403 + 4404 + #: src/screens/Settings/AppearanceSettings.tsx:241 4405 + msgid "Font size" 4406 + msgstr "" 4407 + 4408 + #: src/lib/interests.ts:61 4409 + msgid "Food" 4410 + msgstr "" 4411 + 4412 + #: src/ageAssurance/components/NoAccessScreen.tsx:90 4413 + msgid "For organizational accounts, use the birthdate of the person who is responsible for the account." 4414 + msgstr "" 4415 + 4416 + #: src/view/com/modals/DeleteAccount.tsx:125 4417 + msgid "For security reasons, we'll need to send a confirmation code to your email address." 4418 + msgstr "" 4419 + 4420 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:208 4421 + msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." 4422 + msgstr "" 4423 + 4424 + #: src/screens/Settings/AppearanceSettings.tsx:223 4425 + msgid "For the best experience, we recommend using the theme font." 4426 + msgstr "" 4427 + 4428 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:323 4429 + #: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91 4430 + msgid "For You" 4431 + msgstr "" 4432 + 4433 + #: src/screens/Settings/DeerSettings.tsx:622 4434 + msgid "Forcefully disables the notifications other people receive when you like/repost a post someone else has reposted for privacy." 4435 + msgstr "Forcefully disables the notifications other people receive when you like/reskeet a skeet someone else has reskeeted for privacy." 4436 + 4437 + #: src/components/dialogs/MutedWords.tsx:184 4438 + msgid "Forever" 4439 + msgstr "" 4440 + 4441 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 4442 + msgid "Forget the noise" 4443 + msgstr "" 4444 + 4445 + #: src/screens/Login/index.tsx:215 4446 + #: src/screens/Login/index.tsx:230 4447 + msgid "Forgot Password" 4448 + msgstr "" 4449 + 4450 + #: src/screens/Login/LoginForm.tsx:283 4451 + msgid "Forgot password?" 4452 + msgstr "" 4453 + 4454 + #: src/screens/Login/LoginForm.tsx:294 4455 + msgid "Forgot?" 4456 + msgstr "" 4457 + 4458 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 4459 + msgid "Free your feed" 4460 + msgstr "" 4461 + 4462 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:157 4463 + msgid "From" 4464 + msgstr "" 4465 + 4466 + #: src/screens/Hashtag.tsx:139 4467 + msgid "From @{sanitizedAuthor}" 4468 + msgstr "" 4469 + 4470 + #: src/view/com/posts/PostFeedReason.tsx:47 4471 + msgctxt "from-feed" 4472 + msgid "From <0/>" 4473 + msgstr "" 4474 + 4475 + #: src/screens/Settings/DeerSettings.tsx:796 4476 + msgid "Gates" 4477 + msgstr "" 4478 + 4479 + #: src/components/StarterPack/ProfileStarterPacks.tsx:335 4480 + msgid "Generate a starter pack" 4481 + msgstr "" 4482 + 4483 + #: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 4484 + msgid "Get notifications when people follow you." 4485 + msgstr "" 4486 + 4487 + #: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 4488 + msgid "Get notifications when people like posts that you've reposted." 4489 + msgstr "Get notifications when people like skeets that you've reskeeted." 4490 + 4491 + #: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 4492 + msgid "Get notifications when people like your posts." 4493 + msgstr "Get notifications when people like your skeets." 4494 + 4495 + #: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 4496 + msgid "Get notifications when people mention you." 4497 + msgstr "" 4498 + 4499 + #: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 4500 + msgid "Get notifications when people quote your posts." 4501 + msgstr "Get notifications when people quote your skeets." 4502 + 4503 + #: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 4504 + msgid "Get notifications when people reply to your posts." 4505 + msgstr "Get notifications when people reply to your skeets." 4506 + 4507 + #: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 4508 + msgid "Get notifications when people repost posts that you've reposted." 4509 + msgstr "Get notifications when people reskeet skeets that you've reskeeted." 4510 + 4511 + #: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 4512 + msgid "Get notifications when people repost your posts." 4513 + msgstr "Get notifications when people reskeet your skeets." 4514 + 4515 + #: src/components/activity-notifications/SubscribeProfileButton.tsx:96 4516 + msgid "Get notified about new posts" 4517 + msgstr "Get notified about new skeets" 4518 + 4519 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 4520 + msgid "Get notified about posts and replies from accounts you choose." 4521 + msgstr "Get notified about skeets and replies from accounts you choose." 4522 + 4523 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:219 4524 + msgid "Get notified of new posts from {name}" 4525 + msgstr "Get notified of new skeets from {name}" 4526 + 4527 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 4528 + msgid "Get notified of this accountโ€™s activity" 4529 + msgstr "" 4530 + 4531 + #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 4532 + msgid "Get notified when {name} posts" 4533 + msgstr "Get notified when {name} skeets" 4534 + 4535 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:140 4536 + msgid "Get notified when someone posts" 4537 + msgstr "Get notified when someone skeets" 4538 + 4539 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 4540 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 4541 + msgid "Get started" 4542 + msgstr "" 4543 + 4544 + #: src/components/MediaPreview.tsx:123 4545 + msgid "GIF" 4546 + msgstr "" 4547 + 4548 + #: src/screens/Onboarding/StepProfile/index.tsx:242 4549 + msgid "Give your profile a face" 4550 + msgstr "" 4551 + 4552 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:142 4553 + msgid "Glorification of violence" 4554 + msgstr "" 4555 + 4556 + #: src/components/dialogs/LinkWarning.tsx:111 4557 + #: src/components/dialogs/LinkWarning.tsx:117 4558 + #: src/components/Layout/Header/index.tsx:128 4559 + #: src/components/moderation/ScreenHider.tsx:163 4560 + #: src/components/moderation/ScreenHider.tsx:172 4561 + #: src/screens/Messages/Inbox.tsx:251 4562 + #: src/screens/Profile/ProfileFeed/index.tsx:93 4563 + #: src/screens/ProfileList/components/ErrorScreen.tsx:34 4564 + #: src/screens/ProfileList/components/ErrorScreen.tsx:40 4565 + #: src/screens/VideoFeed/components/Header.tsx:166 4566 + #: src/screens/VideoFeed/index.tsx:1186 4567 + #: src/screens/VideoFeed/index.tsx:1190 4568 + #: src/view/com/auth/LoggedOut.tsx:72 4569 + #: src/view/com/profile/ProfileFollowers.tsx:180 4570 + #: src/view/com/profile/ProfileFollowers.tsx:181 4571 + #: src/view/screens/NotFound.tsx:57 4572 + msgid "Go back" 4573 + msgstr "" 4574 + 4575 + #: src/components/Error.tsx:78 4576 + #: src/screens/List/ListHiddenScreen.tsx:224 4577 + #: src/screens/Profile/ErrorState.tsx:62 4578 + #: src/screens/Profile/ErrorState.tsx:66 4579 + #: src/screens/Profile/ProfileFeed/index.tsx:98 4580 + #: src/screens/StarterPack/StarterPackScreen.tsx:778 4581 + #: src/view/screens/NotFound.tsx:56 4582 + msgid "Go Back" 4583 + msgstr "" 4584 + 4585 + #: src/screens/Onboarding/Layout.tsx:97 4586 + #: src/screens/Onboarding/Layout.tsx:198 4587 + #: src/screens/Signup/BackNextButtons.tsx:35 4588 + msgid "Go back to previous step" 4589 + msgstr "" 4590 + 4591 + #: src/screens/Bookmarks/components/EmptyState.tsx:43 4592 + #: src/screens/Bookmarks/components/EmptyState.tsx:51 4593 + msgctxt "Button to go back to the home timeline" 4594 + msgid "Go home" 4595 + msgstr "" 4596 + 4597 + #: src/screens/Bookmarks/index.tsx:285 4598 + #: src/view/screens/NotFound.tsx:57 4599 + msgid "Go home" 4600 + msgstr "" 4601 + 4602 + #: src/view/screens/NotFound.tsx:56 4603 + msgid "Go Home" 4604 + msgstr "" 4605 + 4606 + #: src/view/com/profile/ProfileMenu.tsx:436 4607 + #: src/view/com/profile/ProfileMenu.tsx:457 4608 + msgid "Go live" 4609 + msgstr "" 4610 + 4611 + #: src/components/live/GoLiveDialog.tsx:98 4612 + #: src/components/live/GoLiveDialog.tsx:103 4613 + #: src/components/live/GoLiveDialog.tsx:231 4614 + #: src/components/live/GoLiveDialog.tsx:240 4615 + msgid "Go Live" 4616 + msgstr "" 4617 + 4618 + #: src/view/com/profile/ProfileMenu.tsx:433 4619 + #: src/view/com/profile/ProfileMenu.tsx:453 4620 + msgid "Go live (disabled)" 4621 + msgstr "" 4622 + 4623 + #: src/components/live/GoLiveDialog.tsx:173 4624 + msgid "Go live for" 4625 + msgstr "" 4626 + 4627 + #: src/view/com/notifications/NotificationFeedItem.tsx:249 4628 + msgid "Go to {firstAuthorName}'s profile" 4629 + msgstr "" 4630 + 4631 + #: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:93 4632 + #: src/components/ageAssurance/AgeRestrictedScreen.tsx:71 4633 + #: src/components/ageAssurance/AgeRestrictedScreen.tsx:80 4634 + #: src/screens/Moderation/index.tsx:219 4635 + msgid "Go to account settings" 4636 + msgstr "" 4637 + 4638 + #: src/screens/Messages/components/ChatListItem.tsx:367 4639 + msgid "Go to conversation with {0}" 4640 + msgstr "" 4641 + 4642 + #: src/view/com/posts/PostFeedReason.tsx:38 4643 + msgid "Go to feed" 4644 + msgstr "" 4645 + 4646 + #: src/screens/Login/ForgotPasswordForm.tsx:165 4647 + msgid "Go to next" 4648 + msgstr "" 4649 + 4650 + #: src/components/dms/ConvoMenu.tsx:244 4651 + #: src/view/shell/desktop/LeftNav.tsx:320 4652 + #: src/view/shell/desktop/LeftNav.tsx:326 4653 + msgid "Go to profile" 4654 + msgstr "" 4655 + 4656 + #: src/components/dms/ConvoMenu.tsx:241 4657 + msgid "Go to user's profile" 4658 + msgstr "" 4659 + 4660 + #: src/components/live/GoLiveDisabledDialog.tsx:104 4661 + msgid "Going live is currently disabled for your account" 4662 + msgstr "" 4663 + 4664 + #: src/lib/moderation/useGlobalLabelStrings.ts:46 4665 + #: src/lib/moderation/useGlobalLabelStrings.ts:50 4666 + #: src/view/com/composer/labels/LabelsBtn.tsx:196 4667 + #: src/view/com/composer/labels/LabelsBtn.tsx:199 4668 + msgid "Graphic Media" 4669 + msgstr "" 4670 + 4671 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:138 4672 + msgid "Graphic violent content" 4673 + msgstr "" 4674 + 4675 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:169 4676 + msgid "Grooming or predatory behavior" 4677 + msgstr "" 4678 + 4679 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 4680 + msgid "Hacking or system attacks" 4681 + msgstr "" 4682 + 4683 + #: src/state/shell/progress-guide.tsx:220 4684 + #: src/state/shell/progress-guide.tsx:230 4685 + msgid "Half way there!" 4686 + msgstr "" 4687 + 4688 + #: src/screens/Settings/AccountSettings.tsx:130 4689 + #: src/screens/Settings/AccountSettings.tsx:135 4690 + msgid "Handle" 4691 + msgstr "" 4692 + 4693 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:609 4694 + msgid "Handle already taken. Please try a different one." 4695 + msgstr "" 4696 + 4697 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:197 4698 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:356 4699 + msgid "Handle changed!" 4700 + msgstr "" 4701 + 4702 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:613 4703 + msgid "Handle too long. Please try a shorter one." 4704 + msgstr "" 4705 + 4706 + #: src/components/FeedCard.tsx:157 4707 + #: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 4708 + msgid "Happening now" 4709 + msgstr "" 4710 + 4711 + #: src/screens/Settings/AccessibilitySettings.tsx:85 4712 + msgid "Haptics" 4713 + msgstr "" 4714 + 4715 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 4716 + msgid "Harassment or hate" 4717 + msgstr "" 4718 + 4719 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:189 4720 + msgid "Harmful or high-risk activities" 4721 + msgstr "" 4722 + 4723 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:162 4724 + msgid "Harming or endangering minors" 4725 + msgstr "" 4726 + 4727 + #: src/Navigation.tsx:578 4728 + msgid "Hashtag" 4729 + msgstr "" 4730 + 4731 + #: src/components/RichTextTag.tsx:52 4732 + msgid "Hashtag {tag}" 4733 + msgstr "" 4734 + 4735 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111 4736 + msgid "Hate speech" 4737 + msgstr "" 4738 + 4739 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:198 4740 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:317 4741 + msgid "Have a code? <0>Click here.</0>" 4742 + msgstr "" 4743 + 4744 + #: src/screens/Signup/StepInfo/index.tsx:404 4745 + msgid "Have we got your location wrong? <0>Tap here to confirm your location with GPS.</0>" 4746 + msgstr "" 4747 + 4748 + #: src/screens/Signup/index.tsx:229 4749 + msgid "Having trouble?" 4750 + msgstr "" 4751 + 4752 + #: src/components/contacts/screens/PhoneInput.tsx:287 4753 + msgid "Held by Bluesky for 7 days to prevent abuse, then deleted" 4754 + msgstr "" 4755 + 4756 + #: src/screens/Onboarding/StepProfile/index.tsx:245 4757 + msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4758 + msgstr "" 4759 + 4760 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 4761 + msgid "Here is your app password!" 4762 + msgstr "" 4763 + 4764 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:73 4765 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:119 4766 + msgid "Hey there ๐Ÿ‘‹" 4767 + msgstr "" 4768 + 4769 + #: src/ageAssurance/components/NoAccessScreen.tsx:170 4770 + msgid "Hey there!" 4771 + msgstr "" 4772 + 4773 + #: src/ageAssurance/components/NoAccessScreen.tsx:210 4774 + msgid "Hi there!" 4775 + msgstr "" 4776 + 4777 + #: src/components/VideoPostCard.tsx:178 4778 + #: src/components/VideoPostCard.tsx:462 4779 + msgid "Hidden" 4780 + msgstr "" 4781 + 4782 + #: src/screens/VideoFeed/index.tsx:654 4783 + msgid "Hidden by your moderation settings." 4784 + msgstr "" 4785 + 4786 + #: src/components/ListCard.tsx:132 4787 + msgid "Hidden list" 4788 + msgstr "" 4789 + 4790 + #: src/components/interstitials/Trending.tsx:133 4791 + #: src/components/interstitials/TrendingVideos.tsx:139 4792 + #: src/components/moderation/ContentHider.tsx:208 4793 + #: src/components/moderation/LabelPreference.tsx:140 4794 + #: src/components/moderation/PostHider.tsx:137 4795 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1050 4796 + #: src/lib/moderation/useLabelBehaviorDescription.ts:18 4797 + #: src/lib/moderation/useLabelBehaviorDescription.ts:23 4798 + #: src/lib/moderation/useLabelBehaviorDescription.ts:28 4799 + #: src/lib/moderation/useLabelBehaviorDescription.ts:33 4800 + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:132 4801 + msgid "Hide" 4802 + msgstr "" 4803 + 4804 + #: src/view/com/notifications/NotificationFeedItem.tsx:938 4805 + msgctxt "action" 4806 + msgid "Hide" 4807 + msgstr "" 4808 + 4809 + #: src/screens/Settings/DeerSettings.tsx:598 4810 + #: src/screens/Settings/DeerSettings.tsx:603 4811 + msgid "Hide \"Feeds โœจ\" tab when only one feed is selected" 4812 + msgstr "" 4813 + 4814 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:138 4815 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:145 4816 + msgid "Hide all events" 4817 + msgstr "" 4818 + 4819 + #: src/components/dialogs/Embed.tsx:128 4820 + msgid "Hide customization options" 4821 + msgstr "" 4822 + 4823 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:527 4824 + msgid "Hide lists" 4825 + msgstr "" 4826 + 4827 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:881 4828 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:887 4829 + msgid "Hide post for me" 4830 + msgstr "Hide skeet for me" 4831 + 4832 + #: src/screens/Settings/DeerSettings.tsx:642 4833 + #: src/screens/Settings/DeerSettings.tsx:647 4834 + msgid "Hide posts that cannot be replied to from feeds" 4835 + msgstr "Hide skeets that cannot be replied to from feeds" 4836 + 4837 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:898 4838 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:908 4839 + msgid "Hide reply for everyone" 4840 + msgstr "" 4841 + 4842 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:880 4843 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:886 4844 + msgid "Hide reply for me" 4845 + msgstr "" 4846 + 4847 + #: src/screens/Settings/DeerSettings.tsx:630 4848 + #: src/screens/Settings/DeerSettings.tsx:635 4849 + msgid "Hide similar accounts recommendations" 4850 + msgstr "" 4851 + 4852 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:113 4853 + msgid "Hide this card" 4854 + msgstr "" 4855 + 4856 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:126 4857 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:133 4858 + msgid "Hide this event" 4859 + msgstr "" 4860 + 4861 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1045 4862 + msgid "Hide this post?" 4863 + msgstr "Hide this skeet?" 4864 + 4865 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1045 4866 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1080 4867 + msgid "Hide this reply?" 4868 + msgstr "" 4869 + 4870 + #: src/components/interstitials/Trending.tsx:115 4871 + msgid "Hide trending topics" 4872 + msgstr "" 4873 + 4874 + #: src/components/interstitials/Trending.tsx:131 4875 + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:130 4876 + msgid "Hide trending topics?" 4877 + msgstr "" 4878 + 4879 + #: src/components/interstitials/TrendingVideos.tsx:137 4880 + msgid "Hide trending videos?" 4881 + msgstr "" 4882 + 4883 + #: src/view/com/notifications/NotificationFeedItem.tsx:929 4884 + msgid "Hide user list" 4885 + msgstr "" 4886 + 4887 + #: src/screens/Moderation/VerificationSettings.tsx:90 4888 + #: src/screens/Moderation/VerificationSettings.tsx:99 4889 + msgid "Hide verification badges" 4890 + msgstr "" 4891 + 4892 + #: src/screens/Settings/DeerSettings.tsx:652 4893 + msgid "Hides posts from feeds where replies are disabled (e.g. due to postgates or other restrictions). Does not affect thread views." 4894 + msgstr "Hides skeets from feeds where replies are disabled (e.g. due to skeetgates or other restrictions). Does not affect thread views." 4895 + 4896 + #: src/components/moderation/ContentHider.tsx:159 4897 + #: src/components/moderation/PostHider.tsx:91 4898 + msgid "Hides the content" 4899 + msgstr "" 4900 + 4901 + #: src/components/dialogs/BirthDateSettings.tsx:74 4902 + msgid "Hmm, it looks like you're logged in with an <0>App Password</0>. To set your birthdate, you'll need to log in with your main account password, or ask whomever controls this account to do so." 4903 + msgstr "" 4904 + 4905 + #: src/view/com/posts/PostFeedErrorMessage.tsx:124 4906 + msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." 4907 + msgstr "" 4908 + 4909 + #: src/view/com/posts/PostFeedErrorMessage.tsx:112 4910 + msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." 4911 + msgstr "" 4912 + 4913 + #: src/view/com/posts/PostFeedErrorMessage.tsx:118 4914 + msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." 4915 + msgstr "" 4916 + 4917 + #: src/view/com/posts/PostFeedErrorMessage.tsx:115 4918 + msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." 4919 + msgstr "" 4920 + 4921 + #: src/view/com/posts/PostFeedErrorMessage.tsx:109 4922 + msgid "Hmm, we're having trouble finding this feed. It may have been deleted." 4923 + msgstr "" 4924 + 4925 + #: src/screens/Moderation/index.tsx:60 4926 + msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." 4927 + msgstr "" 4928 + 4929 + #: src/screens/Profile/ErrorState.tsx:31 4930 + msgid "Hmmmm, we couldn't load that moderation service." 4931 + msgstr "" 4932 + 4933 + #: src/view/com/composer/state/video.ts:450 4934 + msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" 4935 + msgstr "" 4936 + 4937 + #: src/Navigation.tsx:812 4938 + #: src/Navigation.tsx:832 4939 + #: src/view/shell/bottom-bar/BottomBar.tsx:182 4940 + #: src/view/shell/desktop/LeftNav.tsx:682 4941 + #: src/view/shell/Drawer.tsx:458 4942 + msgid "Home" 4943 + msgstr "" 4944 + 4945 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:430 4946 + msgid "Host:" 4947 + msgstr "" 4948 + 4949 + #: src/screens/Login/ForgotPasswordForm.tsx:83 4950 + #: src/screens/Login/LoginForm.tsx:193 4951 + msgid "Hosting provider" 4952 + msgstr "" 4953 + 4954 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:195 4955 + msgid "Hot" 4956 + msgstr "" 4957 + 4958 + #: src/components/contacts/components/InviteInfo.tsx:53 4959 + msgid "How it works:" 4960 + msgstr "" 4961 + 4962 + #: src/components/dialogs/InAppBrowserConsent.tsx:62 4963 + #: src/components/dialogs/InAppBrowserConsent.tsx:66 4964 + msgid "How should we open this link?" 4965 + msgstr "" 4966 + 4967 + #: src/components/contacts/screens/PhoneInput.tsx:276 4968 + msgid "How we use your number:" 4969 + msgstr "" 4970 + 4971 + #: src/screens/Settings/AppearanceSettings.tsx:204 4972 + msgid "Hue shift the colors:" 4973 + msgstr "" 4974 + 4975 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:150 4976 + msgid "Human trafficking" 4977 + msgstr "" 4978 + 4979 + #: src/components/contacts/screens/GetContacts.tsx:264 4980 + msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out." 4981 + msgstr "" 4982 + 4983 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:133 4984 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:136 4985 + msgid "I have a code" 4986 + msgstr "" 4987 + 4988 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:292 4989 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:298 4990 + msgid "I have my own domain" 4991 + msgstr "" 4992 + 4993 + #: src/components/dms/BlockedByListDialog.tsx:57 4994 + #: src/components/dms/ReportConversationPrompt.tsx:21 4995 + msgid "I understand" 4996 + msgstr "" 4997 + 4998 + #: src/components/contacts/screens/ViewMatches.tsx:574 4999 + msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" 5000 + msgstr "" 5001 + 5002 + #: src/view/com/lightbox/Lightbox.web.tsx:187 5003 + msgid "If alt text is long, toggles alt text expanded state" 5004 + msgstr "" 5005 + 5006 + #: src/screens/Signup/StepInfo/index.tsx:423 5007 + msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." 5008 + msgstr "" 5009 + 5010 + #: src/ageAssurance/components/NoAccessScreen.tsx:122 5011 + msgid "If you believe your birthdate is incorrect, please <0>contact our support team</0>." 5012 + msgstr "" 5013 + 5014 + #: src/ageAssurance/components/NoAccessScreen.tsx:100 5015 + msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here</0>." 5016 + msgstr "" 5017 + 5018 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:117 5019 + msgid "If you choose to hide all events, you can always re-enable them from <0>Settings โ†’ Content & Media</0>." 5020 + msgstr "" 5021 + 5022 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:280 5023 + msgid "If you delete this list, you won't be able to recover it." 5024 + msgstr "" 5025 + 5026 + #: src/screens/Signup/StepInfo/index.tsx:214 5027 + msgid "If you have one, sign in with an existing Bluesky account." 5028 + msgstr "" 5029 + 5030 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:274 5031 + msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.</0>" 5032 + msgstr "" 5033 + 5034 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 5035 + msgid "If you need to update your email, <0>click here</0>." 5036 + msgstr "" 5037 + 5038 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1036 5039 + msgid "If you remove this post, you won't be able to recover it." 5040 + msgstr "If you remove this skeet, you won't be able to recover it." 5041 + 5042 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:208 5043 + msgid "If you update your email address, email 2FA will be disabled." 5044 + msgstr "" 5045 + 5046 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:59 5047 + msgid "If you want to change your password, we will send you a code to verify that this is your account." 5048 + msgstr "" 5049 + 5050 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 5051 + #: src/view/screens/Storybook/Admonitions.tsx:89 5052 + msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security</0>." 5053 + msgstr "" 5054 + 5055 + #: src/components/dialogs/ServerInput.tsx:176 5056 + msgid "If you're a developer, you can host your own server." 5057 + msgstr "" 5058 + 5059 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 5060 + msgid "If you're trying to change your handle or email, do so before you deactivate." 5061 + msgstr "" 5062 + 5063 + #: src/components/images/Gallery.tsx:80 5064 + msgid "Image" 5065 + msgstr "" 5066 + 5067 + #: src/screens/Settings/AboutSettings.tsx:62 5068 + msgid "Image cache cleared" 5069 + msgstr "" 5070 + 5071 + #. Android-only toast message which includes amount of space freed using localized number formatting 5072 + #: src/screens/Settings/AboutSettings.tsx:48 5073 + msgid "Image cache cleared, freed {0}" 5074 + msgstr "" 5075 + 5076 + #: src/lib/media/save-image.ios.ts:25 5077 + #: src/lib/media/save-image.ts:29 5078 + msgid "Image saved" 5079 + msgstr "" 5080 + 5081 + #: src/lib/media/save-image.ts:51 5082 + msgid "Images cannot be saved unless permission is granted to access your photo library." 5083 + msgstr "" 5084 + 5085 + #: src/screens/Settings/DeerSettings.tsx:590 5086 + msgid "Images will be served as PNG instead of JPEG. Images will take longer to load and use more bandwidth." 5087 + msgstr "" 5088 + 5089 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:51 5090 + msgid "Impersonation" 5091 + msgstr "" 5092 + 5093 + #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:68 5094 + #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:73 5095 + #: src/screens/Settings/FindContactsSettings.tsx:143 5096 + #: src/screens/Settings/FindContactsSettings.tsx:148 5097 + msgid "Import contacts" 5098 + msgstr "" 5099 + 5100 + #: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:114 5101 + #: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:125 5102 + msgid "Import Contacts" 5103 + msgstr "" 5104 + 5105 + #: src/components/contacts/FindContactsBannerNUX.tsx:32 5106 + #: src/components/contacts/FindContactsBannerNUX.tsx:70 5107 + msgid "Import contacts to find your friends" 5108 + msgstr "" 5109 + 5110 + #: src/screens/Settings/FindContactsSettings.tsx:507 5111 + msgid "Imported on {0}" 5112 + msgstr "" 5113 + 5114 + #: src/ageAssurance/components/NoAccessScreen.tsx:213 5115 + msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private." 5116 + msgstr "" 5117 + 5118 + #: src/screens/Settings/NotificationSettings/index.tsx:284 5119 + msgid "In-app" 5120 + msgstr "" 5121 + 5122 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:146 5123 + msgid "In-app notifications" 5124 + msgstr "" 5125 + 5126 + #: src/screens/Settings/NotificationSettings/index.tsx:267 5127 + msgid "In-app, Everyone" 5128 + msgstr "" 5129 + 5130 + #: src/screens/Settings/NotificationSettings/index.tsx:275 5131 + msgid "In-app, People you follow" 5132 + msgstr "" 5133 + 5134 + #: src/screens/Settings/NotificationSettings/index.tsx:282 5135 + msgid "In-app, Push" 5136 + msgstr "" 5137 + 5138 + #: src/screens/Settings/NotificationSettings/index.tsx:265 5139 + msgid "In-app, Push, Everyone" 5140 + msgstr "" 5141 + 5142 + #: src/screens/Settings/NotificationSettings/index.tsx:273 5143 + msgid "In-app, Push, People you follow" 5144 + msgstr "" 5145 + 5146 + #. Title message shown in chat requests inbox when it's empty 5147 + #: src/screens/Messages/Inbox.tsx:231 5148 + msgid "Inbox zero!" 5149 + msgstr "" 5150 + 5151 + #: src/screens/Login/LoginForm.tsx:173 5152 + msgid "Incorrect username or password" 5153 + msgstr "" 5154 + 5155 + #: src/screens/Login/SetNewPasswordForm.tsx:133 5156 + msgid "Input code sent to your email for password reset" 5157 + msgstr "" 5158 + 5159 + #: src/view/com/modals/DeleteAccount.tsx:231 5160 + msgid "Input confirmation code for account deletion" 5161 + msgstr "" 5162 + 5163 + #: src/screens/Login/SetNewPasswordForm.tsx:159 5164 + msgid "Input new password" 5165 + msgstr "" 5166 + 5167 + #: src/view/com/modals/DeleteAccount.tsx:253 5168 + msgid "Input password for account deletion" 5169 + msgstr "" 5170 + 5171 + #: src/screens/Login/LoginForm.tsx:321 5172 + msgid "Input the code which has been emailed to you" 5173 + msgstr "" 5174 + 5175 + #: src/screens/Settings/DeerSettings.tsx:203 5176 + msgid "Input the url of the constellations instance to use" 5177 + msgstr "" 5178 + 5179 + #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135 5180 + msgid "Interaction limited" 5181 + msgstr "" 5182 + 5183 + #: src/screens/Moderation/index.tsx:251 5184 + msgid "Interaction settings" 5185 + msgstr "" 5186 + 5187 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:35 5188 + msgid "Introducing activity notifications" 5189 + msgstr "" 5190 + 5191 + #: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:55 5192 + msgid "Introducing finding friends via contacts" 5193 + msgstr "" 5194 + 5195 + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:37 5196 + msgid "Introducing saved posts AKA bookmarks" 5197 + msgstr "Introducing saved skeets AKA bookmarks" 5198 + 5199 + #: src/screens/Login/LoginForm.tsx:165 5200 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 5201 + msgid "Invalid 2FA confirmation code." 5202 + msgstr "" 5203 + 5204 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 5205 + msgid "Invalid handle. Please try a different one." 5206 + msgstr "" 5207 + 5208 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:561 5209 + msgctxt "toast" 5210 + msgid "Invalid interaction settings." 5211 + msgstr "" 5212 + 5213 + #: src/components/contacts/phone-number.ts:33 5214 + #: src/components/contacts/screens/PhoneInput.tsx:139 5215 + msgid "Invalid phone number" 5216 + msgstr "" 5217 + 5218 + #: src/components/moderation/ReportDialog/index.tsx:93 5219 + msgid "Invalid report subject" 5220 + msgstr "" 5221 + 5222 + #: src/components/intents/VerifyEmailIntentDialog.tsx:85 5223 + msgid "Invalid Verification Code" 5224 + msgstr "" 5225 + 5226 + #: src/components/contacts/screens/ViewMatches.tsx:583 5227 + msgid "Invite" 5228 + msgstr "" 5229 + 5230 + #: src/components/contacts/screens/ViewMatches.tsx:563 5231 + msgid "Invite {name} to join Bluesky" 5232 + msgstr "" 5233 + 5234 + #: src/screens/Signup/StepInfo/index.tsx:267 5235 + msgid "Invite code" 5236 + msgstr "" 5237 + 5238 + #: src/screens/Signup/state.ts:342 5239 + msgid "Invite code not accepted. Check that you input it correctly and try again." 5240 + msgstr "" 5241 + 5242 + #: src/components/contacts/components/InviteInfo.tsx:41 5243 + #: src/components/contacts/components/InviteInfo.tsx:43 5244 + msgid "Invite Friends" 5245 + msgstr "" 5246 + 5247 + #: src/components/contacts/screens/ViewMatches.tsx:298 5248 + msgid "Invite friends <0/>" 5249 + msgstr "" 5250 + 5251 + #: src/components/StarterPack/ShareDialog.tsx:81 5252 + msgid "Invite people to this starter pack!" 5253 + msgstr "" 5254 + 5255 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:34 5256 + msgid "Invite your friends to follow your favorite feeds and people" 5257 + msgstr "" 5258 + 5259 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:31 5260 + msgid "Invites, but personal" 5261 + msgstr "" 5262 + 5263 + #: src/ageAssurance/components/NoAccessScreen.tsx:365 5264 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:92 5265 + msgid "Is your location not accurate? <0>Tap here to confirm your location.</0>" 5266 + msgstr "" 5267 + 5268 + #: src/components/contacts/components/InviteInfo.tsx:46 5269 + msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide." 5270 + msgstr "" 5271 + 5272 + #: src/screens/Signup/StepInfo/index.tsx:456 5273 + msgid "It's correct" 5274 + msgstr "" 5275 + 5276 + #: src/screens/StarterPack/Wizard/index.tsx:493 5277 + msgid "It's just <0>{0} </0>right now! Add more people to your starter pack by searching above." 5278 + msgstr "" 5279 + 5280 + #: src/screens/StarterPack/Wizard/index.tsx:488 5281 + msgid "It's just you right now! Add more people to your starter pack by searching above." 5282 + msgstr "" 5283 + 5284 + #: src/view/com/composer/Composer.tsx:1867 5285 + msgid "Job ID: {0}" 5286 + msgstr "" 5287 + 5288 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:209 5289 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 5290 + #: src/screens/StarterPack/StarterPackScreen.tsx:465 5291 + #: src/screens/StarterPack/StarterPackScreen.tsx:476 5292 + msgid "Join Bluesky" 5293 + msgstr "" 5294 + 5295 + #: src/components/StarterPack/QrCode.tsx:73 5296 + #: src/view/shell/NavSignupCard.tsx:40 5297 + msgid "Join the conversation" 5298 + msgstr "" 5299 + 5300 + #: src/lib/interests.ts:63 5301 + msgid "Journalism" 5302 + msgstr "" 5303 + 5304 + #: src/view/shell/desktop/RightNav.tsx:137 5305 + #: src/view/shell/Drawer.tsx:728 5306 + msgid "Kawaii logo by <0>ovvie</0>" 5307 + msgstr "" 5308 + 5309 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 5310 + msgid "Keep me posted" 5311 + msgstr "Keep me skeeted" 5312 + 5313 + #: src/screens/Settings/AppearanceSettings.tsx:114 5314 + msgid "Kitty" 5315 + msgstr "" 5316 + 5317 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:199 5318 + msgid "KWS website" 5319 + msgstr "" 5320 + 5321 + #: src/components/moderation/ContentHider.tsx:239 5322 + msgid "Labeled by {0}." 5323 + msgstr "" 5324 + 5325 + #: src/components/moderation/ContentHider.tsx:237 5326 + msgid "Labeled by the author." 5327 + msgstr "" 5328 + 5329 + #: src/screens/Settings/DeerSettings.tsx:831 5330 + msgid "Labelers" 5331 + msgstr "" 5332 + 5333 + #: src/view/com/composer/labels/LabelsBtn.tsx:69 5334 + #: src/view/screens/Profile.tsx:232 5335 + msgid "Labels" 5336 + msgstr "" 5337 + 5338 + #: src/view/com/composer/labels/LabelsBtn.tsx:67 5339 + msgid "Labels added" 5340 + msgstr "" 5341 + 5342 + #: src/screens/Profile/Sections/Labels.tsx:193 5343 + msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." 5344 + msgstr "" 5345 + 5346 + #: src/components/moderation/LabelsOnMeDialog.tsx:76 5347 + msgid "Labels on your account" 5348 + msgstr "" 5349 + 5350 + #: src/components/moderation/LabelsOnMeDialog.tsx:78 5351 + msgid "Labels on your content" 5352 + msgstr "" 5353 + 5354 + #: src/Navigation.tsx:241 5355 + msgid "Language Settings" 5356 + msgstr "" 5357 + 5358 + #: src/screens/Settings/LanguageSettings.tsx:78 5359 + #: src/screens/Settings/Settings.tsx:254 5360 + #: src/screens/Settings/Settings.tsx:257 5361 + msgid "Languages" 5362 + msgstr "" 5363 + 5364 + #: src/screens/Settings/AppearanceSettings.tsx:253 5365 + msgid "Larger" 5366 + msgstr "" 5367 + 5368 + #: src/ageAssurance/components/NoAccessScreen.tsx:348 5369 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:193 5370 + msgid "Last initiated {timeAgo} ago" 5371 + msgstr "" 5372 + 5373 + #: src/ageAssurance/components/NoAccessScreen.tsx:346 5374 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:191 5375 + msgid "Last initiated just now" 5376 + msgstr "" 5377 + 5378 + #: src/screens/Hashtag.tsx:114 5379 + #: src/screens/Search/SearchResults.tsx:62 5380 + #: src/screens/Topic.tsx:81 5381 + msgid "Latest" 5382 + msgstr "" 5383 + 5384 + #: src/components/verification/VerificationsDialog.tsx:171 5385 + #: src/components/verification/VerifierDialog.tsx:143 5386 + #: src/screens/Moderation/VerificationSettings.tsx:48 5387 + #: src/screens/Profile/Header/EditProfileDialog.tsx:355 5388 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:215 5389 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:279 5390 + msgctxt "english-only-resource" 5391 + msgid "Learn more" 5392 + msgstr "" 5393 + 5394 + #: src/components/moderation/ScreenHider.tsx:149 5395 + msgid "Learn More" 5396 + msgstr "" 5397 + 5398 + #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:68 5399 + msgid "Learn more about age assurance" 5400 + msgstr "" 5401 + 5402 + #: src/components/contacts/components/InviteInfo.tsx:32 5403 + msgid "Learn more about how inviting friends works" 5404 + msgstr "" 5405 + 5406 + #: src/components/contacts/screens/PhoneInput.tsx:300 5407 + #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:45 5408 + #: src/screens/Settings/FindContactsSettings.tsx:130 5409 + msgctxt "english-only-resource" 5410 + msgid "Learn more about importing contacts" 5411 + msgstr "" 5412 + 5413 + #: src/components/dialogs/ServerInput.tsx:186 5414 + msgid "Learn more about self hosting your PDS." 5415 + msgstr "" 5416 + 5417 + #: src/components/moderation/ContentHider.tsx:157 5418 + #: src/components/moderation/ContentHider.tsx:223 5419 + msgid "Learn more about the moderation applied to this content" 5420 + msgstr "" 5421 + 5422 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 5423 + msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post.</0>" 5424 + msgstr "Learn more about these changes and how to share your thoughts with us by <0>reading our blog skeet.</0>" 5425 + 5426 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 5427 + msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." 5428 + msgstr "Learn more about these changes and how to share your thoughts with us by reading our blog skeet." 5429 + 5430 + #: src/components/moderation/PostHider.tsx:113 5431 + #: src/components/moderation/ScreenHider.tsx:136 5432 + msgid "Learn more about this warning" 5433 + msgstr "" 5434 + 5435 + #: src/components/verification/VerificationsDialog.tsx:152 5436 + #: src/components/verification/VerifierDialog.tsx:124 5437 + msgctxt "english-only-resource" 5438 + msgid "Learn more about verification on Bluesky" 5439 + msgstr "" 5440 + 5441 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:127 5442 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:130 5443 + msgid "Learn more about what is public on Bluesky." 5444 + msgstr "" 5445 + 5446 + #: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 5447 + msgid "Learn more in your <0>account settings.</0>" 5448 + msgstr "" 5449 + 5450 + #: src/components/dialogs/ServerInput.tsx:188 5451 + #: src/components/moderation/ContentHider.tsx:247 5452 + msgid "Learn more." 5453 + msgstr "" 5454 + 5455 + #: src/components/dms/LeaveConvoPrompt.tsx:48 5456 + msgid "Leave" 5457 + msgstr "" 5458 + 5459 + #: src/components/dms/MessagesListBlockedFooter.tsx:74 5460 + #: src/components/dms/MessagesListBlockedFooter.tsx:81 5461 + msgid "Leave chat" 5462 + msgstr "" 5463 + 5464 + #: src/components/dms/ConvoMenu.tsx:220 5465 + #: src/components/dms/ConvoMenu.tsx:223 5466 + #: src/components/dms/ConvoMenu.tsx:283 5467 + #: src/components/dms/ConvoMenu.tsx:286 5468 + #: src/components/dms/LeaveConvoPrompt.tsx:42 5469 + msgid "Leave conversation" 5470 + msgstr "" 5471 + 5472 + #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:84 5473 + msgid "Leave them all unselected to see any language." 5474 + msgstr "" 5475 + 5476 + #: src/components/dialogs/LinkWarning.tsx:67 5477 + #: src/components/dialogs/LinkWarning.tsx:75 5478 + msgid "Leaving Witchsky" 5479 + msgstr "" 5480 + 5481 + #: src/screens/SignupQueued.tsx:155 5482 + msgid "left to go." 5483 + msgstr "" 5484 + 5485 + #: src/components/StarterPack/ProfileStarterPacks.tsx:351 5486 + msgid "Let me choose" 5487 + msgstr "" 5488 + 5489 + #: src/screens/Login/index.tsx:216 5490 + #: src/screens/Login/index.tsx:231 5491 + msgid "Let's get your password reset!" 5492 + msgstr "" 5493 + 5494 + #: src/screens/Onboarding/StepFinished/index.tsx:336 5495 + msgid "Let's go!" 5496 + msgstr "" 5497 + 5498 + #: src/components/dialogs/Embed.tsx:163 5499 + #: src/components/dialogs/Embed.tsx:165 5500 + #: src/screens/Settings/AppearanceSettings.tsx:141 5501 + msgid "Light" 5502 + msgstr "" 5503 + 5504 + #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 5505 + msgctxt "Name of app icon variant" 5506 + msgid "Light" 5507 + msgstr "" 5508 + 5509 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:519 5510 + msgid "Like" 5511 + msgstr "" 5512 + 5513 + #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form 5514 + #: src/components/PostControls/index.tsx:300 5515 + msgid "Like ({0, plural, one {# like} other {# likes}})" 5516 + msgstr "" 5517 + 5518 + #: src/components/ProgressGuide/List.tsx:96 5519 + msgid "Like 10 posts" 5520 + msgstr "Like 10 skeets" 5521 + 5522 + #: src/state/shell/progress-guide.tsx:216 5523 + #: src/state/shell/progress-guide.tsx:221 5524 + msgid "Like 10 posts to train the Discover feed" 5525 + msgstr "Like 10 skeets to train the Discover feed" 5526 + 5527 + #: src/Navigation.tsx:491 5528 + msgid "Like notifications" 5529 + msgstr "" 5530 + 5531 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:506 5532 + msgid "Like this feed" 5533 + msgstr "" 5534 + 5535 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:149 5536 + msgid "Like this labeler" 5537 + msgstr "" 5538 + 5539 + #: src/Navigation.tsx:319 5540 + #: src/Navigation.tsx:324 5541 + msgid "Liked by" 5542 + msgstr "" 5543 + 5544 + #: src/screens/Post/PostLikedBy.tsx:51 5545 + #: src/screens/Profile/ProfileLabelerLikedBy.tsx:32 5546 + #: src/view/screens/ProfileFeedLikedBy.tsx:32 5547 + msgid "Liked By" 5548 + msgstr "" 5549 + 5550 + #: src/components/FeedCard.tsx:250 5551 + #: src/view/com/feeds/FeedSourceCard.tsx:172 5552 + msgid "Liked by {0, plural, one {# user} other {# users}}" 5553 + msgstr "" 5554 + 5555 + #: src/components/LabelingServiceCard/index.tsx:96 5556 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:494 5557 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 5558 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 5559 + msgid "Liked by {likeCount, plural, one {# user} other {# users}}" 5560 + msgstr "" 5561 + 5562 + #: src/lib/hooks/useNotificationHandler.ts:126 5563 + #: src/screens/Settings/NotificationSettings/index.tsx:126 5564 + #: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 5565 + #: src/view/screens/Profile.tsx:238 5566 + msgid "Likes" 5567 + msgstr "" 5568 + 5569 + #: src/lib/hooks/useNotificationHandler.ts:168 5570 + #: src/screens/Settings/NotificationSettings/index.tsx:207 5571 + #: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 5572 + msgid "Likes of your reposts" 5573 + msgstr "Likes of your reskeets" 5574 + 5575 + #: src/Navigation.tsx:515 5576 + msgid "Likes of your reposts notifications" 5577 + msgstr "Likes of your reskeets notifications" 5578 + 5579 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:498 5580 + msgid "Likes on this post" 5581 + msgstr "Likes on this skeet" 5582 + 5583 + #: src/screens/PostThread/components/HeaderDropdown.tsx:51 5584 + #: src/screens/PostThread/components/HeaderDropdown.tsx:56 5585 + msgid "Linear" 5586 + msgstr "" 5587 + 5588 + #: src/Navigation.tsx:274 5589 + msgid "List" 5590 + msgstr "" 5591 + 5592 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:384 5593 + msgid "List avatar" 5594 + msgstr "" 5595 + 5596 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:53 5597 + msgctxt "toast" 5598 + msgid "List blocked" 5599 + msgstr "" 5600 + 5601 + #: src/components/ListCard.tsx:152 5602 + #: src/view/com/feeds/FeedSourceCard.tsx:152 5603 + msgid "List by {0}" 5604 + msgstr "" 5605 + 5606 + #: src/view/com/profile/ProfileSubpageHeader.tsx:160 5607 + msgid "List by <0/>" 5608 + msgstr "" 5609 + 5610 + #: src/view/com/profile/ProfileSubpageHeader.tsx:158 5611 + msgid "List by you" 5612 + msgstr "" 5613 + 5614 + #: src/view/com/feeds/MissingFeed.tsx:154 5615 + msgid "List creator" 5616 + msgstr "" 5617 + 5618 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93 5619 + msgctxt "toast" 5620 + msgid "List deleted" 5621 + msgstr "" 5622 + 5623 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:433 5624 + msgid "List description" 5625 + msgstr "" 5626 + 5627 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:453 5628 + msgid "List description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" 5629 + msgstr "" 5630 + 5631 + #: src/screens/List/ListHiddenScreen.tsx:129 5632 + msgid "List has been hidden" 5633 + msgstr "" 5634 + 5635 + #: src/screens/ProfileList/index.tsx:172 5636 + msgid "List Hidden" 5637 + msgstr "" 5638 + 5639 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:425 5640 + msgid "List must have a name." 5641 + msgstr "" 5642 + 5643 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:34 5644 + msgctxt "toast" 5645 + msgid "List muted" 5646 + msgstr "" 5647 + 5648 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:397 5649 + msgid "List name" 5650 + msgstr "" 5651 + 5652 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:417 5653 + msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" 5654 + msgstr "" 5655 + 5656 + #: src/screens/ProfileList/components/Header.tsx:119 5657 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:134 5658 + msgctxt "toast" 5659 + msgid "List unblocked" 5660 + msgstr "" 5661 + 5662 + #: src/screens/ProfileList/components/Header.tsx:101 5663 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:116 5664 + msgctxt "toast" 5665 + msgid "List unmuted" 5666 + msgstr "" 5667 + 5668 + #: src/Navigation.tsx:195 5669 + #: src/view/screens/Lists.tsx:67 5670 + #: src/view/screens/Profile.tsx:233 5671 + #: src/view/screens/Profile.tsx:241 5672 + #: src/view/shell/desktop/LeftNav.tsx:756 5673 + #: src/view/shell/Drawer.tsx:563 5674 + msgid "Lists" 5675 + msgstr "" 5676 + 5677 + #: src/view/com/lists/MyLists.tsx:74 5678 + msgid "Lists allow you to see content from your favorite people." 5679 + msgstr "" 5680 + 5681 + #: src/components/dms/BlockedByListDialog.tsx:39 5682 + msgid "Lists blocking this user:" 5683 + msgstr "" 5684 + 5685 + #. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters 5686 + #: src/components/live/LiveIndicator.tsx:46 5687 + msgid "LIVE" 5688 + msgstr "" 5689 + 5690 + #: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:52 5691 + #: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:52 5692 + msgid "Live event happening now: {0}" 5693 + msgstr "" 5694 + 5695 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:105 5696 + msgid "Live event options" 5697 + msgstr "" 5698 + 5699 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:109 5700 + msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." 5701 + msgstr "" 5702 + 5703 + #: src/components/live/LiveStatusDialog.tsx:264 5704 + msgid "Live feature is in beta" 5705 + msgstr "" 5706 + 5707 + #: src/components/live/EditLiveDialog.tsx:147 5708 + #: src/components/live/EditLiveDialog.tsx:151 5709 + #: src/components/live/GoLiveDialog.tsx:129 5710 + #: src/components/live/GoLiveDialog.tsx:133 5711 + msgid "Live link" 5712 + msgstr "" 5713 + 5714 + #: src/screens/Search/Explore.tsx:84 5715 + msgid "Load more" 5716 + msgstr "" 5717 + 5718 + #: src/screens/Search/Explore.tsx:506 5719 + #: src/screens/Search/Explore.tsx:583 5720 + msgid "Load more suggested feeds" 5721 + msgstr "" 5722 + 5723 + #: src/view/screens/Notifications.tsx:281 5724 + msgid "Load new notifications" 5725 + msgstr "" 5726 + 5727 + #: src/screens/Profile/ProfileFeed/index.tsx:231 5728 + #: src/screens/Profile/Sections/Feed.tsx:116 5729 + #: src/screens/ProfileList/FeedSection.tsx:112 5730 + #: src/view/com/feeds/FeedPage.tsx:169 5731 + msgid "Load new posts" 5732 + msgstr "Load new skeets" 5733 + 5734 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:569 5735 + msgid "Loading lists..." 5736 + msgstr "" 5737 + 5738 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:273 5739 + msgid "Loading post interaction settings..." 5740 + msgstr "Loading skeet interaction settings..." 5741 + 5742 + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 5743 + msgid "Loading..." 5744 + msgstr "" 5745 + 5746 + #: src/Navigation.tsx:344 5747 + msgid "Log" 5748 + msgstr "" 5749 + 5750 + #: src/components/AccountList.tsx:194 5751 + msgid "Logged out" 5752 + msgstr "" 5753 + 5754 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:106 5755 + msgid "Logged-out visibility" 5756 + msgstr "" 5757 + 5758 + #: src/screens/Settings/AppearanceSettings.tsx:266 5759 + msgid "Logo" 5760 + msgstr "" 5761 + 5762 + #: src/view/shell/desktop/RightNav.tsx:140 5763 + msgid "Logo by ovvie" 5764 + msgstr "" 5765 + 5766 + #: src/components/RichTextTag.tsx:54 5767 + msgid "Long press to open tag menu for {0}" 5768 + msgstr "" 5769 + 5770 + #: src/screens/Login/SetNewPasswordForm.tsx:122 5771 + msgid "Looks like XXXXX-XXXXX" 5772 + msgstr "" 5773 + 5774 + #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:43 5775 + msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." 5776 + msgstr "" 5777 + 5778 + #: src/screens/Home/NoFeedsPinned.tsx:83 5779 + msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" 5780 + msgstr "" 5781 + 5782 + #: src/screens/Feeds/NoFollowingFeed.tsx:35 5783 + msgid "Looks like you're missing a following feed. <0>Click here to add one.</0>" 5784 + msgstr "" 5785 + 5786 + #: src/components/dialogs/EmailDialog/index.tsx:41 5787 + msgid "Make adjustments to email settings for your account" 5788 + msgstr "" 5789 + 5790 + #: src/components/StarterPack/ProfileStarterPacks.tsx:310 5791 + msgid "Make one for me" 5792 + msgstr "" 5793 + 5794 + #: src/components/dialogs/LinkWarning.tsx:85 5795 + msgid "Make sure this is where you intend to go!" 5796 + msgstr "" 5797 + 5798 + #: src/screens/Settings/ContentAndMediaSettings.tsx:61 5799 + #: src/screens/Settings/ContentAndMediaSettings.tsx:64 5800 + msgid "Manage saved feeds" 5801 + msgstr "" 5802 + 5803 + #: src/screens/Moderation/index.tsx:321 5804 + msgid "Manage verification settings" 5805 + msgstr "" 5806 + 5807 + #: src/components/dialogs/MutedWords.tsx:109 5808 + msgid "Manage your muted words and tags" 5809 + msgstr "" 5810 + 5811 + #: src/screens/Messages/Inbox.tsx:328 5812 + #: src/screens/Messages/Inbox.tsx:347 5813 + #: src/screens/Messages/Inbox.tsx:354 5814 + msgid "Mark all as read" 5815 + msgstr "" 5816 + 5817 + #: src/components/dms/ConvoMenu.tsx:232 5818 + #: src/components/dms/ConvoMenu.tsx:235 5819 + msgid "Mark as read" 5820 + msgstr "" 5821 + 5822 + #: src/screens/Messages/Inbox.tsx:315 5823 + #: src/screens/Messages/Inbox.tsx:338 5824 + msgid "Marked all as read" 5825 + msgstr "" 5826 + 5827 + #: src/screens/Settings/DeerSettings.tsx:469 5828 + msgid "May slow down the client or fail to find all labels. Revoke and grant trust in the meatball menu on a profile. {0} trust the following verifiers:" 5829 + msgstr "" 5830 + 5831 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:95 5832 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:102 5833 + msgid "Maybe later" 5834 + msgstr "" 5835 + 5836 + #: src/view/screens/Profile.tsx:236 5837 + msgid "Media" 5838 + msgstr "" 5839 + 5840 + #: src/view/com/composer/labels/LabelsBtn.tsx:205 5841 + msgid "Media that may be disturbing or inappropriate for some audiences." 5842 + msgstr "" 5843 + 5844 + #: src/Navigation.tsx:475 5845 + msgid "Mention notifications" 5846 + msgstr "" 5847 + 5848 + #: src/components/WhoCanReply.tsx:318 5849 + msgid "mentioned users" 5850 + msgstr "" 5851 + 5852 + #: src/lib/hooks/useNotificationHandler.ts:147 5853 + #: src/screens/Settings/NotificationSettings/index.tsx:159 5854 + #: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 5855 + #: src/view/screens/Notifications.tsx:104 5856 + msgid "Mentions" 5857 + msgstr "" 5858 + 5859 + #: src/components/Menu/index.tsx:112 5860 + msgid "Menu" 5861 + msgstr "" 5862 + 5863 + #: src/components/dms/MessageProfileButton.tsx:100 5864 + msgid "Message {0}" 5865 + msgstr "" 5866 + 5867 + #: src/components/dms/MessageContextMenu.tsx:79 5868 + msgctxt "toast" 5869 + msgid "Message deleted" 5870 + msgstr "" 5871 + 5872 + #: src/screens/Messages/components/ChatListItem.tsx:203 5873 + msgid "Message deleted" 5874 + msgstr "" 5875 + 5876 + #: src/components/dms/MessageContextMenu.tsx:127 5877 + msgid "Message from @{0}: {1}" 5878 + msgstr "" 5879 + 5880 + #: src/view/com/posts/PostFeedErrorMessage.tsx:208 5881 + msgid "Message from server: {0}" 5882 + msgstr "" 5883 + 5884 + #: src/screens/Messages/components/MessageInput.tsx:155 5885 + msgid "Message input field" 5886 + msgstr "" 5887 + 5888 + #: src/screens/Messages/components/MessageInput.tsx:82 5889 + #: src/screens/Messages/components/MessageInput.web.tsx:63 5890 + msgid "Message is too long" 5891 + msgstr "" 5892 + 5893 + #: src/components/dms/MessageContextMenu.tsx:125 5894 + msgid "Message options" 5895 + msgstr "" 5896 + 5897 + #: src/Navigation.tsx:827 5898 + msgid "Messages" 5899 + msgstr "" 5900 + 5901 + #: src/screens/Settings/DeerSettings.tsx:681 5902 + msgid "Metrics" 5903 + msgstr "" 5904 + 5905 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:177 5906 + msgid "Minor harassment or bullying" 5907 + msgstr "" 5908 + 5909 + #: src/Navigation.tsx:539 5910 + msgid "Miscellaneous notifications" 5911 + msgstr "" 5912 + 5913 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 5914 + msgid "Misleading" 5915 + msgstr "" 5916 + 5917 + #: src/Navigation.tsx:200 5918 + #: src/screens/Moderation/index.tsx:99 5919 + #: src/screens/Settings/Settings.tsx:196 5920 + #: src/screens/Settings/Settings.tsx:199 5921 + msgid "Moderation" 5922 + msgstr "" 5923 + 5924 + #: src/components/moderation/ModerationDetailsDialog.tsx:140 5925 + msgid "Moderation details" 5926 + msgstr "" 5927 + 5928 + #: src/components/ListCard.tsx:151 5929 + #: src/view/com/modals/UserAddRemoveLists.tsx:224 5930 + msgid "Moderation list by {0}" 5931 + msgstr "" 5932 + 5933 + #: src/view/com/profile/ProfileSubpageHeader.tsx:173 5934 + msgid "Moderation list by <0/>" 5935 + msgstr "" 5936 + 5937 + #: src/view/com/modals/UserAddRemoveLists.tsx:222 5938 + #: src/view/com/profile/ProfileSubpageHeader.tsx:171 5939 + msgid "Moderation list by you" 5940 + msgstr "" 5941 + 5942 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:242 5943 + msgctxt "toast" 5944 + msgid "Moderation list created" 5945 + msgstr "" 5946 + 5947 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:228 5948 + msgctxt "toast" 5949 + msgid "Moderation list updated" 5950 + msgstr "" 5951 + 5952 + #: src/screens/Moderation/index.tsx:281 5953 + msgid "Moderation lists" 5954 + msgstr "" 5955 + 5956 + #: src/Navigation.tsx:205 5957 + #: src/view/screens/ModerationModlists.tsx:67 5958 + msgid "Moderation Lists" 5959 + msgstr "" 5960 + 5961 + #: src/components/moderation/LabelPreference.tsx:256 5962 + msgid "moderation settings" 5963 + msgstr "" 5964 + 5965 + #: src/Navigation.tsx:334 5966 + msgid "Moderation states" 5967 + msgstr "" 5968 + 5969 + #: src/screens/Moderation/index.tsx:235 5970 + msgid "Moderation tools" 5971 + msgstr "" 5972 + 5973 + #: src/components/moderation/ModerationDetailsDialog.tsx:54 5974 + #: src/lib/moderation/useModerationCauseDescription.ts:48 5975 + msgid "Moderator has chosen to set a general warning on the content." 5976 + msgstr "" 5977 + 5978 + #: src/view/shell/desktop/Feeds.tsx:109 5979 + #: src/view/shell/desktop/Feeds.tsx:156 5980 + msgid "More feeds" 5981 + msgstr "" 5982 + 5983 + #: src/view/com/composer/select-language/PostLanguageSelect.tsx:87 5984 + #: src/view/com/composer/select-language/PostLanguageSelect.tsx:90 5985 + msgid "More languages..." 5986 + msgstr "" 5987 + 5988 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:152 5989 + #: src/view/com/profile/ProfileMenu.tsx:258 5990 + #: src/view/com/profile/ProfileMenu.tsx:265 5991 + msgid "More options" 5992 + msgstr "" 5993 + 5994 + #: src/screens/SavedFeeds.tsx:329 5995 + msgid "Move feed down" 5996 + msgstr "" 5997 + 5998 + #: src/screens/SavedFeeds.tsx:320 5999 + msgid "Move feed up" 6000 + msgstr "" 6001 + 6002 + #: src/lib/interests.ts:64 6003 + msgid "Movies" 6004 + msgstr "" 6005 + 6006 + #: src/lib/interests.ts:65 6007 + msgid "Music" 6008 + msgstr "" 6009 + 6010 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:154 6011 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97 6012 + msgctxt "video" 6013 + msgid "Mute" 6014 + msgstr "" 6015 + 6016 + #: src/components/RichTextTag.tsx:150 6017 + #: src/components/RichTextTag.tsx:163 6018 + msgid "Mute {tag}" 6019 + msgstr "" 6020 + 6021 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:963 6022 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:969 6023 + #: src/view/com/profile/ProfileMenu.tsx:514 6024 + #: src/view/com/profile/ProfileMenu.tsx:521 6025 + msgid "Mute account" 6026 + msgstr "" 6027 + 6028 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:92 6029 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:95 6030 + msgid "Mute accounts" 6031 + msgstr "" 6032 + 6033 + #: src/components/dms/ConvoMenu.tsx:249 6034 + #: src/components/dms/ConvoMenu.tsx:255 6035 + msgid "Mute conversation" 6036 + msgstr "" 6037 + 6038 + #: src/components/dialogs/MutedWords.tsx:259 6039 + msgid "Mute in:" 6040 + msgstr "" 6041 + 6042 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:118 6043 + msgid "Mute list" 6044 + msgstr "" 6045 + 6046 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:113 6047 + msgid "Mute these accounts?" 6048 + msgstr "" 6049 + 6050 + #: src/components/dialogs/MutedWords.tsx:191 6051 + msgid "Mute this word for 24 hours" 6052 + msgstr "" 6053 + 6054 + #: src/components/dialogs/MutedWords.tsx:230 6055 + msgid "Mute this word for 30 days" 6056 + msgstr "" 6057 + 6058 + #: src/components/dialogs/MutedWords.tsx:215 6059 + msgid "Mute this word for 7 days" 6060 + msgstr "" 6061 + 6062 + #: src/components/dialogs/MutedWords.tsx:264 6063 + msgid "Mute this word in post text and tags" 6064 + msgstr "Mute this word in skeet text and tags" 6065 + 6066 + #: src/components/dialogs/MutedWords.tsx:280 6067 + msgid "Mute this word in tags only" 6068 + msgstr "" 6069 + 6070 + #: src/components/dialogs/MutedWords.tsx:176 6071 + msgid "Mute this word until you unmute it" 6072 + msgstr "" 6073 + 6074 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:847 6075 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 6076 + msgid "Mute thread" 6077 + msgstr "" 6078 + 6079 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:861 6080 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:863 6081 + msgid "Mute words & tags" 6082 + msgstr "" 6083 + 6084 + #: src/screens/Moderation/index.tsx:296 6085 + msgid "Muted accounts" 6086 + msgstr "" 6087 + 6088 + #: src/Navigation.tsx:210 6089 + #: src/view/screens/ModerationMutedAccounts.tsx:116 6090 + msgid "Muted Accounts" 6091 + msgstr "" 6092 + 6093 + #: src/view/screens/ModerationMutedAccounts.tsx:202 6094 + msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." 6095 + msgstr "Muted accounts have their skeets removed from your feed and from your notifications. Mutes are completely private." 6096 + 6097 + #: src/lib/moderation/useModerationCauseDescription.ts:93 6098 + msgid "Muted by \"{0}\"" 6099 + msgstr "" 6100 + 6101 + #: src/screens/Moderation/index.tsx:266 6102 + msgid "Muted words & tags" 6103 + msgstr "" 6104 + 6105 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:115 6106 + msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." 6107 + msgstr "Muting is private. Muted accounts can interact with you, but you will not see their skeets or receive notifications from them." 6108 + 6109 + #. User is following this account, click to unfollow 6110 + #: src/components/ProfileCard.tsx:547 6111 + #: src/components/ProfileHoverCard/index.web.tsx:508 6112 + #: src/components/ProfileHoverCard/index.web.tsx:523 6113 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:146 6114 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:380 6115 + #: src/view/com/notifications/NotificationFeedItem.tsx:841 6116 + msgid "Mutuals" 6117 + msgstr "" 6118 + 6119 + #: src/components/dialogs/BirthDateSettings.tsx:47 6120 + #: src/components/dialogs/BirthDateSettings.tsx:51 6121 + msgid "My Birthdate" 6122 + msgstr "" 6123 + 6124 + #: src/view/screens/Feeds.tsx:709 6125 + msgid "My Feeds" 6126 + msgstr "" 6127 + 6128 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:403 6129 + msgid "Name" 6130 + msgstr "" 6131 + 6132 + #: src/lib/interests.ts:66 6133 + msgid "Nature" 6134 + msgstr "" 6135 + 6136 + #: src/components/StarterPack/StarterPackCard.tsx:130 6137 + #: src/components/StarterPack/StarterPackCard.tsx:160 6138 + msgid "Navigate to {0}" 6139 + msgstr "" 6140 + 6141 + #: src/components/StarterPack/StarterPackCard.tsx:131 6142 + msgid "Navigate to starter pack" 6143 + msgstr "" 6144 + 6145 + #: src/screens/Login/ForgotPasswordForm.tsx:166 6146 + #: src/screens/Login/LoginForm.tsx:372 6147 + msgid "Navigates to the next screen" 6148 + msgstr "" 6149 + 6150 + #: src/view/shell/Drawer.tsx:85 6151 + msgid "Navigates to your profile" 6152 + msgstr "" 6153 + 6154 + #: src/components/moderation/ReportDialog/index.tsx:336 6155 + #: src/components/moderation/ReportDialog/index.tsx:353 6156 + msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" 6157 + msgstr "" 6158 + 6159 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:585 6160 + msgid "Nevermind, create a handle for me" 6161 + msgstr "" 6162 + 6163 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 6164 + #: src/view/com/profile/ProfileMenu.tsx:469 6165 + msgid "New" 6166 + msgstr "" 6167 + 6168 + #: src/view/screens/Lists.tsx:78 6169 + #: src/view/screens/ModerationModlists.tsx:79 6170 + msgctxt "action" 6171 + msgid "New" 6172 + msgstr "" 6173 + 6174 + #: src/view/com/notifications/NotificationFeedItem.tsx:568 6175 + msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" 6176 + msgstr "" 6177 + 6178 + #: src/view/com/notifications/NotificationFeedItem.tsx:551 6179 + msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" 6180 + msgstr "" 6181 + 6182 + #: src/components/dms/dialogs/NewChatDialog.tsx:67 6183 + #: src/screens/Messages/ChatList.tsx:406 6184 + #: src/screens/Messages/ChatList.tsx:413 6185 + msgid "New chat" 6186 + msgstr "" 6187 + 6188 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:222 6189 + msgid "New email address" 6190 + msgstr "" 6191 + 6192 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:77 6193 + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:73 6194 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:66 6195 + msgid "New Feature" 6196 + msgstr "" 6197 + 6198 + #: src/Navigation.tsx:507 6199 + msgid "New follower notifications" 6200 + msgstr "" 6201 + 6202 + #: src/lib/hooks/useNotificationHandler.ts:161 6203 + #: src/screens/Settings/NotificationSettings/index.tsx:137 6204 + #: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 6205 + msgid "New followers" 6206 + msgstr "" 6207 + 6208 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:228 6209 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:236 6210 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:387 6211 + msgid "New handle" 6212 + msgstr "" 6213 + 6214 + #: src/view/screens/Lists.tsx:71 6215 + #: src/view/screens/ModerationModlists.tsx:71 6216 + msgid "New list" 6217 + msgstr "" 6218 + 6219 + #: src/components/dms/NewMessagesPill.tsx:95 6220 + msgid "New messages" 6221 + msgstr "" 6222 + 6223 + #: src/screens/Login/SetNewPasswordForm.tsx:141 6224 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:203 6225 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:207 6226 + msgid "New password" 6227 + msgstr "" 6228 + 6229 + #: src/screens/Profile/ProfileFeed/index.tsx:248 6230 + #: src/screens/ProfileList/index.tsx:246 6231 + #: src/screens/ProfileList/index.tsx:284 6232 + #: src/view/screens/Feeds.tsx:557 6233 + #: src/view/screens/Notifications.tsx:170 6234 + #: src/view/screens/Profile.tsx:591 6235 + msgid "New post" 6236 + msgstr "New skeet" 6237 + 6238 + #: src/view/com/feeds/FeedPage.tsx:180 6239 + msgctxt "action" 6240 + msgid "New post" 6241 + msgstr "New skeet" 6242 + 6243 + #: src/view/shell/desktop/LeftNav.tsx:591 6244 + msgctxt "action" 6245 + msgid "New Post" 6246 + msgstr "New Skeet" 6247 + 6248 + #: src/view/com/notifications/NotificationFeedItem.tsx:557 6249 + msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0>" 6250 + msgstr "New skeets from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}</0>" 6251 + 6252 + #: src/view/com/notifications/NotificationFeedItem.tsx:542 6253 + msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 6254 + msgstr "New skeets from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 6255 + 6256 + #: src/components/dialogs/StarterPackDialog.tsx:196 6257 + msgid "New starter pack" 6258 + msgstr "" 6259 + 6260 + #: src/components/NewskieDialog.tsx:120 6261 + msgid "New user info dialog" 6262 + msgstr "" 6263 + 6264 + #: src/screens/PostThread/components/HeaderDropdown.tsx:97 6265 + #: src/screens/PostThread/components/HeaderDropdown.tsx:102 6266 + #: src/screens/Settings/ThreadPreferences.tsx:72 6267 + #: src/screens/Settings/ThreadPreferences.tsx:75 6268 + msgid "Newest replies first" 6269 + msgstr "" 6270 + 6271 + #: src/lib/interests.ts:67 6272 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:242 6273 + msgid "News" 6274 + msgstr "" 6275 + 6276 + #: src/components/contacts/screens/ViewMatches.tsx:392 6277 + #: src/components/contacts/screens/ViewMatches.tsx:407 6278 + #: src/screens/Login/ForgotPasswordForm.tsx:137 6279 + #: src/screens/Login/ForgotPasswordForm.tsx:143 6280 + #: src/screens/Login/LoginForm.tsx:371 6281 + #: src/screens/Login/LoginForm.tsx:378 6282 + #: src/screens/Login/SetNewPasswordForm.tsx:182 6283 + #: src/screens/Login/SetNewPasswordForm.tsx:188 6284 + #: src/screens/Onboarding/StepFinished/index.tsx:329 6285 + #: src/screens/Onboarding/StepFinished/index.tsx:338 6286 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 6287 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 6288 + #: src/screens/Signup/BackNextButtons.tsx:67 6289 + #: src/screens/StarterPack/Wizard/index.tsx:211 6290 + #: src/screens/StarterPack/Wizard/index.tsx:215 6291 + #: src/screens/StarterPack/Wizard/index.tsx:393 6292 + #: src/screens/StarterPack/Wizard/index.tsx:400 6293 + msgid "Next" 6294 + msgstr "" 6295 + 6296 + #: src/view/com/lightbox/Lightbox.web.tsx:170 6297 + msgid "Next image" 6298 + msgstr "" 6299 + 6300 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 6301 + msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." 6302 + msgstr "" 6303 + 6304 + #: src/screens/Settings/AppPasswords.tsx:107 6305 + msgid "No app passwords yet" 6306 + msgstr "" 6307 + 6308 + #: src/components/contacts/screens/ViewMatches.tsx:677 6309 + msgid "No contacts found" 6310 + msgstr "" 6311 + 6312 + #: src/components/contacts/screens/ViewMatches.tsx:655 6313 + msgid "No contacts with the name โ€œ{query}โ€ found" 6314 + msgstr "" 6315 + 6316 + #: src/view/com/feeds/ProfileFeedgens.tsx:161 6317 + msgid "No custom feeds yet" 6318 + msgstr "" 6319 + 6320 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:410 6321 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:412 6322 + msgid "No DNS Panel" 6323 + msgstr "" 6324 + 6325 + #: src/components/live/EditLiveDialog.tsx:139 6326 + msgid "No expiry set" 6327 + msgstr "" 6328 + 6329 + #: src/components/dialogs/GifSelect.tsx:222 6330 + msgid "No featured GIFs found. There may be an issue with Tenor." 6331 + msgstr "" 6332 + 6333 + #: src/screens/StarterPack/Wizard/StepFeeds.tsx:122 6334 + msgid "No feeds found. Try searching for something else." 6335 + msgstr "" 6336 + 6337 + #: src/view/com/profile/ProfileFollowers.tsx:171 6338 + msgid "No followers yet" 6339 + msgstr "" 6340 + 6341 + #: src/components/live/LinkPreview.tsx:63 6342 + msgid "No image" 6343 + msgstr "" 6344 + 6345 + #: src/components/LikedByList.tsx:84 6346 + #: src/view/com/post-thread/PostLikedBy.tsx:84 6347 + #: src/view/screens/Profile.tsx:523 6348 + msgid "No likes yet" 6349 + msgstr "" 6350 + 6351 + #: src/view/com/lists/ProfileLists.tsx:160 6352 + msgid "No lists" 6353 + msgstr "" 6354 + 6355 + #: src/components/ProfileCard.tsx:531 6356 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:274 6357 + #: src/view/com/notifications/NotificationFeedItem.tsx:797 6358 + msgid "No longer following {0}" 6359 + msgstr "" 6360 + 6361 + #: src/view/screens/Profile.tsx:471 6362 + msgid "No media yet" 6363 + msgstr "" 6364 + 6365 + #: src/screens/Messages/components/ChatListItem.tsx:145 6366 + msgid "No messages yet" 6367 + msgstr "" 6368 + 6369 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 6370 + msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." 6371 + msgstr "" 6372 + 6373 + #: src/components/contacts/screens/ViewMatches.tsx:559 6374 + msgid "No name" 6375 + msgstr "" 6376 + 6377 + #: src/view/com/notifications/NotificationFeed.tsx:127 6378 + msgid "No notifications yet!" 6379 + msgstr "" 6380 + 6381 + #: src/screens/Messages/Settings.tsx:106 6382 + #: src/screens/Messages/Settings.tsx:109 6383 + #: src/screens/Settings/ActivityPrivacySettings.tsx:129 6384 + #: src/screens/Settings/ActivityPrivacySettings.tsx:134 6385 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:159 6386 + msgid "No one" 6387 + msgstr "" 6388 + 6389 + #: src/components/WhoCanReply.tsx:301 6390 + msgid "No one but the author can quote this post." 6391 + msgstr "No one but the author can quote this skeet." 6392 + 6393 + #: src/screens/Notifications/ActivityList.tsx:42 6394 + msgid "No posts here" 6395 + msgstr "No skeets here" 6396 + 6397 + #: src/screens/Profile/Sections/Feed.tsx:80 6398 + #: src/view/screens/Profile.tsx:431 6399 + msgid "No posts yet" 6400 + msgstr "No skeets yet" 6401 + 6402 + #: src/view/com/post-thread/PostQuotes.tsx:107 6403 + msgid "No quotes yet" 6404 + msgstr "" 6405 + 6406 + #: src/view/screens/Profile.tsx:456 6407 + msgid "No replies yet" 6408 + msgstr "" 6409 + 6410 + #: src/view/com/post-thread/PostRepostedBy.tsx:90 6411 + msgid "No reposts yet" 6412 + msgstr "No reskeets yet" 6413 + 6414 + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:61 6415 + #: src/view/com/composer/text-input/web/Autocomplete.tsx:192 6416 + msgid "No result" 6417 + msgstr "" 6418 + 6419 + #: src/components/dialogs/SearchablePeopleList.tsx:226 6420 + #: src/components/ProgressGuide/FollowDialog.tsx:230 6421 + msgid "No results" 6422 + msgstr "" 6423 + 6424 + #: src/screens/Search/Explore.tsx:800 6425 + msgid "No results for \"{0}\"." 6426 + msgstr "" 6427 + 6428 + #: src/components/Lists.tsx:203 6429 + #: src/components/Lists.tsx:218 6430 + msgid "No results found" 6431 + msgstr "" 6432 + 6433 + #: src/view/screens/Feeds.tsx:477 6434 + msgid "No results found for \"{query}\"" 6435 + msgstr "" 6436 + 6437 + #: src/screens/Search/SearchResults.tsx:170 6438 + msgid "No results found for \"<0>{query}</0>\"." 6439 + msgstr "" 6440 + 6441 + #: src/screens/Search/Explore.tsx:804 6442 + msgid "No results." 6443 + msgstr "" 6444 + 6445 + #: src/components/dialogs/GifSelect.tsx:220 6446 + msgid "No search results found for \"{search}\"." 6447 + msgstr "" 6448 + 6449 + #: src/view/screens/Profile.tsx:555 6450 + msgid "No Starter Packs yet" 6451 + msgstr "" 6452 + 6453 + #: src/components/dialogs/EmbedConsent.tsx:104 6454 + #: src/components/dialogs/EmbedConsent.tsx:111 6455 + msgid "No thanks" 6456 + msgstr "" 6457 + 6458 + #: src/view/screens/Profile.tsx:497 6459 + msgid "No video posts yet" 6460 + msgstr "No video skeets yet" 6461 + 6462 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:465 6463 + msgid "Nobody" 6464 + msgstr "" 6465 + 6466 + #: src/components/LikedByList.tsx:86 6467 + #: src/view/com/post-thread/PostLikedBy.tsx:86 6468 + msgid "Nobody has liked this yet. Maybe you should be the first!" 6469 + msgstr "" 6470 + 6471 + #: src/view/com/post-thread/PostQuotes.tsx:109 6472 + msgid "Nobody has quoted this yet. Maybe you should be the first!" 6473 + msgstr "" 6474 + 6475 + #: src/view/com/post-thread/PostRepostedBy.tsx:92 6476 + msgid "Nobody has reposted this yet. Maybe you should be the first!" 6477 + msgstr "Nobody has reskeeted this yet. Maybe you should be the first!" 6478 + 6479 + #: src/screens/StarterPack/Wizard/StepProfiles.tsx:107 6480 + msgid "Nobody was found. Try searching for someone else." 6481 + msgstr "" 6482 + 6483 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:80 6484 + msgid "Non-consensual intimate imagery" 6485 + msgstr "" 6486 + 6487 + #: src/lib/moderation/useGlobalLabelStrings.ts:42 6488 + msgid "Non-sexual Nudity" 6489 + msgstr "" 6490 + 6491 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 6492 + msgid "None" 6493 + msgstr "" 6494 + 6495 + #: src/screens/FindContactsFlowScreen.tsx:70 6496 + #: src/screens/Settings/FindContactsSettings.tsx:101 6497 + msgid "Not available on this platform." 6498 + msgstr "" 6499 + 6500 + #: src/components/KnownFollowers.tsx:259 6501 + msgid "Not followed by anyone you're following" 6502 + msgstr "" 6503 + 6504 + #: src/Navigation.tsx:190 6505 + #: src/view/screens/Profile.tsx:132 6506 + msgid "Not Found" 6507 + msgstr "" 6508 + 6509 + #: src/view/com/profile/ProfileMenu.tsx:636 6510 + msgid "Note about sharing" 6511 + msgstr "" 6512 + 6513 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:116 6514 + msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." 6515 + msgstr "" 6516 + 6517 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:193 6518 + msgid "Note: This post is only visible to logged-in users." 6519 + msgstr "Note: This skeet is only visible to logged-in users." 6520 + 6521 + #: src/screens/Messages/ChatList.tsx:305 6522 + msgid "Nothing here" 6523 + msgstr "" 6524 + 6525 + #: src/screens/Bookmarks/components/EmptyState.tsx:35 6526 + #: src/screens/Bookmarks/index.tsx:281 6527 + msgid "Nothing saved yet" 6528 + msgstr "" 6529 + 6530 + #: src/Navigation.tsx:461 6531 + #: src/Navigation.tsx:608 6532 + #: src/view/screens/Notifications.tsx:139 6533 + msgid "Notification settings" 6534 + msgstr "" 6535 + 6536 + #: src/screens/Messages/Settings.tsx:128 6537 + msgid "Notification sounds" 6538 + msgstr "" 6539 + 6540 + #: src/screens/Messages/Settings.tsx:125 6541 + msgid "Notification Sounds" 6542 + msgstr "" 6543 + 6544 + #: src/Navigation.tsx:603 6545 + #: src/Navigation.tsx:822 6546 + #: src/screens/Notifications/ActivityList.tsx:30 6547 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:90 6548 + #: src/screens/Settings/NotificationSettings/index.tsx:92 6549 + #: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 6550 + #: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 6551 + #: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 6552 + #: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 6553 + #: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 6554 + #: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 6555 + #: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 6556 + #: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 6557 + #: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 6558 + #: src/screens/Settings/Settings.tsx:204 6559 + #: src/screens/Settings/Settings.tsx:207 6560 + #: src/view/screens/Notifications.tsx:133 6561 + #: src/view/shell/bottom-bar/BottomBar.tsx:256 6562 + #: src/view/shell/desktop/LeftNav.tsx:719 6563 + #: src/view/shell/Drawer.tsx:511 6564 + msgid "Notifications" 6565 + msgstr "" 6566 + 6567 + #: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 6568 + msgid "Notifications for everything else, such as when someone joins via one of your starter packs." 6569 + msgstr "" 6570 + 6571 + #: src/lib/hooks/useTimeAgo.ts:135 6572 + msgid "now" 6573 + msgstr "" 6574 + 6575 + #: src/components/dms/MessageItem.tsx:275 6576 + msgid "Now" 6577 + msgstr "" 6578 + 6579 + #: src/view/com/composer/labels/LabelsBtn.tsx:145 6580 + #: src/view/com/composer/labels/LabelsBtn.tsx:148 6581 + msgid "Nudity" 6582 + msgstr "" 6583 + 6584 + #: src/components/contacts/phone-number.ts:43 6585 + msgid "Number should be a mobile number" 6586 + msgstr "" 6587 + 6588 + #: src/lib/moderation/useLabelBehaviorDescription.ts:14 6589 + #: src/screens/Settings/NotificationSettings/index.tsx:291 6590 + msgid "Off" 6591 + msgstr "" 6592 + 6593 + #: src/components/dialogs/GifSelect.tsx:259 6594 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:326 6595 + #: src/view/com/util/ErrorBoundary.tsx:57 6596 + msgid "Oh no!" 6597 + msgstr "" 6598 + 6599 + #. Confirm button text. 6600 + #: src/components/contacts/screens/GetContacts.tsx:314 6601 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225 6602 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:51 6603 + #: src/screens/Settings/AppIconSettings/index.tsx:48 6604 + #: src/screens/Settings/AppIconSettings/index.tsx:234 6605 + msgid "OK" 6606 + msgstr "" 6607 + 6608 + #: src/screens/Login/PasswordUpdatedForm.tsx:37 6609 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:724 6610 + msgid "Okay" 6611 + msgstr "" 6612 + 6613 + #: src/screens/PostThread/components/HeaderDropdown.tsx:87 6614 + #: src/screens/PostThread/components/HeaderDropdown.tsx:92 6615 + #: src/screens/Settings/ThreadPreferences.tsx:64 6616 + #: src/screens/Settings/ThreadPreferences.tsx:67 6617 + msgid "Oldest replies first" 6618 + msgstr "" 6619 + 6620 + #: src/screens/Settings/DeerSettings.tsx:541 6621 + #: src/screens/Settings/DeerSettings.tsx:547 6622 + msgid "On non-bsky.social handles, show a link to that URL" 6623 + msgstr "" 6624 + 6625 + #: src/components/StarterPack/QrCode.tsx:87 6626 + msgid "on<0><1/><2><3/></2></0>" 6627 + msgstr "" 6628 + 6629 + #: src/screens/Settings/Settings.tsx:414 6630 + msgid "Onboarding reset" 6631 + msgstr "" 6632 + 6633 + #: src/view/com/composer/Composer.tsx:400 6634 + msgid "One or more GIFs is missing alt text." 6635 + msgstr "" 6636 + 6637 + #: src/view/com/composer/Composer.tsx:397 6638 + msgid "One or more images is missing alt text." 6639 + msgstr "" 6640 + 6641 + #: src/view/com/composer/SelectMediaButton.tsx:394 6642 + msgid "One or more of your selected files are not supported." 6643 + msgstr "" 6644 + 6645 + #: src/view/com/composer/SelectMediaButton.tsx:417 6646 + msgid "One or more of your selected files are too large. Maximum size is 100ย MB." 6647 + msgstr "" 6648 + 6649 + #: src/view/com/composer/Composer.tsx:407 6650 + msgid "One or more videos is missing alt text." 6651 + msgstr "" 6652 + 6653 + #: src/screens/Onboarding/StepProfile/index.tsx:118 6654 + msgid "Only .jpg and .png files are supported" 6655 + msgstr "" 6656 + 6657 + #: src/components/WhoCanReply.tsx:281 6658 + msgid "Only {0} can reply." 6659 + msgstr "" 6660 + 6661 + #: src/screens/Settings/ActivityPrivacySettings.tsx:120 6662 + #: src/screens/Settings/ActivityPrivacySettings.tsx:125 6663 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:157 6664 + msgid "Only followers who I follow" 6665 + msgstr "" 6666 + 6667 + #: src/lib/media/picker.shared.ts:33 6668 + msgid "Only image files are supported" 6669 + msgstr "" 6670 + 6671 + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 6672 + msgid "Only WebVTT (.vtt) files are supported" 6673 + msgstr "" 6674 + 6675 + #: src/components/Lists.tsx:98 6676 + msgid "Oops, something went wrong!" 6677 + msgstr "" 6678 + 6679 + #: src/components/Lists.tsx:183 6680 + #: src/components/StarterPack/ProfileStarterPacks.tsx:360 6681 + #: src/components/StarterPack/ProfileStarterPacks.tsx:369 6682 + #: src/screens/Settings/AppPasswords.tsx:58 6683 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 6684 + #: src/view/screens/Profile.tsx:132 6685 + msgid "Oops!" 6686 + msgstr "" 6687 + 6688 + #: src/screens/Signup/index.tsx:234 6689 + msgid "Open a Tangled Issue" 6690 + msgstr "" 6691 + 6692 + #: src/screens/Onboarding/StepProfile/index.tsx:294 6693 + msgid "Open avatar creator" 6694 + msgstr "" 6695 + 6696 + #: src/view/com/feeds/ComposerPrompt.tsx:198 6697 + msgid "Open camera" 6698 + msgstr "" 6699 + 6700 + #: src/screens/Messages/components/ChatListItem.tsx:377 6701 + #: src/screens/Messages/components/ChatListItem.tsx:381 6702 + msgid "Open conversation options" 6703 + msgstr "" 6704 + 6705 + #: src/components/Layout/Header/index.tsx:160 6706 + msgid "Open drawer menu" 6707 + msgstr "" 6708 + 6709 + #: src/screens/Messages/components/MessageInput.web.tsx:184 6710 + #: src/view/com/composer/Composer.tsx:1512 6711 + msgid "Open emoji picker" 6712 + msgstr "" 6713 + 6714 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:193 6715 + msgid "Open feed info screen" 6716 + msgstr "" 6717 + 6718 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:294 6719 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:299 6720 + msgid "Open feed options menu" 6721 + msgstr "" 6722 + 6723 + #: src/components/dms/EmojiPopup.android.tsx:30 6724 + msgid "Open full emoji list" 6725 + msgstr "" 6726 + 6727 + #: src/components/Post/Embed/ExternalEmbed/index.tsx:79 6728 + msgid "Open link to {niceUrl}" 6729 + msgstr "" 6730 + 6731 + #: src/components/dms/ActionsWrapper.tsx:35 6732 + msgid "Open message options" 6733 + msgstr "" 6734 + 6735 + #: src/screens/Settings/Settings.tsx:479 6736 + msgid "Open moderation debug page" 6737 + msgstr "" 6738 + 6739 + #: src/screens/Moderation/index.tsx:262 6740 + msgid "Open muted words and tags settings" 6741 + msgstr "" 6742 + 6743 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:158 6744 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:161 6745 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:139 6746 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:142 6747 + msgid "Open original post" 6748 + msgstr "Open original skeet" 6749 + 6750 + #: src/screens/Search/components/StarterPackCard.tsx:120 6751 + msgid "Open pack" 6752 + msgstr "" 6753 + 6754 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:169 6755 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:172 6756 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:151 6757 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 6758 + msgid "Open post in PDSls" 6759 + msgstr "Open skeet in PDSls" 6760 + 6761 + #: src/components/PostControls/PostMenu/index.tsx:66 6762 + msgid "Open post options menu" 6763 + msgstr "Open skeet options menu" 6764 + 6765 + #: src/components/live/LiveStatusDialog.tsx:220 6766 + #: src/components/live/LiveStatusDialog.tsx:247 6767 + msgid "Open profile" 6768 + msgstr "" 6769 + 6770 + #: src/components/PostControls/ShareMenu/index.tsx:107 6771 + msgid "Open share menu" 6772 + msgstr "" 6773 + 6774 + #: src/screens/StarterPack/StarterPackScreen.tsx:571 6775 + msgid "Open starter pack menu" 6776 + msgstr "" 6777 + 6778 + #: src/screens/Settings/Settings.tsx:472 6779 + #: src/screens/Settings/Settings.tsx:486 6780 + msgid "Open storybook page" 6781 + msgstr "" 6782 + 6783 + #: src/screens/Settings/Settings.tsx:465 6784 + msgid "Open system log" 6785 + msgstr "" 6786 + 6787 + #: src/view/shell/desktop/Feeds.tsx:188 6788 + msgid "Opens {0} feed" 6789 + msgstr "" 6790 + 6791 + #: src/view/com/composer/labels/LabelsBtn.tsx:62 6792 + msgid "Opens a dialog to add a content warning to your post" 6793 + msgstr "Opens a dialog to add a content warning to your skeet" 6794 + 6795 + #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 6796 + msgid "Opens a dialog to choose who can interact with this post" 6797 + msgstr "Opens a dialog to choose who can interact with this skeet" 6798 + 6799 + #: src/screens/Log.tsx:83 6800 + msgid "Opens additional details for a debug entry" 6801 + msgstr "" 6802 + 6803 + #: src/view/com/composer/videos/SubtitleDialog.tsx:45 6804 + msgid "Opens alt text dialog" 6805 + msgstr "" 6806 + 6807 + #: src/view/com/composer/photos/OpenCameraBtn.tsx:74 6808 + msgid "Opens camera on device" 6809 + msgstr "" 6810 + 6811 + #: src/view/com/composer/videos/SubtitleDialog.tsx:44 6812 + msgid "Opens captions and alt text dialog" 6813 + msgstr "" 6814 + 6815 + #: src/screens/Settings/AccountSettings.tsx:131 6816 + msgid "Opens change handle dialog" 6817 + msgstr "" 6818 + 6819 + #: src/screens/Settings/Settings.tsx:263 6820 + msgid "Opens code repository in browser" 6821 + msgstr "" 6822 + 6823 + #: src/screens/PostThread/components/ThreadComposePrompt.tsx:65 6824 + msgid "Opens composer" 6825 + msgstr "" 6826 + 6827 + #: src/view/com/feeds/ComposerPrompt.tsx:199 6828 + msgid "Opens device camera" 6829 + msgstr "" 6830 + 6831 + #. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. 6832 + #: src/view/com/composer/SelectMediaButton.tsx:490 6833 + msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." 6834 + msgstr "" 6835 + 6836 + #: src/view/com/composer/Composer.tsx:1513 6837 + msgid "Opens emoji picker" 6838 + msgstr "" 6839 + 6840 + #: src/view/com/auth/SplashScreen.tsx:70 6841 + #: src/view/com/auth/SplashScreen.web.tsx:115 6842 + msgid "Opens flow to create a new Bluesky account" 6843 + msgstr "" 6844 + 6845 + #: src/screens/Signup/StepInfo/index.tsx:224 6846 + msgid "Opens flow to sign in to your existing ATmosphere account" 6847 + msgstr "" 6848 + 6849 + #: src/view/com/auth/SplashScreen.tsx:87 6850 + #: src/view/com/auth/SplashScreen.web.tsx:129 6851 + msgid "Opens flow to sign in to your existing Bluesky account" 6852 + msgstr "" 6853 + 6854 + #: src/view/com/composer/photos/SelectGifBtn.tsx:39 6855 + msgid "Opens GIF select dialog" 6856 + msgstr "" 6857 + 6858 + #: src/view/com/feeds/ComposerPrompt.tsx:221 6859 + msgid "Opens image picker" 6860 + msgstr "" 6861 + 6862 + #: src/components/dialogs/LinkWarning.tsx:97 6863 + msgid "Opens link {0}" 6864 + msgstr "" 6865 + 6866 + #: src/view/com/util/UserAvatar.tsx:617 6867 + msgid "Opens live status dialog" 6868 + msgstr "" 6869 + 6870 + #: src/screens/Login/LoginForm.tsx:284 6871 + msgid "Opens password reset form" 6872 + msgstr "" 6873 + 6874 + #: src/view/com/composer/select-language/PostLanguageSelect.tsx:129 6875 + msgid "Opens post language settings" 6876 + msgstr "Opens skeet language settings" 6877 + 6878 + #: src/view/com/feeds/ComposerPrompt.tsx:144 6879 + msgid "Opens the post composer" 6880 + msgstr "Opens the skeet composer" 6881 + 6882 + #: src/view/com/notifications/NotificationFeedItem.tsx:1032 6883 + #: src/view/com/util/UserAvatar.tsx:635 6884 + msgid "Opens this profile" 6885 + msgstr "" 6886 + 6887 + #: src/components/dialogs/MutedWords.tsx:305 6888 + msgid "Options:" 6889 + msgstr "" 6890 + 6891 + #: src/screens/Deactivated.tsx:191 6892 + msgid "Or, continue with another account." 6893 + msgstr "" 6894 + 6895 + #: src/screens/Deactivated.tsx:178 6896 + msgid "Or, sign in to one of your other accounts." 6897 + msgstr "" 6898 + 6899 + #: src/screens/Settings/components/OTAInfo.tsx:52 6900 + msgid "OTA status: ..." 6901 + msgstr "" 6902 + 6903 + #: src/screens/Settings/components/OTAInfo.tsx:48 6904 + msgid "OTA status: Available!" 6905 + msgstr "" 6906 + 6907 + #: src/screens/Settings/components/OTAInfo.tsx:50 6908 + msgid "OTA status: Error fetching update" 6909 + msgstr "" 6910 + 6911 + #: src/screens/Settings/components/OTAInfo.tsx:54 6912 + msgid "OTA status: None available" 6913 + msgstr "" 6914 + 6915 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238 6916 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242 6917 + #: src/view/com/composer/labels/LabelsBtn.tsx:180 6918 + msgid "Other" 6919 + msgstr "" 6920 + 6921 + #: src/components/AccountList.tsx:95 6922 + msgid "Other account" 6923 + msgstr "" 6924 + 6925 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:181 6926 + msgid "Other child safety issue" 6927 + msgstr "" 6928 + 6929 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:208 6930 + msgid "Other dangerous content" 6931 + msgstr "" 6932 + 6933 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:119 6934 + msgid "Other harassing or hateful content" 6935 + msgstr "" 6936 + 6937 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 6938 + msgid "Other misleading content" 6939 + msgstr "" 6940 + 6941 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:231 6942 + msgid "Other network rule-breaking" 6943 + msgstr "" 6944 + 6945 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:92 6946 + msgid "Other sexual violence content" 6947 + msgstr "" 6948 + 6949 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:154 6950 + msgid "Other violent content" 6951 + msgstr "" 6952 + 6953 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:50 6954 + msgid "Our blog post" 6955 + msgstr "Our blog skeet" 6956 + 6957 + #: src/components/dms/AfterReportDialog.tsx:88 6958 + #: src/components/dms/AfterReportDialog.tsx:176 6959 + msgid "Our moderation team has received your report." 6960 + msgstr "" 6961 + 6962 + #: src/screens/Messages/components/ChatDisabled.tsx:34 6963 + msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." 6964 + msgstr "" 6965 + 6966 + #: src/components/Lists.tsx:204 6967 + #: src/components/Lists.tsx:219 6968 + #: src/view/screens/NotFound.tsx:47 6969 + msgid "Page not found" 6970 + msgstr "" 6971 + 6972 + #: src/view/screens/NotFound.tsx:44 6973 + msgid "Page Not Found" 6974 + msgstr "" 6975 + 6976 + #: src/screens/Login/LoginForm.tsx:254 6977 + #: src/screens/Settings/AccountSettings.tsx:121 6978 + #: src/screens/Settings/AccountSettings.tsx:125 6979 + #: src/screens/Signup/StepInfo/index.tsx:332 6980 + #: src/view/com/modals/DeleteAccount.tsx:242 6981 + #: src/view/com/modals/DeleteAccount.tsx:252 6982 + msgid "Password" 6983 + msgstr "" 6984 + 6985 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:69 6986 + msgid "Password changed" 6987 + msgstr "" 6988 + 6989 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:124 6990 + msgid "Password must be at least 8 characters long." 6991 + msgstr "" 6992 + 6993 + #: src/screens/Login/index.tsx:243 6994 + msgid "Password updated" 6995 + msgstr "" 6996 + 6997 + #: src/screens/Login/PasswordUpdatedForm.tsx:23 6998 + msgid "Password updated!" 6999 + msgstr "" 7000 + 7001 + #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44 7002 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 7003 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:368 7004 + msgid "Pause" 7005 + msgstr "" 7006 + 7007 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:319 7008 + msgid "Pause video" 7009 + msgstr "" 7010 + 7011 + #: src/screens/ProfileList/index.tsx:166 7012 + #: src/screens/Search/SearchResults.tsx:72 7013 + #: src/screens/StarterPack/StarterPackScreen.tsx:190 7014 + msgid "People" 7015 + msgstr "" 7016 + 7017 + #: src/Navigation.tsx:261 7018 + #: src/screens/Profile/ProfileFollows.tsx:30 7019 + msgid "People followed by @{0}" 7020 + msgstr "" 7021 + 7022 + #: src/Navigation.tsx:254 7023 + #: src/screens/Profile/ProfileFollowers.tsx:29 7024 + msgid "People following @{0}" 7025 + msgstr "" 7026 + 7027 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:181 7028 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:191 7029 + msgid "People I follow" 7030 + msgstr "" 7031 + 7032 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:504 7033 + msgid "People you follow" 7034 + msgstr "" 7035 + 7036 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:518 7037 + msgid "People you mention" 7038 + msgstr "" 7039 + 7040 + #: src/lib/media/save-image.ts:59 7041 + msgid "Permission to access your photo library was denied. Please enable it in your system settings." 7042 + msgstr "" 7043 + 7044 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 7045 + msgid "Person toggle" 7046 + msgstr "" 7047 + 7048 + #: src/components/contacts/components/InviteInfo.tsx:59 7049 + msgid "Personalize the message" 7050 + msgstr "" 7051 + 7052 + #: src/lib/interests.ts:68 7053 + msgid "Pets" 7054 + msgstr "" 7055 + 7056 + #: src/components/contacts/screens/PhoneInput.tsx:189 7057 + #: src/components/contacts/screens/PhoneInput.tsx:201 7058 + msgid "Phone number" 7059 + msgstr "" 7060 + 7061 + #: src/components/contacts/screens/VerifyNumber.tsx:301 7062 + msgid "Phone number verified" 7063 + msgstr "" 7064 + 7065 + #: src/lib/interests.ts:69 7066 + msgid "Photography" 7067 + msgstr "" 7068 + 7069 + #: src/view/com/composer/labels/LabelsBtn.tsx:164 7070 + msgid "Pictures meant for adults." 7071 + msgstr "" 7072 + 7073 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:524 7074 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:531 7075 + #: src/screens/SavedFeeds.tsx:351 7076 + msgid "Pin feed" 7077 + msgstr "" 7078 + 7079 + #: src/components/FeedCard.tsx:361 7080 + msgid "Pin Feed" 7081 + msgstr "" 7082 + 7083 + #: src/screens/ProfileList/components/Header.tsx:159 7084 + #: src/screens/ProfileList/components/Header.tsx:166 7085 + msgid "Pin to home" 7086 + msgstr "" 7087 + 7088 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:340 7089 + msgid "Pin to Home" 7090 + msgstr "" 7091 + 7092 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:718 7093 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:725 7094 + msgid "Pin to your profile" 7095 + msgstr "" 7096 + 7097 + #: src/view/com/posts/PostFeedReason.tsx:115 7098 + msgid "Pinned" 7099 + msgstr "" 7100 + 7101 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:162 7102 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:176 7103 + msgid "Pinned {0} to Home" 7104 + msgstr "" 7105 + 7106 + #: src/screens/SavedFeeds.tsx:142 7107 + msgid "Pinned Feeds" 7108 + msgstr "" 7109 + 7110 + #: src/screens/ProfileList/components/Header.tsx:77 7111 + msgid "Pinned to your feeds" 7112 + msgstr "" 7113 + 7114 + #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:44 7115 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:138 7116 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:369 7117 + msgid "Play" 7118 + msgstr "" 7119 + 7120 + #: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:111 7121 + msgid "Play {0}" 7122 + msgstr "" 7123 + 7124 + #: src/components/Post/Embed/VideoEmbed/index.tsx:118 7125 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:320 7126 + msgid "Play video" 7127 + msgstr "" 7128 + 7129 + #: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 7130 + msgid "Play Video" 7131 + msgstr "" 7132 + 7133 + #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:43 7134 + msgid "Plays or pauses the GIF" 7135 + msgstr "" 7136 + 7137 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:139 7138 + msgid "Plays or pauses the video" 7139 + msgstr "" 7140 + 7141 + #: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 7142 + msgid "Plays the GIF" 7143 + msgstr "" 7144 + 7145 + #: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 7146 + msgid "Plays the video" 7147 + msgstr "" 7148 + 7149 + #: src/view/com/composer/labels/LabelsBtn.tsx:110 7150 + msgid "Please add any content warning labels that are applicable for the media you are posting." 7151 + msgstr "Please add any content warning labels that are applicable for the media you are skeeting." 7152 + 7153 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:188 7154 + msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." 7155 + msgstr "" 7156 + 7157 + #: src/screens/Signup/StepInfo/index.tsx:124 7158 + msgid "Please choose a 3rd party service host, or sign up on bsky.app." 7159 + msgstr "" 7160 + 7161 + #: src/screens/Signup/state.ts:289 7162 + msgid "Please choose your handle." 7163 + msgstr "" 7164 + 7165 + #: src/screens/Signup/state.ts:281 7166 + #: src/screens/Signup/StepInfo/index.tsx:168 7167 + msgid "Please choose your password." 7168 + msgstr "" 7169 + 7170 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:290 7171 + msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." 7172 + msgstr "" 7173 + 7174 + #: src/screens/Signup/state.ts:304 7175 + msgid "Please complete the verification captcha." 7176 + msgstr "" 7177 + 7178 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:101 7179 + #: src/screens/Signup/StepInfo/index.tsx:157 7180 + msgid "Please double-check that you have entered your email address correctly." 7181 + msgstr "" 7182 + 7183 + #: src/screens/Login/SetNewPasswordForm.tsx:58 7184 + msgid "Please enter a password." 7185 + msgstr "" 7186 + 7187 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:119 7188 + msgid "Please enter a password. It must be at least 8 characters long." 7189 + msgstr "" 7190 + 7191 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 7192 + msgid "Please enter a unique name for this app password or use our randomly generated one." 7193 + msgstr "" 7194 + 7195 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:131 7196 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:135 7197 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:145 7198 + msgid "Please enter a valid code." 7199 + msgstr "" 7200 + 7201 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:110 7202 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:148 7203 + msgid "Please enter a valid email address." 7204 + msgstr "" 7205 + 7206 + #: src/components/dialogs/MutedWords.tsx:87 7207 + msgid "Please enter a valid word, tag, or phrase to mute" 7208 + msgstr "" 7209 + 7210 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:144 7211 + msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." 7212 + msgstr "" 7213 + 7214 + #: src/screens/Login/LoginForm.tsx:108 7215 + msgid "Please enter hosting provider URL" 7216 + msgstr "" 7217 + 7218 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 7219 + msgid "Please enter the code we sent to <0>{0}</0> below." 7220 + msgstr "" 7221 + 7222 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:65 7223 + msgid "Please enter the code you received and the new password you would like to use." 7224 + msgstr "" 7225 + 7226 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:247 7227 + msgid "Please enter the security code we sent to your previous email address." 7228 + msgstr "" 7229 + 7230 + #: src/screens/Signup/state.ts:265 7231 + #: src/screens/Signup/StepInfo/index.tsx:139 7232 + msgid "Please enter your email." 7233 + msgstr "" 7234 + 7235 + #: src/screens/Signup/StepInfo/index.tsx:132 7236 + msgid "Please enter your invite code." 7237 + msgstr "" 7238 + 7239 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:217 7240 + msgid "Please enter your new email address." 7241 + msgstr "" 7242 + 7243 + #: src/screens/Login/LoginForm.tsx:103 7244 + msgid "Please enter your password" 7245 + msgstr "" 7246 + 7247 + #: src/view/com/modals/DeleteAccount.tsx:238 7248 + msgid "Please enter your password as well:" 7249 + msgstr "" 7250 + 7251 + #: src/screens/Login/LoginForm.tsx:98 7252 + msgid "Please enter your username" 7253 + msgstr "" 7254 + 7255 + #: src/components/moderation/LabelsOnMeDialog.tsx:308 7256 + msgid "Please explain why you think this label was incorrectly applied by {0}" 7257 + msgstr "" 7258 + 7259 + #: src/screens/Messages/components/ChatDisabled.tsx:122 7260 + msgid "Please explain why you think your chats were incorrectly disabled" 7261 + msgstr "" 7262 + 7263 + #: src/components/live/GoLiveDisabledDialog.tsx:123 7264 + msgid "Please explain why you think your Go Live access was incorrectly disabled." 7265 + msgstr "" 7266 + 7267 + #: src/components/FocusScope/index.tsx:91 7268 + #: src/components/FocusScope/index.tsx:115 7269 + msgid "Please go back, or activate this element to return to the start of the active content." 7270 + msgstr "" 7271 + 7272 + #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:97 7273 + msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." 7274 + msgstr "" 7275 + 7276 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:302 7277 + msgid "Please select a language" 7278 + msgstr "" 7279 + 7280 + #: src/components/moderation/ReportDialog/action.ts:32 7281 + msgid "Please select a moderation service" 7282 + msgstr "" 7283 + 7284 + #: src/components/moderation/ReportDialog/action.ts:29 7285 + msgid "Please select a reason for this report" 7286 + msgstr "" 7287 + 7288 + #: src/lib/hooks/useAccountSwitcher.ts:39 7289 + #: src/lib/hooks/useAccountSwitcher.ts:49 7290 + msgid "Please sign in as @{0}" 7291 + msgstr "" 7292 + 7293 + #: src/screens/Settings/FindContactsSettings.tsx:102 7294 + msgid "Please use the native app to import your contacts." 7295 + msgstr "" 7296 + 7297 + #: src/screens/FindContactsFlowScreen.tsx:71 7298 + msgid "Please use the native app to sync your contacts." 7299 + msgstr "" 7300 + 7301 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:67 7302 + msgid "Please verify your email" 7303 + msgstr "" 7304 + 7305 + #: src/lib/hooks/useCreateSupportLink.ts:29 7306 + msgid "Please write your message below:" 7307 + msgstr "" 7308 + 7309 + #: src/lib/interests.ts:70 7310 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:236 7311 + msgid "Politics" 7312 + msgstr "" 7313 + 7314 + #: src/view/com/composer/labels/LabelsBtn.tsx:151 7315 + msgid "Porn" 7316 + msgstr "" 7317 + 7318 + #: src/screens/PostThread/index.tsx:531 7319 + msgctxt "description" 7320 + msgid "Post" 7321 + msgstr "" 7322 + 7323 + #: src/view/com/composer/Composer.tsx:1138 7324 + msgctxt "action" 7325 + msgid "Post" 7326 + msgstr "" 7327 + 7328 + #: src/view/screens/Profile.tsx:475 7329 + #: src/view/screens/Profile.tsx:476 7330 + msgid "Post a photo" 7331 + msgstr "" 7332 + 7333 + #: src/view/screens/Profile.tsx:501 7334 + #: src/view/screens/Profile.tsx:502 7335 + msgid "Post a video" 7336 + msgstr "" 7337 + 7338 + #: src/view/com/composer/Composer.tsx:1136 7339 + msgctxt "action" 7340 + msgid "Post All" 7341 + msgstr "" 7342 + 7343 + #: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 7344 + msgid "Post blocked" 7345 + msgstr "" 7346 + 7347 + #: src/Navigation.tsx:287 7348 + #: src/Navigation.tsx:294 7349 + #: src/Navigation.tsx:301 7350 + #: src/Navigation.tsx:308 7351 + #: src/screens/Post/PostLikedBy.tsx:30 7352 + #: src/screens/Post/PostQuotes.tsx:30 7353 + #: src/screens/Post/PostRepostedBy.tsx:30 7354 + #: src/view/screens/PostThread.tsx:29 7355 + msgid "Post by @{0}" 7356 + msgstr "" 7357 + 7358 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:207 7359 + msgctxt "toast" 7360 + msgid "Post deleted" 7361 + msgstr "" 7362 + 7363 + #: src/lib/api/index.ts:190 7364 + msgid "Post failed to upload. Please check your Internet connection and try again." 7365 + msgstr "" 7366 + 7367 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:139 7368 + #: src/screens/PostThread/components/ThreadItemPost.tsx:112 7369 + #: src/screens/PostThread/components/ThreadItemTreePost.tsx:108 7370 + #: src/screens/VideoFeed/index.tsx:558 7371 + msgid "Post has been deleted" 7372 + msgstr "" 7373 + 7374 + #: src/components/moderation/ModerationDetailsDialog.tsx:109 7375 + #: src/lib/moderation/useModerationCauseDescription.ts:107 7376 + msgid "Post Hidden by Muted Word" 7377 + msgstr "" 7378 + 7379 + #: src/components/moderation/ModerationDetailsDialog.tsx:112 7380 + #: src/lib/moderation/useModerationCauseDescription.ts:116 7381 + msgid "Post Hidden by You" 7382 + msgstr "" 7383 + 7384 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:679 7385 + msgid "Post interaction settings" 7386 + msgstr "" 7387 + 7388 + #: src/Navigation.tsx:221 7389 + #: src/screens/ModerationInteractionSettings/index.tsx:34 7390 + msgid "Post Interaction Settings" 7391 + msgstr "" 7392 + 7393 + #. Accessibility label for button that opens dialog to choose post language settings 7394 + #: src/view/com/composer/select-language/PostLanguageSelect.tsx:124 7395 + msgid "Post language selection" 7396 + msgstr "" 7397 + 7398 + #: src/screens/PostThread/components/ThreadError.tsx:32 7399 + #: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 7400 + msgid "Post not found" 7401 + msgstr "" 7402 + 7403 + #: src/state/queries/pinned-post.ts:59 7404 + msgctxt "toast" 7405 + msgid "Post pinned" 7406 + msgstr "" 7407 + 7408 + #: src/components/PostControls/BookmarkButton.tsx:66 7409 + msgid "Post saved" 7410 + msgstr "" 7411 + 7412 + #: src/state/queries/pinned-post.ts:61 7413 + msgctxt "toast" 7414 + msgid "Post unpinned" 7415 + msgstr "" 7416 + 7417 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:250 7418 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:262 7419 + #: src/screens/ProfileList/index.tsx:166 7420 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 7421 + #: src/screens/StarterPack/StarterPackScreen.tsx:192 7422 + #: src/view/screens/Profile.tsx:234 7423 + msgid "Posts" 7424 + msgstr "" 7425 + 7426 + #: src/components/dialogs/MutedWords.tsx:121 7427 + msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." 7428 + msgstr "skeets can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many skeets, since it can result in no skeets being shown." 7429 + 7430 + #: src/view/com/posts/PostFeedErrorMessage.tsx:75 7431 + msgid "Posts hidden" 7432 + msgstr "" 7433 + 7434 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 7435 + msgid "Posts, Replies" 7436 + msgstr "" 7437 + 7438 + #: src/components/dialogs/LinkWarning.tsx:73 7439 + msgid "Potentially misleading link" 7440 + msgstr "" 7441 + 7442 + #: src/components/dialogs/LinkWarning.tsx:66 7443 + msgid "Potentially misleading link warning" 7444 + msgstr "" 7445 + 7446 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:291 7447 + msgid "Preferred language" 7448 + msgstr "" 7449 + 7450 + #: src/screens/Messages/components/MessageListError.tsx:19 7451 + msgid "Press to attempt reconnection" 7452 + msgstr "" 7453 + 7454 + #: src/components/Error.tsx:60 7455 + #: src/components/Lists.tsx:103 7456 + #: src/screens/Messages/components/MessageListError.tsx:24 7457 + #: src/screens/Signup/BackNextButtons.tsx:47 7458 + msgid "Press to retry" 7459 + msgstr "" 7460 + 7461 + #: src/components/KnownFollowers.tsx:129 7462 + msgid "Press to view followers of this account that you also follow" 7463 + msgstr "" 7464 + 7465 + #: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:118 7466 + msgid "Preview" 7467 + msgstr "" 7468 + 7469 + #: src/view/com/lightbox/Lightbox.web.tsx:151 7470 + msgid "Previous image" 7471 + msgstr "" 7472 + 7473 + #: src/screens/Settings/LanguageSettings.tsx:137 7474 + msgid "Primary language" 7475 + msgstr "" 7476 + 7477 + #: src/screens/Settings/LanguageSettings.tsx:121 7478 + msgid "Primary Language" 7479 + msgstr "" 7480 + 7481 + #: src/view/shell/desktop/RightNav.tsx:116 7482 + #: src/view/shell/desktop/RightNav.tsx:117 7483 + msgid "Privacy" 7484 + msgstr "" 7485 + 7486 + #: src/screens/Settings/Settings.tsx:190 7487 + #: src/screens/Settings/Settings.tsx:193 7488 + msgid "Privacy and security" 7489 + msgstr "" 7490 + 7491 + #: src/Navigation.tsx:438 7492 + #: src/Navigation.tsx:446 7493 + #: src/screens/Settings/ActivityPrivacySettings.tsx:40 7494 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:44 7495 + msgid "Privacy and Security" 7496 + msgstr "" 7497 + 7498 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 7499 + #: src/view/screens/Storybook/Admonitions.tsx:93 7500 + msgid "Privacy and Security settings" 7501 + msgstr "" 7502 + 7503 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:35 7504 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:102 7505 + #: src/Navigation.tsx:354 7506 + #: src/screens/Settings/AboutSettings.tsx:90 7507 + #: src/screens/Settings/AboutSettings.tsx:93 7508 + #: src/view/screens/PrivacyPolicy.tsx:34 7509 + #: src/view/shell/Drawer.tsx:723 7510 + #: src/view/shell/Drawer.tsx:724 7511 + msgid "Privacy Policy" 7512 + msgstr "" 7513 + 7514 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:173 7515 + msgid "Privacy violation of a minor" 7516 + msgstr "" 7517 + 7518 + #: src/view/com/composer/Composer.tsx:1930 7519 + msgid "Processing video..." 7520 + msgstr "" 7521 + 7522 + #: src/lib/api/index.ts:64 7523 + #: src/screens/Login/ForgotPasswordForm.tsx:149 7524 + msgid "Processing..." 7525 + msgstr "" 7526 + 7527 + #: src/view/screens/DebugMod.tsx:940 7528 + #: src/view/screens/Profile.tsx:384 7529 + msgid "profile" 7530 + msgstr "" 7531 + 7532 + #: src/view/shell/bottom-bar/BottomBar.tsx:322 7533 + #: src/view/shell/desktop/LeftNav.tsx:797 7534 + #: src/view/shell/Drawer.tsx:84 7535 + #: src/view/shell/Drawer.tsx:614 7536 + msgid "Profile" 7537 + msgstr "" 7538 + 7539 + #: src/screens/Profile/Header/EditProfileDialog.tsx:194 7540 + msgctxt "toast" 7541 + msgid "Profile updated" 7542 + msgstr "" 7543 + 7544 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:223 7545 + msgid "Promoting or selling prohibited items or services" 7546 + msgstr "" 7547 + 7548 + #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160 7549 + msgid "Psst! You can edit who can interact with this post." 7550 + msgstr "Psst! You can edit who can interact with this skeet." 7551 + 7552 + #: src/view/com/lists/MyLists.tsx:79 7553 + msgid "Public, sharable lists of users to mute or block in bulk." 7554 + msgstr "" 7555 + 7556 + #. Accessibility label for button to publish a single post 7557 + #: src/view/com/composer/Composer.tsx:1115 7558 + msgid "Publish post" 7559 + msgstr "Publish skeet" 7560 + 7561 + #. Accessibility label for button to publish multiple posts in a thread 7562 + #: src/view/com/composer/Composer.tsx:1108 7563 + msgid "Publish posts" 7564 + msgstr "Publish skeets" 7565 + 7566 + #. Accessibility label for button to publish multiple replies in a thread 7567 + #: src/view/com/composer/Composer.tsx:1093 7568 + msgid "Publish replies" 7569 + msgstr "" 7570 + 7571 + #. Accessibility label for button to publish a single reply 7572 + #: src/view/com/composer/Composer.tsx:1100 7573 + msgid "Publish reply" 7574 + msgstr "" 7575 + 7576 + #: src/screens/Settings/NotificationSettings/index.tsx:286 7577 + msgid "Push" 7578 + msgstr "" 7579 + 7580 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:129 7581 + msgid "Push notifications" 7582 + msgstr "" 7583 + 7584 + #: src/screens/Settings/NotificationSettings/index.tsx:269 7585 + msgid "Push, Everyone" 7586 + msgstr "" 7587 + 7588 + #: src/screens/Settings/NotificationSettings/index.tsx:277 7589 + msgid "Push, People you follow" 7590 + msgstr "" 7591 + 7592 + #: src/components/StarterPack/QrCodeDialog.tsx:137 7593 + msgid "QR code copied to your clipboard!" 7594 + msgstr "" 7595 + 7596 + #: src/components/StarterPack/QrCodeDialog.tsx:115 7597 + msgid "QR code has been downloaded!" 7598 + msgstr "" 7599 + 7600 + #: src/components/StarterPack/QrCodeDialog.tsx:116 7601 + msgid "QR code saved to your camera roll!" 7602 + msgstr "" 7603 + 7604 + #: src/Navigation.tsx:483 7605 + msgid "Quote notifications" 7606 + msgstr "" 7607 + 7608 + #: src/components/PostControls/RepostButton.tsx:175 7609 + #: src/components/PostControls/RepostButton.tsx:198 7610 + #: src/components/PostControls/RepostButton.web.tsx:85 7611 + #: src/components/PostControls/RepostButton.web.tsx:92 7612 + msgid "Quote post" 7613 + msgstr "Quote skeet" 7614 + 7615 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:510 7616 + msgid "Quote post was re-attached" 7617 + msgstr "Quote skeet was re-attached" 7618 + 7619 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:509 7620 + msgid "Quote post was successfully detached" 7621 + msgstr "Quote skeet was successfully detached" 7622 + 7623 + #: src/components/PostControls/RepostButton.tsx:174 7624 + #: src/components/PostControls/RepostButton.tsx:196 7625 + #: src/components/PostControls/RepostButton.web.tsx:84 7626 + #: src/components/PostControls/RepostButton.web.tsx:91 7627 + msgid "Quote posts disabled" 7628 + msgstr "Quote skeets disabled" 7629 + 7630 + #: src/lib/hooks/useNotificationHandler.ts:154 7631 + #: src/screens/Post/PostQuotes.tsx:51 7632 + #: src/screens/Settings/NotificationSettings/index.tsx:170 7633 + #: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 7634 + msgid "Quotes" 7635 + msgstr "" 7636 + 7637 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:480 7638 + msgid "Quotes of this post" 7639 + msgstr "Quotes of this skeet" 7640 + 7641 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:618 7642 + msgid "Rate limit exceeded โ€“ you've tried to change your handle too many times in a short period. Please wait a minute before trying again." 7643 + msgstr "" 7644 + 7645 + #: src/components/contacts/screens/PhoneInput.tsx:106 7646 + msgid "Rate limit exceeded. Please try again later." 7647 + msgstr "" 7648 + 7649 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:923 7650 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:933 7651 + msgid "Re-attach quote" 7652 + msgstr "" 7653 + 7654 + #: src/components/dms/EmojiReactionPicker.tsx:88 7655 + msgid "React with {emoji}" 7656 + msgstr "" 7657 + 7658 + #: src/screens/Deactivated.tsx:132 7659 + msgid "Reactivate your account" 7660 + msgstr "" 7661 + 7662 + #: src/screens/PostThread/components/ThreadItemReadMore.tsx:92 7663 + msgid "Read {0, plural, one {# more reply} other {# more replies}}" 7664 + msgstr "" 7665 + 7666 + #: src/screens/Search/SearchResults.tsx:182 7667 + msgctxt "english-only-resource" 7668 + msgid "read about how to use search filters" 7669 + msgstr "" 7670 + 7671 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:161 7672 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 7673 + msgid "Read blog post" 7674 + msgstr "" 7675 + 7676 + #: src/screens/VideoFeed/index.tsx:997 7677 + msgid "Read less" 7678 + msgstr "" 7679 + 7680 + #: src/screens/VideoFeed/index.tsx:997 7681 + msgid "Read more" 7682 + msgstr "" 7683 + 7684 + #: src/screens/PostThread/components/ThreadItemReadMore.tsx:71 7685 + msgid "Read more replies" 7686 + msgstr "" 7687 + 7688 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:112 7689 + msgid "Read our blog post" 7690 + msgstr "" 7691 + 7692 + #: src/screens/Signup/StepInfo/Policies.tsx:52 7693 + #: src/screens/Signup/StepInfo/Policies.tsx:78 7694 + msgid "Read the Bluesky Privacy Policy" 7695 + msgstr "" 7696 + 7697 + #: src/screens/Signup/StepInfo/Policies.tsx:45 7698 + #: src/screens/Signup/StepInfo/Policies.tsx:65 7699 + msgid "Read the Bluesky Terms of Service" 7700 + msgstr "" 7701 + 7702 + #: src/view/com/auth/SplashScreen.web.tsx:172 7703 + msgid "Read the patches and contribute" 7704 + msgstr "" 7705 + 7706 + #: src/components/WelcomeModal.tsx:146 7707 + msgid "Real creatures." 7708 + msgstr "" 7709 + 7710 + #: src/components/WelcomeModal.tsx:144 7711 + msgid "Real talk." 7712 + msgstr "" 7713 + 7714 + #: src/screens/Takendown.tsx:160 7715 + #: src/screens/Takendown.tsx:168 7716 + msgid "Reason for appeal" 7717 + msgstr "" 7718 + 7719 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:135 7720 + msgid "Receive in-app notifications" 7721 + msgstr "" 7722 + 7723 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 7724 + msgid "Receive push notifications" 7725 + msgstr "" 7726 + 7727 + #: src/screens/Search/components/SearchHistory.tsx:52 7728 + msgid "Recent Searches" 7729 + msgstr "" 7730 + 7731 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:235 7732 + msgid "Recently used" 7733 + msgstr "" 7734 + 7735 + #: src/screens/Search/modules/ExploreRecommendations.tsx:54 7736 + msgid "Recommended" 7737 + msgstr "" 7738 + 7739 + #: src/screens/Messages/components/MessageListError.tsx:20 7740 + msgid "Reconnect" 7741 + msgstr "" 7742 + 7743 + #: src/screens/Settings/AppearanceSettings.tsx:115 7744 + msgid "Red Dwarf" 7745 + msgstr "" 7746 + 7747 + #: src/screens/Settings/DeerSettings.tsx:388 7748 + #: src/screens/Settings/DeerSettings.tsx:393 7749 + msgid "Redirect through go.bsky.app" 7750 + msgstr "" 7751 + 7752 + #: src/screens/Settings/DeerSettings.tsx:384 7753 + msgid "Redirects" 7754 + msgstr "" 7755 + 7756 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:706 7757 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:734 7758 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 7759 + msgid "Redraft" 7760 + msgstr "" 7761 + 7762 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 7763 + msgid "Redraft this post?" 7764 + msgstr "Redraft this skeet?" 7765 + 7766 + #. Reject a chat request, this opens a menu with options 7767 + #: src/screens/Messages/components/RequestButtons.tsx:124 7768 + msgid "Reject" 7769 + msgstr "" 7770 + 7771 + #: src/screens/Messages/components/RequestButtons.tsx:113 7772 + msgid "Reject chat request" 7773 + msgstr "" 7774 + 7775 + #: src/screens/Messages/ChatList.tsx:287 7776 + #: src/screens/Messages/Inbox.tsx:213 7777 + msgid "Reload conversations" 7778 + msgstr "" 7779 + 7780 + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 7781 + #: src/components/dialogs/MutedWords.tsx:446 7782 + #: src/components/dialogs/StarterPackDialog.tsx:377 7783 + #: src/components/dialogs/StarterPackDialog.tsx:383 7784 + #: src/components/FeedCard.tsx:375 7785 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:105 7786 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:112 7787 + #: src/screens/Bookmarks/index.tsx:266 7788 + #: src/screens/Settings/Settings.tsx:694 7789 + #: src/view/com/modals/UserAddRemoveLists.tsx:237 7790 + #: src/view/com/posts/PostFeedErrorMessage.tsx:220 7791 + msgid "Remove" 7792 + msgstr "" 7793 + 7794 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:61 7795 + msgid "Remove {displayName} from starter pack" 7796 + msgstr "" 7797 + 7798 + #: src/screens/Search/components/SearchHistory.tsx:97 7799 + msgid "Remove {historyItem}" 7800 + msgstr "" 7801 + 7802 + #: src/screens/Settings/Settings.tsx:673 7803 + #: src/screens/Settings/Settings.tsx:676 7804 + msgid "Remove account" 7805 + msgstr "" 7806 + 7807 + #: src/screens/Settings/FindContactsSettings.tsx:548 7808 + #: src/screens/Settings/FindContactsSettings.tsx:556 7809 + msgid "Remove all contacts" 7810 + msgstr "" 7811 + 7812 + #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:22 7813 + msgid "Remove attachment" 7814 + msgstr "" 7815 + 7816 + #: src/view/com/util/UserAvatar.tsx:534 7817 + #: src/view/com/util/UserAvatar.tsx:537 7818 + msgid "Remove Avatar" 7819 + msgstr "" 7820 + 7821 + #: src/view/com/util/UserBanner.tsx:198 7822 + #: src/view/com/util/UserBanner.tsx:201 7823 + msgid "Remove Banner" 7824 + msgstr "" 7825 + 7826 + #: src/screens/Messages/components/MessageInputEmbed.tsx:215 7827 + msgid "Remove embed" 7828 + msgstr "" 7829 + 7830 + #: src/view/com/posts/FeedShutdownMsg.tsx:116 7831 + #: src/view/com/posts/FeedShutdownMsg.tsx:120 7832 + #: src/view/com/posts/PostFeedErrorMessage.tsx:176 7833 + msgid "Remove feed" 7834 + msgstr "" 7835 + 7836 + #: src/view/com/posts/PostFeedErrorMessage.tsx:217 7837 + msgid "Remove feed?" 7838 + msgstr "" 7839 + 7840 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:322 7841 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:328 7842 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:184 7843 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:187 7844 + #: src/screens/SavedFeeds.tsx:340 7845 + msgid "Remove from my feeds" 7846 + msgstr "" 7847 + 7848 + #: src/screens/Settings/Settings.tsx:686 7849 + msgid "Remove from quick access?" 7850 + msgstr "" 7851 + 7852 + #: src/screens/List/ListHiddenScreen.tsx:170 7853 + #: src/screens/List/ListHiddenScreen.tsx:174 7854 + msgid "Remove from saved feeds" 7855 + msgstr "" 7856 + 7857 + #: src/components/PostControls/BookmarkButton.tsx:140 7858 + #: src/screens/Bookmarks/index.tsx:260 7859 + msgid "Remove from saved posts" 7860 + msgstr "Remove from saved skeets" 7861 + 7862 + #: src/components/FeedCard.tsx:370 7863 + msgid "Remove from your feeds?" 7864 + msgstr "" 7865 + 7866 + #: src/view/com/composer/photos/Gallery.tsx:211 7867 + msgid "Remove image" 7868 + msgstr "" 7869 + 7870 + #: src/components/live/EditLiveDialog.tsx:226 7871 + #: src/components/live/EditLiveDialog.tsx:233 7872 + msgid "Remove live status" 7873 + msgstr "" 7874 + 7875 + #: src/components/dialogs/MutedWords.tsx:533 7876 + msgid "Remove mute word from your list" 7877 + msgstr "" 7878 + 7879 + #: src/screens/Search/components/SearchHistory.tsx:172 7880 + msgid "Remove profile" 7881 + msgstr "" 7882 + 7883 + #: src/components/PostControls/RepostButton.tsx:152 7884 + #: src/components/PostControls/RepostButton.tsx:162 7885 + msgid "Remove repost" 7886 + msgstr "Remove reskeet" 7887 + 7888 + #: src/view/com/composer/videos/SubtitleDialog.tsx:285 7889 + msgid "Remove subtitle file" 7890 + msgstr "" 7891 + 7892 + #: src/components/contacts/screens/ViewMatches.tsx:497 7893 + #: src/screens/Settings/FindContactsSettings.tsx:323 7894 + msgid "Remove suggestion" 7895 + msgstr "" 7896 + 7897 + #: src/view/com/posts/PostFeedErrorMessage.tsx:218 7898 + msgid "Remove this feed from your saved feeds" 7899 + msgstr "" 7900 + 7901 + #: src/view/com/profile/ProfileMenu.tsx:408 7902 + #: src/view/com/profile/ProfileMenu.tsx:413 7903 + msgid "Remove trust" 7904 + msgstr "" 7905 + 7906 + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:157 7907 + msgid "Remove user from list" 7908 + msgstr "" 7909 + 7910 + #: src/components/verification/VerificationRemovePrompt.tsx:46 7911 + #: src/components/verification/VerificationsDialog.tsx:255 7912 + #: src/view/com/profile/ProfileMenu.tsx:487 7913 + #: src/view/com/profile/ProfileMenu.tsx:490 7914 + msgid "Remove verification" 7915 + msgstr "" 7916 + 7917 + #: src/components/verification/VerificationRemovePrompt.tsx:44 7918 + msgid "Remove your verification for this account?" 7919 + msgstr "" 7920 + 7921 + #: src/components/Post/Embed/index.tsx:225 7922 + #: src/components/Post/Embed/index.tsx:299 7923 + msgid "Removed by author" 7924 + msgstr "" 7925 + 7926 + #: src/components/Post/Embed/index.tsx:297 7927 + msgid "Removed by you" 7928 + msgstr "" 7929 + 7930 + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:117 7931 + #: src/view/com/modals/UserAddRemoveLists.tsx:172 7932 + msgid "Removed from list" 7933 + msgstr "" 7934 + 7935 + #: src/screens/List/ListHiddenScreen.tsx:94 7936 + msgid "Removed from saved feeds" 7937 + msgstr "" 7938 + 7939 + #: src/components/PostControls/BookmarkButton.tsx:106 7940 + #: src/screens/Bookmarks/index.tsx:218 7941 + msgid "Removed from saved posts" 7942 + msgstr "Removed from saved skeets" 7943 + 7944 + #: src/components/dialogs/StarterPackDialog.tsx:280 7945 + msgid "Removed from starter pack" 7946 + msgstr "" 7947 + 7948 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:124 7949 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 7950 + #: src/view/com/posts/FeedShutdownMsg.tsx:44 7951 + msgid "Removed from your feeds" 7952 + msgstr "" 7953 + 7954 + #: src/components/verification/VerificationRemovePrompt.tsx:32 7955 + msgid "Removed verification" 7956 + msgstr "" 7957 + 7958 + #: src/view/com/posts/FeedShutdownMsg.tsx:129 7959 + #: src/view/com/posts/FeedShutdownMsg.tsx:133 7960 + msgid "Replace with Discover" 7961 + msgstr "" 7962 + 7963 + #: src/components/Post/PostRepliedTo.tsx:39 7964 + msgctxt "description" 7965 + msgid "Replied to <0><1/></0>" 7966 + msgstr "" 7967 + 7968 + #: src/components/Post/PostRepliedTo.tsx:28 7969 + msgctxt "description" 7970 + msgid "Replied to a blocked post" 7971 + msgstr "Replied to a blocked skeet" 7972 + 7973 + #: src/components/Post/PostRepliedTo.tsx:30 7974 + msgctxt "description" 7975 + msgid "Replied to a post" 7976 + msgstr "Replied to a skeet" 7977 + 7978 + #: src/components/Post/PostRepliedTo.tsx:36 7979 + msgctxt "description" 7980 + msgid "Replied to you" 7981 + msgstr "" 7982 + 7983 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:267 7984 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:279 7985 + #: src/lib/hooks/useNotificationHandler.ts:140 7986 + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 7987 + #: src/screens/Settings/NotificationSettings/index.tsx:148 7988 + #: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 7989 + #: src/view/screens/Profile.tsx:235 7990 + msgid "Replies" 7991 + msgstr "" 7992 + 7993 + #: src/components/WhoCanReply.tsx:85 7994 + msgid "Replies disabled" 7995 + msgstr "" 7996 + 7997 + #: src/components/WhoCanReply.tsx:279 7998 + msgid "Replies to this post are disabled." 7999 + msgstr "Replies to this skeet are disabled." 8000 + 8001 + #: src/view/com/composer/Composer.tsx:1134 8002 + msgctxt "action" 8003 + msgid "Reply" 8004 + msgstr "" 8005 + 8006 + #. Accessibility label for the reply button, verb form followed by number of replies and noun form 8007 + #: src/components/PostControls/index.tsx:248 8008 + msgid "Reply ({0, plural, one {# reply} other {# replies}})" 8009 + msgstr "" 8010 + 8011 + #: src/components/moderation/ModerationDetailsDialog.tsx:118 8012 + #: src/lib/moderation/useModerationCauseDescription.ts:126 8013 + msgid "Reply Hidden by Thread Author" 8014 + msgstr "" 8015 + 8016 + #: src/components/moderation/ModerationDetailsDialog.tsx:117 8017 + #: src/lib/moderation/useModerationCauseDescription.ts:125 8018 + msgid "Reply Hidden by You" 8019 + msgstr "" 8020 + 8021 + #: src/Navigation.tsx:467 8022 + msgid "Reply notifications" 8023 + msgstr "" 8024 + 8025 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:412 8026 + msgid "Reply settings are chosen by the author of the thread" 8027 + msgstr "" 8028 + 8029 + #: src/screens/PostThread/components/HeaderDropdown.tsx:73 8030 + msgid "Reply sorting" 8031 + msgstr "" 8032 + 8033 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 8034 + msgctxt "toast" 8035 + msgid "Reply visibility updated" 8036 + msgstr "" 8037 + 8038 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 8039 + msgid "Reply was successfully hidden" 8040 + msgstr "" 8041 + 8042 + #: src/components/dms/MessageContextMenu.tsx:168 8043 + #: src/components/dms/MessagesListBlockedFooter.tsx:85 8044 + #: src/components/dms/MessagesListBlockedFooter.tsx:92 8045 + #: src/components/live/LiveStatusDialog.tsx:286 8046 + msgid "Report" 8047 + msgstr "" 8048 + 8049 + #: src/view/com/profile/ProfileMenu.tsx:554 8050 + #: src/view/com/profile/ProfileMenu.tsx:557 8051 + msgid "Report account" 8052 + msgstr "" 8053 + 8054 + #: src/components/dms/ConvoMenu.tsx:272 8055 + #: src/components/dms/ConvoMenu.tsx:275 8056 + #: src/components/dms/ReportConversationPrompt.tsx:17 8057 + #: src/screens/Messages/components/RequestButtons.tsx:155 8058 + #: src/screens/Messages/components/RequestButtons.tsx:158 8059 + msgid "Report conversation" 8060 + msgstr "" 8061 + 8062 + #: src/components/moderation/ReportDialog/index.tsx:91 8063 + #: src/components/moderation/ReportDialog/index.tsx:256 8064 + msgid "Report dialog" 8065 + msgstr "" 8066 + 8067 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:547 8068 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:553 8069 + msgid "Report feed" 8070 + msgstr "" 8071 + 8072 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:218 8073 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:221 8074 + msgid "Report list" 8075 + msgstr "" 8076 + 8077 + #: src/components/dms/MessageContextMenu.tsx:166 8078 + msgid "Report message" 8079 + msgstr "" 8080 + 8081 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:989 8082 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:991 8083 + msgid "Report post" 8084 + msgstr "Report skeet" 8085 + 8086 + #: src/screens/StarterPack/StarterPackScreen.tsx:635 8087 + #: src/screens/StarterPack/StarterPackScreen.tsx:638 8088 + msgid "Report starter pack" 8089 + msgstr "" 8090 + 8091 + #: src/components/dms/AfterReportDialog.tsx:85 8092 + #: src/components/dms/AfterReportDialog.tsx:173 8093 + msgid "Report submitted" 8094 + msgstr "" 8095 + 8096 + #: src/components/moderation/ReportDialog/copy.ts:51 8097 + msgid "Report this conversation" 8098 + msgstr "" 8099 + 8100 + #: src/components/moderation/ReportDialog/copy.ts:37 8101 + msgid "Report this feed" 8102 + msgstr "" 8103 + 8104 + #: src/components/moderation/ReportDialog/copy.ts:31 8105 + msgid "Report this list" 8106 + msgstr "" 8107 + 8108 + #: src/components/live/LiveStatusDialog.tsx:269 8109 + #: src/components/moderation/ReportDialog/copy.ts:19 8110 + msgid "Report this livestream" 8111 + msgstr "" 8112 + 8113 + #: src/components/moderation/ReportDialog/copy.ts:57 8114 + msgid "Report this message" 8115 + msgstr "" 8116 + 8117 + #: src/components/moderation/ReportDialog/copy.ts:25 8118 + msgid "Report this post" 8119 + msgstr "Report this skeet" 8120 + 8121 + #: src/components/moderation/ReportDialog/copy.ts:43 8122 + msgid "Report this starter pack" 8123 + msgstr "" 8124 + 8125 + #: src/components/moderation/ReportDialog/copy.ts:13 8126 + msgid "Report this user" 8127 + msgstr "" 8128 + 8129 + #: src/components/PostControls/RepostButton.tsx:153 8130 + #: src/components/PostControls/RepostButton.tsx:164 8131 + #: src/components/PostControls/RepostButton.web.tsx:69 8132 + #: src/components/PostControls/RepostButton.web.tsx:76 8133 + msgctxt "action" 8134 + msgid "Repost" 8135 + msgstr "Reskeet" 8136 + 8137 + #. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form 8138 + #: src/components/PostControls/RepostButton.tsx:77 8139 + msgid "Repost ({0, plural, one {# repost} other {# reposts}})" 8140 + msgstr "Reskeet ({0, plural, one {# repost} other {# reposts}})" 8141 + 8142 + #: src/Navigation.tsx:499 8143 + msgid "Repost notifications" 8144 + msgstr "Reskeet notifications" 8145 + 8146 + #: src/components/PostControls/RepostButton.tsx:145 8147 + #: src/components/PostControls/RepostButton.web.tsx:44 8148 + #: src/components/PostControls/RepostButton.web.tsx:104 8149 + #: src/screens/StarterPack/StarterPackScreen.tsx:566 8150 + msgid "Repost or quote post" 8151 + msgstr "Reskeet or quote skeet" 8152 + 8153 + #: src/screens/Post/PostRepostedBy.tsx:51 8154 + msgid "Reposted By" 8155 + msgstr "Reskeeted By" 8156 + 8157 + #: src/view/com/posts/PostFeedReason.tsx:77 8158 + #: src/view/com/posts/PostFeedReason.tsx:96 8159 + msgid "Reposted by {reposter}" 8160 + msgstr "Reskeeted by {reposter}" 8161 + 8162 + #: src/view/com/posts/PostFeedReason.tsx:77 8163 + #: src/view/com/posts/PostFeedReason.tsx:94 8164 + msgid "Reposted by you" 8165 + msgstr "Reskeeted by you" 8166 + 8167 + #: src/lib/hooks/useNotificationHandler.ts:133 8168 + #: src/screens/Settings/NotificationSettings/index.tsx:181 8169 + #: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 8170 + msgid "Reposts" 8171 + msgstr "Reskeets" 8172 + 8173 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:461 8174 + msgid "Reposts of this post" 8175 + msgstr "Reskeets of this skeet" 8176 + 8177 + #: src/lib/hooks/useNotificationHandler.ts:175 8178 + #: src/screens/Settings/NotificationSettings/index.tsx:222 8179 + #: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 8180 + msgid "Reposts of your reposts" 8181 + msgstr "Reskeets of your reskeets" 8182 + 8183 + #: src/Navigation.tsx:523 8184 + msgid "Reposts of your reposts notifications" 8185 + msgstr "Reskeets of your reskeets notifications" 8186 + 8187 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:225 8188 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:231 8189 + msgid "Request code" 8190 + msgstr "" 8191 + 8192 + #: src/screens/Settings/AccessibilitySettings.tsx:58 8193 + #: src/screens/Settings/AccessibilitySettings.tsx:63 8194 + msgid "Require alt text before posting" 8195 + msgstr "Require alt text before skeeting" 8196 + 8197 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:96 8198 + msgid "Require an email code to sign in to your account." 8199 + msgstr "" 8200 + 8201 + #: src/screens/Signup/StepInfo/index.tsx:281 8202 + msgid "Required for this provider" 8203 + msgstr "" 8204 + 8205 + #: src/components/LabelingServiceCard/index.tsx:80 8206 + msgid "Required in your region" 8207 + msgstr "" 8208 + 8209 + #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:40 8210 + msgid "Resend" 8211 + msgstr "" 8212 + 8213 + #: src/components/contacts/screens/VerifyNumber.tsx:362 8214 + #: src/components/contacts/screens/VerifyNumber.tsx:379 8215 + msgid "Resend code" 8216 + msgstr "" 8217 + 8218 + #: src/components/contacts/screens/VerifyNumber.tsx:369 8219 + msgid "Resend code in <0>00:{0}</0>" 8220 + msgstr "" 8221 + 8222 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:173 8223 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:176 8224 + msgid "Resend email" 8225 + msgstr "" 8226 + 8227 + #: src/components/intents/VerifyEmailIntentDialog.tsx:123 8228 + msgid "Resend Email" 8229 + msgstr "" 8230 + 8231 + #: src/components/intents/VerifyEmailIntentDialog.tsx:116 8232 + msgid "Resend Verification Email" 8233 + msgstr "" 8234 + 8235 + #: src/screens/Settings/Settings.tsx:508 8236 + #: src/screens/Settings/Settings.tsx:510 8237 + msgid "Reset activity subscription nudge" 8238 + msgstr "" 8239 + 8240 + #: src/screens/Login/SetNewPasswordForm.tsx:116 8241 + msgid "Reset code" 8242 + msgstr "" 8243 + 8244 + #: src/screens/Settings/DeerSettings.tsx:811 8245 + msgid "Reset gates" 8246 + msgstr "" 8247 + 8248 + #: src/screens/Settings/Settings.tsx:493 8249 + #: src/screens/Settings/Settings.tsx:495 8250 + msgid "Reset onboarding state" 8251 + msgstr "" 8252 + 8253 + #: src/screens/Login/ForgotPasswordForm.tsx:80 8254 + msgid "Reset password" 8255 + msgstr "" 8256 + 8257 + #: src/screens/Settings/DeerSettings.tsx:848 8258 + msgid "Restart the app after changing this setting." 8259 + msgstr "" 8260 + 8261 + #: src/screens/Settings/FindContactsSettings.tsx:516 8262 + #: src/screens/Settings/FindContactsSettings.tsx:532 8263 + msgid "Resync contacts" 8264 + msgstr "" 8265 + 8266 + #: src/screens/Login/LoginForm.tsx:352 8267 + msgid "Retries signing in" 8268 + msgstr "" 8269 + 8270 + #: src/view/com/util/error/ErrorMessage.tsx:62 8271 + #: src/view/com/util/error/ErrorScreen.tsx:101 8272 + msgid "Retries the last action, which errored out" 8273 + msgstr "" 8274 + 8275 + #: src/components/ageAssurance/AgeAssuranceErrors.tsx:27 8276 + #: src/components/ageAssurance/AgeAssuranceErrors.tsx:30 8277 + #: src/components/contacts/screens/VerifyNumber.tsx:347 8278 + #: src/components/contacts/screens/VerifyNumber.tsx:352 8279 + #: src/components/dms/MessageItem.tsx:322 8280 + #: src/components/Error.tsx:65 8281 + #: src/components/Lists.tsx:114 8282 + #: src/components/moderation/ReportDialog/index.tsx:290 8283 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:55 8284 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:58 8285 + #: src/components/StarterPack/ProfileStarterPacks.tsx:374 8286 + #: src/screens/Login/LoginForm.tsx:351 8287 + #: src/screens/Login/LoginForm.tsx:358 8288 + #: src/screens/Messages/ChatList.tsx:293 8289 + #: src/screens/Messages/components/MessageListError.tsx:25 8290 + #: src/screens/Messages/Inbox.tsx:219 8291 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239 8292 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242 8293 + #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:91 8294 + #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:94 8295 + #: src/screens/PostThread/components/ThreadError.tsx:80 8296 + #: src/screens/PostThread/components/ThreadError.tsx:86 8297 + #: src/screens/Signup/BackNextButtons.tsx:53 8298 + #: src/view/com/util/error/ErrorMessage.tsx:60 8299 + #: src/view/com/util/error/ErrorScreen.tsx:99 8300 + #: src/view/screens/Storybook/Admonitions.tsx:63 8301 + msgid "Retry" 8302 + msgstr "" 8303 + 8304 + #: src/components/moderation/ReportDialog/index.tsx:287 8305 + #: src/view/screens/Storybook/Admonitions.tsx:60 8306 + msgid "Retry loading report options" 8307 + msgstr "" 8308 + 8309 + #: src/components/Error.tsx:73 8310 + #: src/screens/List/ListHiddenScreen.tsx:219 8311 + #: src/screens/StarterPack/StarterPackScreen.tsx:772 8312 + msgid "Return to previous page" 8313 + msgstr "" 8314 + 8315 + #: src/view/screens/NotFound.tsx:61 8316 + msgid "Returns to home page" 8317 + msgstr "" 8318 + 8319 + #: src/screens/Profile/ProfileFeed/index.tsx:94 8320 + #: src/screens/ProfileList/components/ErrorScreen.tsx:35 8321 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 8322 + #: src/screens/VideoFeed/index.tsx:1187 8323 + #: src/view/screens/NotFound.tsx:60 8324 + msgid "Returns to previous page" 8325 + msgstr "" 8326 + 8327 + #: src/screens/StarterPack/Wizard/index.tsx:325 8328 + msgid "Returns to the previous step" 8329 + msgstr "" 8330 + 8331 + #: src/components/dialogs/BirthDateSettings.tsx:203 8332 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:295 8333 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:310 8334 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:662 8335 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:667 8336 + #: src/components/live/EditLiveDialog.tsx:202 8337 + #: src/components/live/EditLiveDialog.tsx:209 8338 + #: src/components/StarterPack/QrCodeDialog.tsx:204 8339 + #: src/screens/Profile/Header/EditProfileDialog.tsx:241 8340 + #: src/screens/Profile/Header/EditProfileDialog.tsx:255 8341 + #: src/screens/SavedFeeds.tsx:120 8342 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:269 8343 + #: src/screens/Settings/DeerSettings.tsx:209 8344 + #: src/screens/Settings/DeerSettings.tsx:216 8345 + #: src/view/com/composer/GifAltText.tsx:193 8346 + #: src/view/com/composer/GifAltText.tsx:202 8347 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:65 8348 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:78 8349 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:152 8350 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:162 8351 + msgid "Save" 8352 + msgstr "" 8353 + 8354 + #: src/view/com/lightbox/ImageViewing/index.tsx:614 8355 + msgctxt "action" 8356 + msgid "Save" 8357 + msgstr "" 8358 + 8359 + #: src/components/dialogs/BirthDateSettings.tsx:196 8360 + msgid "Save birthdate" 8361 + msgstr "" 8362 + 8363 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:191 8364 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:200 8365 + #: src/screens/SavedFeeds.tsx:116 8366 + #: src/screens/SavedFeeds.tsx:120 8367 + msgid "Save changes" 8368 + msgstr "" 8369 + 8370 + #: src/components/StarterPack/ShareDialog.tsx:142 8371 + #: src/components/StarterPack/ShareDialog.tsx:148 8372 + msgid "Save image" 8373 + msgstr "" 8374 + 8375 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:255 8376 + msgid "Save new handle" 8377 + msgstr "" 8378 + 8379 + #: src/components/StarterPack/QrCodeDialog.tsx:196 8380 + msgid "Save QR code" 8381 + msgstr "" 8382 + 8383 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:643 8384 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:649 8385 + msgid "Save these options for next time" 8386 + msgstr "" 8387 + 8388 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:323 8389 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:329 8390 + msgid "Save to my feeds" 8391 + msgstr "" 8392 + 8393 + #: src/view/shell/desktop/LeftNav.tsx:775 8394 + #: src/view/shell/Drawer.tsx:589 8395 + msgctxt "link to bookmarks screen" 8396 + msgid "Saved" 8397 + msgstr "" 8398 + 8399 + #: src/screens/SavedFeeds.tsx:184 8400 + msgid "Saved Feeds" 8401 + msgstr "" 8402 + 8403 + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:143 8404 + #: src/Navigation.tsx:647 8405 + #: src/screens/Bookmarks/index.tsx:60 8406 + msgid "Saved Posts" 8407 + msgstr "" 8408 + 8409 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:134 8410 + #: src/screens/ProfileList/components/Header.tsx:88 8411 + msgid "Saved to your feeds" 8412 + msgstr "" 8413 + 8414 + #: src/components/dms/ChatEmptyPill.tsx:36 8415 + #: src/components/NewskieDialog.tsx:139 8416 + #: src/view/com/notifications/NotificationFeedItem.tsx:877 8417 + #: src/view/com/notifications/NotificationFeedItem.tsx:902 8418 + msgid "Say hello!" 8419 + msgstr "" 8420 + 8421 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:43 8422 + msgid "Scam" 8423 + msgstr "" 8424 + 8425 + #: src/lib/interests.ts:71 8426 + msgid "Science" 8427 + msgstr "" 8428 + 8429 + #: src/view/com/posts/PostFeedItemCarousel.tsx:70 8430 + msgid "Scroll carousel left" 8431 + msgstr "" 8432 + 8433 + #: src/view/com/posts/PostFeedItemCarousel.tsx:79 8434 + msgid "Scroll carousel right" 8435 + msgstr "" 8436 + 8437 + #: src/components/InterestTabs.tsx:258 8438 + msgid "Scroll left" 8439 + msgstr "" 8440 + 8441 + #: src/components/InterestTabs.tsx:292 8442 + msgid "Scroll right" 8443 + msgstr "" 8444 + 8445 + #: src/screens/ProfileList/AboutSection.tsx:131 8446 + msgid "Scroll to top" 8447 + msgstr "" 8448 + 8449 + #: src/components/dialogs/SearchablePeopleList.tsx:519 8450 + #: src/components/forms/SearchInput.tsx:37 8451 + #: src/components/forms/SearchInput.tsx:39 8452 + #: src/screens/Search/Shell.tsx:327 8453 + #: src/screens/Search/Shell.tsx:514 8454 + #: src/view/shell/bottom-bar/BottomBar.tsx:202 8455 + msgid "Search" 8456 + msgstr "" 8457 + 8458 + #: src/Navigation.tsx:280 8459 + #: src/screens/Profile/ProfileSearch.tsx:24 8460 + #: src/screens/Profile/ProfileSearch.tsx:40 8461 + msgid "Search @{0}'s posts" 8462 + msgstr "Search @{0}'s skeets" 8463 + 8464 + #: src/components/ProgressGuide/FollowDialog.tsx:663 8465 + msgid "Search by name or interest" 8466 + msgstr "" 8467 + 8468 + #: src/components/contacts/screens/ViewMatches.tsx:353 8469 + msgid "Search contacts" 8470 + msgstr "" 8471 + 8472 + #: src/view/screens/Feeds.tsx:448 8473 + msgid "Search feeds" 8474 + msgstr "" 8475 + 8476 + #. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected. 8477 + #: src/components/ProgressGuide/FollowDialog.tsx:492 8478 + msgid "Search for \"{interestsDisplayName}\"" 8479 + msgstr "" 8480 + 8481 + #. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected. 8482 + #: src/components/ProgressGuide/FollowDialog.tsx:485 8483 + msgid "Search for \"{interestsDisplayName}\" (active)" 8484 + msgstr "" 8485 + 8486 + #: src/view/shell/desktop/Search.tsx:132 8487 + msgid "Search for \"{query}\"" 8488 + msgstr "" 8489 + 8490 + #: src/screens/Search/components/AutocompleteResults.tsx:46 8491 + msgid "Search for \"{searchText}\"" 8492 + msgstr "" 8493 + 8494 + #: src/screens/StarterPack/Wizard/index.tsx:551 8495 + msgid "Search for feeds that you want to suggest to others." 8496 + msgstr "" 8497 + 8498 + #: src/screens/Search/Explore.tsx:362 8499 + msgid "Search for more accounts" 8500 + msgstr "" 8501 + 8502 + #: src/screens/Search/Explore.tsx:439 8503 + msgid "Search for more feeds" 8504 + msgstr "" 8505 + 8506 + #: src/screens/Search/Shell.tsx:354 8507 + msgid "Search for posts, users, or feeds" 8508 + msgstr "Search for skeets, users, or feeds" 8509 + 8510 + #: src/components/dialogs/GifSelect.tsx:170 8511 + msgid "Search GIFs" 8512 + msgstr "" 8513 + 8514 + #: src/screens/Hashtag.tsx:239 8515 + #: src/screens/Search/SearchResults.tsx:294 8516 + msgid "Search is currently unavailable when logged out" 8517 + msgstr "" 8518 + 8519 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:218 8520 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:219 8521 + msgid "Search languages" 8522 + msgstr "" 8523 + 8524 + #: src/screens/Profile/ProfileSearch.tsx:39 8525 + msgid "Search my posts" 8526 + msgstr "Search my skeets" 8527 + 8528 + #: src/view/com/profile/ProfileMenu.tsx:339 8529 + #: src/view/com/profile/ProfileMenu.tsx:342 8530 + msgid "Search posts" 8531 + msgstr "Search skeets" 8532 + 8533 + #: src/components/dialogs/SearchablePeopleList.tsx:539 8534 + #: src/components/ProgressGuide/FollowDialog.tsx:685 8535 + msgid "Search profiles" 8536 + msgstr "" 8537 + 8538 + #: src/components/dialogs/GifSelect.tsx:171 8539 + msgid "Search Tenor" 8540 + msgstr "" 8541 + 8542 + #: src/screens/Profile/ProfileSearch.tsx:41 8543 + msgid "Search..." 8544 + msgstr "" 8545 + 8546 + #: src/components/dialogs/SearchablePeopleList.tsx:540 8547 + #: src/components/ProgressGuide/FollowDialog.tsx:686 8548 + msgid "Searches for profiles" 8549 + msgstr "" 8550 + 8551 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:243 8552 + msgid "Security step required" 8553 + msgstr "" 8554 + 8555 + #: src/components/RichTextTag.tsx:113 8556 + msgid "See {0} posts" 8557 + msgstr "See {0} skeets" 8558 + 8559 + #: src/components/RichTextTag.tsx:130 8560 + msgid "See {0} posts by user" 8561 + msgstr "See {0} skeets by user" 8562 + 8563 + #: src/components/RichTextTag.tsx:121 8564 + msgid "See {tag} posts" 8565 + msgstr "See {tag} skeets" 8566 + 8567 + #: src/components/RichTextTag.tsx:139 8568 + msgid "See {tag} posts by user" 8569 + msgstr "See {tag} skeets by user" 8570 + 8571 + #: src/components/RichTextTag.tsx:123 8572 + msgid "See #{tag} posts" 8573 + msgstr "See #{tag} skeets" 8574 + 8575 + #: src/components/RichTextTag.tsx:141 8576 + msgid "See #{tag} posts by user" 8577 + msgstr "See #{tag} skeets by user" 8578 + 8579 + #: src/components/FeedInterstitials.tsx:737 8580 + #: src/components/FeedInterstitials.tsx:799 8581 + msgid "See more" 8582 + msgstr "" 8583 + 8584 + #: src/components/FeedInterstitials.tsx:719 8585 + msgid "See more suggested profiles" 8586 + msgstr "" 8587 + 8588 + #: src/view/com/profile/ProfileFollows.tsx:192 8589 + #: src/view/com/profile/ProfileFollows.tsx:193 8590 + msgid "See suggested accounts" 8591 + msgstr "" 8592 + 8593 + #: src/screens/SavedFeeds.tsx:220 8594 + msgid "See this guide" 8595 + msgstr "" 8596 + 8597 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:198 8598 + msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" 8599 + msgstr "" 8600 + 8601 + #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. 8602 + #: src/components/InterestTabs.tsx:341 8603 + msgid "Select \"{interestsDisplayName}\" category" 8604 + msgstr "" 8605 + 8606 + #. Accessibility label for a username suggestion in the account creation flow 8607 + #: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 8608 + msgid "Select {0}" 8609 + msgstr "" 8610 + 8611 + #: src/view/com/composer/select-language/PostLanguageSelect.tsx:72 8612 + msgid "Select {langName}" 8613 + msgstr "" 8614 + 8615 + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 8616 + msgid "Select a color" 8617 + msgstr "" 8618 + 8619 + #: src/components/moderation/ReportDialog/index.tsx:375 8620 + msgid "Select a reason" 8621 + msgstr "" 8622 + 8623 + #: src/screens/Login/ChooseAccountForm.tsx:77 8624 + msgid "Select account" 8625 + msgstr "" 8626 + 8627 + #: src/components/AppLanguageDropdown.tsx:61 8628 + msgid "Select an app language" 8629 + msgstr "" 8630 + 8631 + #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 8632 + msgid "Select an avatar" 8633 + msgstr "" 8634 + 8635 + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 8636 + msgid "Select an emoji" 8637 + msgstr "" 8638 + 8639 + #: src/components/Select/index.tsx:199 8640 + msgid "Select an option" 8641 + msgstr "" 8642 + 8643 + #: src/screens/Settings/LanguageSettings.tsx:98 8644 + msgid "Select app language" 8645 + msgstr "" 8646 + 8647 + #: src/screens/Settings/LanguageSettings.tsx:166 8648 + msgid "Select content languages" 8649 + msgstr "" 8650 + 8651 + #: src/components/live/GoLiveDialog.tsx:178 8652 + msgid "Select duration" 8653 + msgstr "" 8654 + 8655 + #: src/screens/Login/index.tsx:206 8656 + msgid "Select from an existing account" 8657 + msgstr "" 8658 + 8659 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:547 8660 + msgid "Select from your lists" 8661 + msgstr "" 8662 + 8663 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:549 8664 + msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}</0>" 8665 + msgstr "" 8666 + 8667 + #: src/view/com/composer/photos/SelectGifBtn.tsx:38 8668 + msgid "Select GIF" 8669 + msgstr "" 8670 + 8671 + #: src/components/dialogs/GifSelect.tsx:297 8672 + msgid "Select GIF \"{0}\"" 8673 + msgstr "" 8674 + 8675 + #: src/components/dialogs/MutedWords.tsx:148 8676 + msgid "Select how long to mute this word for." 8677 + msgstr "" 8678 + 8679 + #: src/components/AppLanguageDropdown.tsx:69 8680 + #: src/components/LanguageSelect.tsx:37 8681 + #: src/components/LanguageSelect.tsx:38 8682 + msgid "Select language" 8683 + msgstr "" 8684 + 8685 + #: src/view/com/composer/videos/SubtitleDialog.tsx:272 8686 + msgid "Select language..." 8687 + msgstr "" 8688 + 8689 + #: src/screens/Settings/LanguageSettings.tsx:180 8690 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:251 8691 + msgid "Select languages" 8692 + msgstr "" 8693 + 8694 + #: src/components/moderation/ReportDialog/index.tsx:425 8695 + msgid "Select moderation service" 8696 + msgstr "" 8697 + 8698 + #: src/view/com/composer/select-language/PostLanguageSelect.tsx:57 8699 + msgid "Select post language" 8700 + msgstr "Select skeet language" 8701 + 8702 + #: src/screens/Settings/LanguageSettings.tsx:132 8703 + msgid "Select primary language" 8704 + msgstr "" 8705 + 8706 + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 8707 + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 8708 + msgid "Select subtitle file (.vtt)" 8709 + msgstr "" 8710 + 8711 + #: src/components/InternationalPhoneCodeSelect.tsx:68 8712 + msgid "Select telephone code" 8713 + msgstr "" 8714 + 8715 + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 8716 + msgid "Select the {emojiName} emoji as your avatar" 8717 + msgstr "" 8718 + 8719 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:197 8720 + msgid "Select up to 3 languages used in this post" 8721 + msgstr "Select up to 3 languages used in this skeet" 8722 + 8723 + #: src/components/dialogs/MutedWords.tsx:248 8724 + msgid "Select what content this mute word should apply to." 8725 + msgstr "" 8726 + 8727 + #: src/screens/Settings/LanguageSettings.tsx:91 8728 + msgid "Select which language to use for the app's user interface." 8729 + msgstr "" 8730 + 8731 + #: src/screens/Settings/LanguageSettings.tsx:159 8732 + msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." 8733 + msgstr "" 8734 + 8735 + #: src/screens/Signup/StepInfo/index.tsx:374 8736 + msgid "Select your date of birth" 8737 + msgstr "" 8738 + 8739 + #: src/screens/Onboarding/StepInterests/index.tsx:67 8740 + #: src/screens/Settings/InterestsSettings.tsx:166 8741 + msgid "Select your interests from the options below" 8742 + msgstr "" 8743 + 8744 + #: src/screens/Settings/DeerSettings.tsx:452 8745 + #: src/screens/Settings/DeerSettings.tsx:458 8746 + msgid "Select your own set of trusted verifiers, and operate as a verifier" 8747 + msgstr "" 8748 + 8749 + #: src/screens/Settings/LanguageSettings.tsx:125 8750 + msgid "Select your preferred language for translations in your feed." 8751 + msgstr "" 8752 + 8753 + #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:113 8754 + msgid "Select your preferred notification channels" 8755 + msgstr "" 8756 + 8757 + #: src/view/com/composer/SelectMediaButton.tsx:397 8758 + msgid "Selecting multiple media types is not supported." 8759 + msgstr "" 8760 + 8761 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:188 8762 + msgid "Self-harm or dangerous behaviors" 8763 + msgstr "" 8764 + 8765 + #: src/components/dms/ChatEmptyPill.tsx:41 8766 + msgid "Send a neat website!" 8767 + msgstr "" 8768 + 8769 + #: src/components/contacts/screens/PhoneInput.tsx:252 8770 + #: src/components/contacts/screens/PhoneInput.tsx:257 8771 + msgid "Send code" 8772 + msgstr "" 8773 + 8774 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:174 8775 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:181 8776 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:302 8777 + #: src/view/com/modals/DeleteAccount.tsx:145 8778 + msgid "Send email" 8779 + msgstr "" 8780 + 8781 + #: src/view/com/modals/DeleteAccount.tsx:158 8782 + msgctxt "action" 8783 + msgid "Send Email" 8784 + msgstr "" 8785 + 8786 + #: src/view/shell/Drawer.tsx:379 8787 + msgid "Send feedback" 8788 + msgstr "" 8789 + 8790 + #: src/screens/Messages/components/MessageInput.tsx:198 8791 + #: src/screens/Messages/components/MessageInput.web.tsx:238 8792 + msgid "Send message" 8793 + msgstr "" 8794 + 8795 + #: src/components/PostControls/ShareMenu/RecentChats.tsx:122 8796 + msgid "Send post to {name}" 8797 + msgstr "Send skeet to {name}" 8798 + 8799 + #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 8800 + msgid "Send post to..." 8801 + msgstr "Send skeet to..." 8802 + 8803 + #: src/components/moderation/ReportDialog/index.tsx:817 8804 + msgid "Send report to {title}" 8805 + msgstr "" 8806 + 8807 + #: src/components/contacts/components/InviteInfo.tsx:62 8808 + msgid "Send the message from your phone" 8809 + msgstr "" 8810 + 8811 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:295 8812 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:120 8813 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:123 8814 + msgid "Send verification email" 8815 + msgstr "" 8816 + 8817 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 8818 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:146 8819 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:163 8820 + #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:169 8821 + msgid "Send via direct message" 8822 + msgstr "" 8823 + 8824 + #: src/view/com/modals/DeleteAccount.tsx:147 8825 + msgid "Sends email with confirmation code for account deletion" 8826 + msgstr "" 8827 + 8828 + #: src/components/contacts/screens/PhoneInput.tsx:280 8829 + msgid "Sent to our phone number verification provider Plivo" 8830 + msgstr "" 8831 + 8832 + #: src/components/dialogs/ServerInput.tsx:141 8833 + msgid "Server address" 8834 + msgstr "" 8835 + 8836 + #: src/screens/Settings/AppIconSettings/index.tsx:178 8837 + msgid "Set app icon to {0}" 8838 + msgstr "" 8839 + 8840 + #: src/screens/Login/SetNewPasswordForm.tsx:106 8841 + msgid "Set new password" 8842 + msgstr "" 8843 + 8844 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:475 8845 + msgid "Set precisely which groups of people can reply to your post" 8846 + msgstr "Set precisely which groups of people can reply to your skeet" 8847 + 8848 + #: src/screens/Onboarding/Layout.tsx:48 8849 + msgid "Set up your account" 8850 + msgstr "" 8851 + 8852 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:425 8853 + msgid "Set who can reply to your post" 8854 + msgstr "Set who can reply to your skeet" 8855 + 8856 + #: src/ageAssurance/components/NoAccessScreen.tsx:220 8857 + msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!" 8858 + msgstr "Set your birthdate below and we'll get you back to skeeting and exploring in no time!" 8859 + 8860 + #: src/screens/Login/ForgotPasswordForm.tsx:107 8861 + msgid "Sets email for password reset" 8862 + msgstr "" 8863 + 8864 + #: src/Navigation.tsx:236 8865 + #: src/screens/Settings/Settings.tsx:107 8866 + #: src/view/shell/desktop/LeftNav.tsx:815 8867 + #: src/view/shell/Drawer.tsx:627 8868 + msgid "Settings" 8869 + msgstr "" 8870 + 8871 + #: src/screens/Settings/NotificationSettings/index.tsx:187 8872 + msgid "Settings for activity from others" 8873 + msgstr "" 8874 + 8875 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:84 8876 + msgid "Settings for allowing others to be notified of your posts" 8877 + msgstr "Settings for allowing others to be notified of your skeets" 8878 + 8879 + #: src/screens/Settings/NotificationSettings/index.tsx:121 8880 + msgid "Settings for like notifications" 8881 + msgstr "" 8882 + 8883 + #: src/screens/Settings/NotificationSettings/index.tsx:154 8884 + msgid "Settings for mention notifications" 8885 + msgstr "" 8886 + 8887 + #: src/screens/Settings/NotificationSettings/index.tsx:132 8888 + msgid "Settings for new follower notifications" 8889 + msgstr "" 8890 + 8891 + #: src/screens/Settings/NotificationSettings/index.tsx:230 8892 + msgid "Settings for notifications for everything else" 8893 + msgstr "" 8894 + 8895 + #: src/screens/Settings/NotificationSettings/index.tsx:201 8896 + msgid "Settings for notifications for likes of your reposts" 8897 + msgstr "Settings for notifications for likes of your reskeets" 8898 + 8899 + #: src/screens/Settings/NotificationSettings/index.tsx:216 8900 + msgid "Settings for notifications for reposts of your reposts" 8901 + msgstr "Settings for notifications for reskeets of your reskeets" 8902 + 8903 + #: src/screens/Settings/NotificationSettings/index.tsx:165 8904 + msgid "Settings for quote notifications" 8905 + msgstr "" 8906 + 8907 + #: src/screens/Settings/NotificationSettings/index.tsx:143 8908 + msgid "Settings for reply notifications" 8909 + msgstr "" 8910 + 8911 + #: src/screens/Settings/NotificationSettings/index.tsx:176 8912 + msgid "Settings for repost notifications" 8913 + msgstr "Settings for reskeet notifications" 8914 + 8915 + #: src/screens/ModerationInteractionSettings/index.tsx:102 8916 + msgctxt "toast" 8917 + msgid "Settings saved" 8918 + msgstr "" 8919 + 8920 + #: src/view/com/composer/labels/LabelsBtn.tsx:168 8921 + msgid "Sexual activity or erotic nudity." 8922 + msgstr "" 8923 + 8924 + #: src/lib/moderation/useGlobalLabelStrings.ts:38 8925 + msgid "Sexually Suggestive" 8926 + msgstr "" 8927 + 8928 + #: src/screens/Settings/AppearanceSettings.tsx:284 8929 + msgid "Shapes" 8930 + msgstr "" 8931 + 8932 + #: src/components/StarterPack/QrCodeDialog.tsx:192 8933 + #: src/screens/Hashtag.tsx:145 8934 + #: src/screens/StarterPack/StarterPackScreen.tsx:434 8935 + #: src/screens/Topic.tsx:106 8936 + msgid "Share" 8937 + msgstr "" 8938 + 8939 + #: src/view/com/lightbox/ImageViewing/index.tsx:623 8940 + msgctxt "action" 8941 + msgid "Share" 8942 + msgstr "" 8943 + 8944 + #: src/components/dms/ChatEmptyPill.tsx:40 8945 + msgid "Share a cool story!" 8946 + msgstr "" 8947 + 8948 + #: src/components/dms/ChatEmptyPill.tsx:39 8949 + msgid "Share a fun fact!" 8950 + msgstr "" 8951 + 8952 + #: src/view/com/profile/ProfileMenu.tsx:641 8953 + msgid "Share anyway" 8954 + msgstr "" 8955 + 8956 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:246 8957 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:249 8958 + msgid "Share author DID" 8959 + msgstr "" 8960 + 8961 + #: src/components/dialogs/LinkWarning.tsx:96 8962 + #: src/components/dialogs/LinkWarning.tsx:104 8963 + #: src/components/StarterPack/ShareDialog.tsx:113 8964 + #: src/components/StarterPack/ShareDialog.tsx:122 8965 + msgid "Share link" 8966 + msgstr "" 8967 + 8968 + #: src/components/StarterPack/ShareDialog.tsx:72 8969 + msgid "Share link dialog" 8970 + msgstr "" 8971 + 8972 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:237 8973 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:240 8974 + msgid "Share post at:// URI" 8975 + msgstr "Share skeet at:// URI" 8976 + 8977 + #: src/components/StarterPack/ShareDialog.tsx:127 8978 + #: src/components/StarterPack/ShareDialog.tsx:137 8979 + msgid "Share QR code" 8980 + msgstr "" 8981 + 8982 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:475 8983 + msgid "Share this feed" 8984 + msgstr "" 8985 + 8986 + #: src/screens/StarterPack/StarterPackScreen.tsx:427 8987 + msgid "Share this starter pack" 8988 + msgstr "" 8989 + 8990 + #: src/components/StarterPack/ShareDialog.tsx:84 8991 + msgid "Share this starter pack and help people join your community on Bluesky." 8992 + msgstr "" 8993 + 8994 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:192 8995 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:195 8996 + #: src/view/com/profile/ProfileMenu.tsx:317 8997 + #: src/view/com/profile/ProfileMenu.tsx:330 8998 + msgid "Share via bsky.app..." 8999 + msgstr "" 9000 + 9001 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:182 9002 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:185 9003 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:168 9004 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:174 9005 + #: src/screens/StarterPack/StarterPackScreen.tsx:616 9006 + #: src/screens/StarterPack/StarterPackScreen.tsx:624 9007 + #: src/view/com/profile/ProfileMenu.tsx:292 9008 + #: src/view/com/profile/ProfileMenu.tsx:305 9009 + msgid "Share via..." 9010 + msgstr "" 9011 + 9012 + #: src/components/contacts/screens/GetContacts.tsx:229 9013 + msgid "Share your contacts to find friends" 9014 + msgstr "" 9015 + 9016 + #: src/components/dms/ChatEmptyPill.tsx:37 9017 + msgid "Share your favorite feed!" 9018 + msgstr "" 9019 + 9020 + #: src/Navigation.tsx:339 9021 + msgid "Shared Preferences Tester" 9022 + msgstr "" 9023 + 9024 + #: src/components/moderation/ContentHider.tsx:208 9025 + #: src/components/moderation/LabelPreference.tsx:142 9026 + #: src/components/moderation/PostHider.tsx:137 9027 + msgid "Show" 9028 + msgstr "" 9029 + 9030 + #: src/screens/Settings/DeerSettings.tsx:430 9031 + #: src/screens/Settings/DeerSettings.tsx:436 9032 + msgid "Show \"Open original post\" and \"Open post in PDSls\" buttons" 9033 + msgstr "Show \"Open original skeet\" and \"Open skeet in PDSls\" buttons" 9034 + 9035 + #: src/components/Post/Embed/ExternalEmbed/Gif.tsx:189 9036 + msgid "Show alt text" 9037 + msgstr "" 9038 + 9039 + #: src/components/moderation/ScreenHider.tsx:181 9040 + #: src/components/moderation/ScreenHider.tsx:184 9041 + #: src/screens/List/ListHiddenScreen.tsx:190 9042 + #: src/screens/VideoFeed/index.tsx:657 9043 + #: src/screens/VideoFeed/index.tsx:663 9044 + msgid "Show anyway" 9045 + msgstr "" 9046 + 9047 + #: src/lib/moderation/useLabelBehaviorDescription.ts:30 9048 + #: src/lib/moderation/useLabelBehaviorDescription.ts:66 9049 + msgid "Show badge" 9050 + msgstr "" 9051 + 9052 + #: src/lib/moderation/useLabelBehaviorDescription.ts:64 9053 + msgid "Show badge and filter from feeds" 9054 + msgstr "" 9055 + 9056 + #: src/components/dialogs/Embed.tsx:129 9057 + msgid "Show customization options" 9058 + msgstr "" 9059 + 9060 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 9061 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 9062 + msgid "Show less like this" 9063 + msgstr "" 9064 + 9065 + #: src/screens/List/ListHiddenScreen.tsx:186 9066 + msgid "Show list anyway" 9067 + msgstr "" 9068 + 9069 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:528 9070 + msgid "Show lists of users to select from" 9071 + msgstr "" 9072 + 9073 + #: src/features/liveEvents/components/LiveEventFeedsSettingsToggle.tsx:27 9074 + #: src/features/liveEvents/components/LiveEventFeedsSettingsToggle.tsx:37 9075 + msgid "Show live events in your Discover Feed" 9076 + msgstr "" 9077 + 9078 + #: src/components/Post/ShowMoreTextButton.tsx:51 9079 + msgid "Show More" 9080 + msgstr "" 9081 + 9082 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 9083 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:812 9084 + msgid "Show more like this" 9085 + msgstr "" 9086 + 9087 + #: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:14 9088 + msgid "Show more replies" 9089 + msgstr "" 9090 + 9091 + #: src/screens/Settings/ThreadPreferences.tsx:98 9092 + msgid "Show post replies in a threaded tree view" 9093 + msgstr "Show skeet replies in a threaded tree view" 9094 + 9095 + #: src/screens/Settings/FollowingFeedPreferences.tsx:107 9096 + #: src/screens/Settings/FollowingFeedPreferences.tsx:117 9097 + msgid "Show quote posts" 9098 + msgstr "Show quote skeets" 9099 + 9100 + #: src/screens/Settings/FollowingFeedPreferences.tsx:71 9101 + #: src/screens/Settings/FollowingFeedPreferences.tsx:81 9102 + msgid "Show replies" 9103 + msgstr "" 9104 + 9105 + #: src/screens/PostThread/components/HeaderDropdown.tsx:47 9106 + msgid "Show replies as" 9107 + msgstr "" 9108 + 9109 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:897 9110 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:907 9111 + msgid "Show reply for everyone" 9112 + msgstr "" 9113 + 9114 + #: src/screens/Settings/FollowingFeedPreferences.tsx:89 9115 + #: src/screens/Settings/FollowingFeedPreferences.tsx:99 9116 + msgid "Show reposts" 9117 + msgstr "Show reskeets" 9118 + 9119 + #: src/screens/Settings/FollowingFeedPreferences.tsx:132 9120 + #: src/screens/Settings/FollowingFeedPreferences.tsx:142 9121 + msgid "Show samples of your saved feeds in your Following feed" 9122 + msgstr "" 9123 + 9124 + #: src/lib/moderation/useLabelBehaviorDescription.ts:61 9125 + msgid "Show warning" 9126 + msgstr "" 9127 + 9128 + #: src/lib/moderation/useLabelBehaviorDescription.ts:59 9129 + msgid "Show warning and filter from feeds" 9130 + msgstr "" 9131 + 9132 + #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 9133 + #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 9134 + msgid "Show when youโ€™re live" 9135 + msgstr "" 9136 + 9137 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:660 9138 + msgid "Shows information about when this post was created" 9139 + msgstr "Shows information about when this skeet was created" 9140 + 9141 + #: src/screens/Settings/Settings.tsx:133 9142 + msgid "Shows other accounts you can switch to" 9143 + msgstr "" 9144 + 9145 + #: src/components/moderation/ContentHider.tsx:160 9146 + #: src/components/moderation/PostHider.tsx:91 9147 + msgid "Shows the content" 9148 + msgstr "" 9149 + 9150 + #: src/components/dialogs/Signin.tsx:97 9151 + #: src/components/dialogs/Signin.tsx:99 9152 + #: src/components/WelcomeModal.tsx:194 9153 + #: src/components/WelcomeModal.tsx:206 9154 + #: src/screens/Hashtag.tsx:243 9155 + #: src/screens/Login/index.tsx:182 9156 + #: src/screens/Login/index.tsx:205 9157 + #: src/screens/Login/LoginForm.tsx:190 9158 + #: src/screens/Search/SearchResults.tsx:298 9159 + #: src/view/com/auth/SplashScreen.tsx:85 9160 + #: src/view/com/auth/SplashScreen.tsx:93 9161 + #: src/view/com/auth/SplashScreen.web.tsx:127 9162 + #: src/view/com/auth/SplashScreen.web.tsx:135 9163 + #: src/view/shell/bottom-bar/BottomBar.tsx:361 9164 + #: src/view/shell/bottom-bar/BottomBar.tsx:366 9165 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:216 9166 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:221 9167 + #: src/view/shell/NavSignupCard.tsx:57 9168 + #: src/view/shell/NavSignupCard.tsx:62 9169 + msgid "Sign in" 9170 + msgstr "" 9171 + 9172 + #: src/components/AccountList.tsx:139 9173 + msgid "Sign in as {0}" 9174 + msgstr "" 9175 + 9176 + #: src/screens/Login/ChooseAccountForm.tsx:81 9177 + msgid "Sign in as..." 9178 + msgstr "" 9179 + 9180 + #: src/screens/Deactivated.tsx:194 9181 + #: src/screens/Deactivated.tsx:200 9182 + msgid "Sign in or create an account" 9183 + msgstr "" 9184 + 9185 + #: src/components/dialogs/Signin.tsx:75 9186 + msgid "Sign in or create your account to join the conversation!" 9187 + msgstr "" 9188 + 9189 + #: src/components/AccountList.tsx:72 9190 + msgid "Sign in to account that is not listed" 9191 + msgstr "" 9192 + 9193 + #: src/components/dialogs/Signin.tsx:46 9194 + msgid "Sign in to Bluesky or create a new account" 9195 + msgstr "" 9196 + 9197 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 9198 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 9199 + msgid "Sign in to view post" 9200 + msgstr "Sign in to view skeet" 9201 + 9202 + #: src/screens/Signup/StepInfo/index.tsx:222 9203 + #: src/screens/Signup/StepInfo/index.tsx:230 9204 + msgid "Sign in with ATmosphere" 9205 + msgstr "" 9206 + 9207 + #: src/screens/Settings/Settings.tsx:280 9208 + #: src/screens/Settings/Settings.tsx:282 9209 + #: src/screens/Settings/Settings.tsx:314 9210 + #: src/screens/SignupQueued.tsx:93 9211 + #: src/screens/SignupQueued.tsx:96 9212 + #: src/screens/Takendown.tsx:88 9213 + #: src/view/shell/desktop/LeftNav.tsx:215 9214 + #: src/view/shell/desktop/LeftNav.tsx:272 9215 + #: src/view/shell/desktop/LeftNav.tsx:275 9216 + msgid "Sign out" 9217 + msgstr "" 9218 + 9219 + #: src/screens/Takendown.tsx:91 9220 + msgid "Sign Out" 9221 + msgstr "" 9222 + 9223 + #: src/screens/Settings/Settings.tsx:311 9224 + #: src/view/shell/desktop/LeftNav.tsx:212 9225 + msgid "Sign out?" 9226 + msgstr "" 9227 + 9228 + #: src/components/moderation/ScreenHider.tsx:100 9229 + #: src/lib/moderation/useGlobalLabelStrings.ts:28 9230 + msgid "Sign-in Required" 9231 + msgstr "" 9232 + 9233 + #: src/lib/hooks/useAccountSwitcher.ts:35 9234 + #: src/screens/Login/ChooseAccountForm.tsx:53 9235 + msgid "Signed in as @{0}" 9236 + msgstr "" 9237 + 9238 + #: src/components/FeedInterstitials.tsx:714 9239 + msgid "Similar accounts" 9240 + msgstr "" 9241 + 9242 + #: src/components/contacts/screens/PhoneInput.tsx:160 9243 + #: src/components/contacts/screens/VerifyNumber.tsx:202 9244 + #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:78 9245 + #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:82 9246 + #: src/screens/Onboarding/StepFinished/index.tsx:294 9247 + #: src/screens/Onboarding/StepFinished/index.tsx:316 9248 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:252 9249 + #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:104 9250 + #: src/screens/StarterPack/Wizard/index.tsx:219 9251 + msgid "Skip" 9252 + msgstr "" 9253 + 9254 + #: src/components/contacts/screens/PhoneInput.tsx:157 9255 + #: src/components/contacts/screens/VerifyNumber.tsx:199 9256 + msgid "Skip contact sharing and continue to the app" 9257 + msgstr "" 9258 + 9259 + #: src/screens/Onboarding/StepFinished/index.tsx:287 9260 + #: src/screens/Onboarding/StepFinished/index.tsx:313 9261 + msgid "Skip introduction and start using your account" 9262 + msgstr "" 9263 + 9264 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:249 9265 + #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101 9266 + msgid "Skip to next step" 9267 + msgstr "" 9268 + 9269 + #: src/screens/Settings/AppearanceSettings.tsx:245 9270 + msgid "Smaller" 9271 + msgstr "" 9272 + 9273 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:96 9274 + msgid "Snoozes the reminder" 9275 + msgstr "" 9276 + 9277 + #: src/components/WelcomeModal.tsx:148 9278 + msgid "Social media if it was good." 9279 + msgstr "" 9280 + 9281 + #: src/lib/interests.ts:58 9282 + msgid "Software Dev" 9283 + msgstr "" 9284 + 9285 + #: src/screens/Settings/DeerSettings.tsx:853 9286 + msgid "Some App Views will default to using an app labeler if you have no labelers, so consider subscribing to at least one labeler if you have issues." 9287 + msgstr "" 9288 + 9289 + #: src/components/verification/VerificationsDialog.tsx:121 9290 + msgid "Some of your verifications are invalid." 9291 + msgstr "" 9292 + 9293 + #: src/components/FeedInterstitials.tsx:877 9294 + msgid "Some other feeds you might like" 9295 + msgstr "" 9296 + 9297 + #: src/components/WhoCanReply.tsx:86 9298 + msgid "Some people can reply" 9299 + msgstr "" 9300 + 9301 + #: src/components/dms/MessageItem.tsx:148 9302 + msgid "Someone reacted {0}" 9303 + msgstr "" 9304 + 9305 + #: src/screens/Messages/components/ChatListItem.tsx:247 9306 + msgid "Someone reacted {0} to {1}" 9307 + msgstr "" 9308 + 9309 + #: src/components/moderation/ReportDialog/index.tsx:96 9310 + msgid "Something wasn't quite right with the data you're trying to report. Please contact support." 9311 + msgstr "" 9312 + 9313 + #: src/screens/Messages/Conversation.tsx:144 9314 + msgid "Something went wrong" 9315 + msgstr "" 9316 + 9317 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:138 9318 + #: src/components/moderation/ReportDialog/index.tsx:282 9319 + #: src/screens/Deactivated.tsx:85 9320 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 9321 + #: src/view/screens/Storybook/Admonitions.tsx:55 9322 + msgid "Something went wrong, please try again" 9323 + msgstr "" 9324 + 9325 + #: src/screens/Moderation/index.tsx:111 9326 + #: src/screens/Profile/Sections/Labels.tsx:183 9327 + msgid "Something went wrong, please try again." 9328 + msgstr "" 9329 + 9330 + #: src/components/Lists.tsx:184 9331 + msgid "Something went wrong!" 9332 + msgstr "" 9333 + 9334 + #: src/screens/PostThread/components/ThreadError.tsx:27 9335 + msgid "Something went wrong. Please try again in a moment." 9336 + msgstr "" 9337 + 9338 + #: src/components/moderation/ReportDialog/index.tsx:236 9339 + msgid "Something went wrong. Please try again." 9340 + msgstr "" 9341 + 9342 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:543 9343 + msgid "Something wrong? Let us know." 9344 + msgstr "" 9345 + 9346 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:204 9347 + msgid "Sorry, we're unable to load account suggestions at this time." 9348 + msgstr "" 9349 + 9350 + #: src/App.native.tsx:131 9351 + #: src/App.web.tsx:104 9352 + msgid "Sorry! Your session expired. Please sign in again." 9353 + msgstr "" 9354 + 9355 + #: src/screens/Settings/ThreadPreferences.tsx:44 9356 + msgid "Sort replies" 9357 + msgstr "" 9358 + 9359 + #: src/screens/Settings/ThreadPreferences.tsx:51 9360 + msgid "Sort replies by" 9361 + msgstr "" 9362 + 9363 + #: src/screens/Settings/ThreadPreferences.tsx:48 9364 + msgid "Sort replies to the same post by:" 9365 + msgstr "Sort replies to the same skeet by:" 9366 + 9367 + #: src/screens/Settings/Settings.tsx:266 9368 + msgid "Source code" 9369 + msgstr "" 9370 + 9371 + #: src/components/moderation/LabelsOnMeDialog.tsx:182 9372 + #: src/components/moderation/ModerationDetailsDialog.tsx:188 9373 + msgid "Source: <0>{sourceName}</0>" 9374 + msgstr "" 9375 + 9376 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 9377 + msgid "Spam" 9378 + msgstr "" 9379 + 9380 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36 9381 + msgid "Spam or other inauthentic behavior or deception" 9382 + msgstr "" 9383 + 9384 + #: src/lib/interests.ts:72 9385 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:234 9386 + msgid "Sports" 9387 + msgstr "" 9388 + 9389 + #: src/components/PostControls/ShareMenu/RecentChats.tsx:208 9390 + msgid "Start a conversation, and it will appear here." 9391 + msgstr "" 9392 + 9393 + #: src/components/dms/dialogs/NewChatDialog.tsx:74 9394 + msgid "Start a new chat" 9395 + msgstr "" 9396 + 9397 + #: src/screens/ProfileList/AboutSection.tsx:103 9398 + #: src/screens/ProfileList/FeedSection.tsx:81 9399 + msgid "Start adding people" 9400 + msgstr "" 9401 + 9402 + #: src/screens/ProfileList/AboutSection.tsx:109 9403 + #: src/screens/ProfileList/FeedSection.tsx:87 9404 + msgid "Start adding people!" 9405 + msgstr "" 9406 + 9407 + #: src/components/dialogs/SearchablePeopleList.tsx:386 9408 + msgid "Start chat with {displayName}" 9409 + msgstr "" 9410 + 9411 + #: src/Navigation.tsx:618 9412 + #: src/Navigation.tsx:623 9413 + #: src/screens/StarterPack/Wizard/index.tsx:210 9414 + msgid "Starter Pack" 9415 + msgstr "" 9416 + 9417 + #: src/components/StarterPack/StarterPackCard.tsx:90 9418 + msgid "Starter pack by {0}" 9419 + msgstr "" 9420 + 9421 + #: src/view/com/profile/ProfileSubpageHeader.tsx:186 9422 + msgid "Starter pack by <0/>" 9423 + msgstr "" 9424 + 9425 + #: src/components/StarterPack/StarterPackCard.tsx:89 9426 + #: src/view/com/profile/ProfileSubpageHeader.tsx:184 9427 + msgid "Starter pack by you" 9428 + msgstr "" 9429 + 9430 + #: src/screens/StarterPack/StarterPackScreen.tsx:736 9431 + msgid "Starter pack is invalid" 9432 + msgstr "" 9433 + 9434 + #: src/screens/Search/Explore.tsx:630 9435 + #: src/view/screens/Profile.tsx:240 9436 + msgid "Starter Packs" 9437 + msgstr "" 9438 + 9439 + #: src/components/StarterPack/ProfileStarterPacks.tsx:294 9440 + msgid "Starter packs let you easily share your favorite feeds and people with your friends." 9441 + msgstr "" 9442 + 9443 + #: src/view/screens/Profile.tsx:553 9444 + msgid "Starter Packs let you share your favorite feeds and people with your friends." 9445 + msgstr "" 9446 + 9447 + #: src/screens/Settings/AboutSettings.tsx:98 9448 + #: src/screens/Settings/AboutSettings.tsx:101 9449 + msgid "Status Page" 9450 + msgstr "" 9451 + 9452 + #: src/screens/Onboarding/Layout.tsx:226 9453 + #: src/screens/Signup/index.tsx:175 9454 + msgid "Step {0} of {1}" 9455 + msgstr "" 9456 + 9457 + #: src/screens/Settings/Settings.tsx:419 9458 + msgid "Storage cleared, you need to restart the app now." 9459 + msgstr "" 9460 + 9461 + #: src/components/contacts/screens/PhoneInput.tsx:291 9462 + msgid "Stored as part of a secure code for matching with others" 9463 + msgstr "" 9464 + 9465 + #: src/Navigation.tsx:329 9466 + #: src/screens/Settings/Settings.tsx:474 9467 + msgid "Storybook" 9468 + msgstr "" 9469 + 9470 + #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 9471 + msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream." 9472 + msgstr "" 9473 + 9474 + #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:117 9475 + #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:123 9476 + #: src/components/live/GoLiveDisabledDialog.tsx:138 9477 + #: src/components/live/GoLiveDisabledDialog.tsx:139 9478 + #: src/components/moderation/LabelsOnMeDialog.tsx:342 9479 + #: src/components/moderation/LabelsOnMeDialog.tsx:343 9480 + #: src/screens/Messages/components/ChatDisabled.tsx:154 9481 + #: src/screens/Messages/components/ChatDisabled.tsx:155 9482 + msgid "Submit" 9483 + msgstr "" 9484 + 9485 + #: src/screens/Takendown.tsx:76 9486 + msgid "Submit appeal" 9487 + msgstr "" 9488 + 9489 + #: src/screens/Takendown.tsx:80 9490 + msgid "Submit Appeal" 9491 + msgstr "" 9492 + 9493 + #: src/components/moderation/ReportDialog/index.tsx:503 9494 + #: src/components/moderation/ReportDialog/index.tsx:564 9495 + #: src/components/moderation/ReportDialog/index.tsx:571 9496 + msgid "Submit report" 9497 + msgstr "" 9498 + 9499 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:84 9500 + msgid "Subscribe" 9501 + msgstr "" 9502 + 9503 + #: src/screens/Profile/Sections/Labels.tsx:230 9504 + msgid "Subscribe to @{0} to use these labels:" 9505 + msgstr "" 9506 + 9507 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:245 9508 + msgid "Subscribe to account activity" 9509 + msgstr "" 9510 + 9511 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:346 9512 + msgid "Subscribe to Labeler" 9513 + msgstr "" 9514 + 9515 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312 9516 + msgid "Subscribe to this labeler" 9517 + msgstr "" 9518 + 9519 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:72 9520 + msgid "Subscribe to this list" 9521 + msgstr "" 9522 + 9523 + #: src/ageAssurance/components/RedirectOverlay.tsx:255 9524 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:158 9525 + msgid "Success" 9526 + msgstr "" 9527 + 9528 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 9529 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 9530 + msgid "Success!" 9531 + msgstr "" 9532 + 9533 + #: src/components/verification/VerificationCreatePrompt.tsx:36 9534 + msgid "Successfully verified" 9535 + msgstr "" 9536 + 9537 + #: src/screens/Search/Explore.tsx:359 9538 + msgid "Suggested Accounts" 9539 + msgstr "" 9540 + 9541 + #. Accounts suggested to the user for them to follow 9542 + #: src/components/FeedInterstitials.tsx:712 9543 + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:155 9544 + msgid "Suggested for you" 9545 + msgstr "" 9546 + 9547 + #: src/view/com/composer/labels/LabelsBtn.tsx:139 9548 + #: src/view/com/composer/labels/LabelsBtn.tsx:142 9549 + msgid "Suggestive" 9550 + msgstr "" 9551 + 9552 + #: src/Navigation.tsx:349 9553 + #: src/view/screens/Support.tsx:34 9554 + #: src/view/screens/Support.tsx:37 9555 + msgid "Support" 9556 + msgstr "" 9557 + 9558 + #: src/components/contacts/screens/PhoneInput.tsx:233 9559 + msgid "Support for this feature in your country has not been enabled yet! Please check back later." 9560 + msgstr "" 9561 + 9562 + #: src/screens/Settings/Settings.tsx:131 9563 + #: src/screens/Settings/Settings.tsx:145 9564 + #: src/screens/Settings/Settings.tsx:634 9565 + #: src/view/shell/desktop/LeftNav.tsx:250 9566 + msgid "Switch account" 9567 + msgstr "" 9568 + 9569 + #: src/components/dialogs/SwitchAccount.tsx:46 9570 + #: src/components/dialogs/SwitchAccount.tsx:49 9571 + msgid "Switch Account" 9572 + msgstr "" 9573 + 9574 + #: src/view/shell/desktop/LeftNav.tsx:113 9575 + msgid "Switch accounts" 9576 + msgstr "" 9577 + 9578 + #: src/view/shell/desktop/LeftNav.tsx:349 9579 + msgid "Switch to {0}" 9580 + msgstr "" 9581 + 9582 + #: src/components/dialogs/Embed.tsx:158 9583 + #: src/components/dialogs/Embed.tsx:160 9584 + #: src/screens/Settings/AppearanceSettings.tsx:137 9585 + #: src/screens/Settings/AppearanceSettings.tsx:228 9586 + msgid "System" 9587 + msgstr "" 9588 + 9589 + #: src/screens/Log.tsx:58 9590 + #: src/screens/Settings/AboutSettings.tsx:105 9591 + #: src/screens/Settings/AboutSettings.tsx:108 9592 + #: src/screens/Settings/Settings.tsx:467 9593 + msgid "System log" 9594 + msgstr "" 9595 + 9596 + #: src/components/dialogs/MutedWords.tsx:288 9597 + msgid "Tags only" 9598 + msgstr "" 9599 + 9600 + #: src/view/com/auth/SplashScreen.web.tsx:174 9601 + msgid "Tangled" 9602 + msgstr "" 9603 + 9604 + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:109 9605 + msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." 9606 + msgstr "" 9607 + 9608 + #: src/view/com/feeds/MissingFeed.tsx:89 9609 + msgid "Tap for information" 9610 + msgstr "" 9611 + 9612 + #: src/view/com/feeds/MissingFeed.tsx:44 9613 + msgid "Tap for more information" 9614 + msgstr "" 9615 + 9616 + #: src/screens/Signup/StepInfo/index.tsx:408 9617 + msgid "Tap here to confirm your location with GPS." 9618 + msgstr "" 9619 + 9620 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:164 9621 + msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" 9622 + msgstr "" 9623 + 9624 + #: src/components/ContextMenu/Backdrop.ios.tsx:54 9625 + #: src/components/ContextMenu/Backdrop.ios.tsx:80 9626 + #: src/components/ContextMenu/Backdrop.tsx:46 9627 + msgid "Tap to close context menu" 9628 + msgstr "" 9629 + 9630 + #: src/components/ProgressGuide/Toast.tsx:156 9631 + msgid "Tap to dismiss" 9632 + msgstr "" 9633 + 9634 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 9635 + msgid "Targeted harassment" 9636 + msgstr "" 9637 + 9638 + #: src/state/shell/progress-guide.tsx:235 9639 + msgid "Task complete - 10 follows!" 9640 + msgstr "" 9641 + 9642 + #: src/state/shell/progress-guide.tsx:225 9643 + msgid "Task complete - 10 likes!" 9644 + msgstr "" 9645 + 9646 + #: src/components/ProgressGuide/List.tsx:97 9647 + msgid "Teach our algorithm what you like" 9648 + msgstr "" 9649 + 9650 + #: src/lib/interests.ts:73 9651 + msgid "Tech" 9652 + msgstr "" 9653 + 9654 + #: src/components/dms/ChatEmptyPill.tsx:38 9655 + msgid "Tell a joke!" 9656 + msgstr "" 9657 + 9658 + #: src/screens/Profile/Header/EditProfileDialog.tsx:377 9659 + msgid "Tell us a bit about yourself" 9660 + msgstr "" 9661 + 9662 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:69 9663 + msgid "Tell us a little more" 9664 + msgstr "" 9665 + 9666 + #: src/view/shell/desktop/RightNav.tsx:123 9667 + #: src/view/shell/desktop/RightNav.tsx:124 9668 + msgid "Terms" 9669 + msgstr "" 9670 + 9671 + #: src/components/dialogs/BirthDateSettings.tsx:182 9672 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:30 9673 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:97 9674 + #: src/Navigation.tsx:359 9675 + #: src/screens/Settings/AboutSettings.tsx:82 9676 + #: src/screens/Settings/AboutSettings.tsx:85 9677 + #: src/view/screens/TermsOfService.tsx:34 9678 + #: src/view/shell/Drawer.tsx:716 9679 + #: src/view/shell/Drawer.tsx:718 9680 + msgid "Terms of Service" 9681 + msgstr "" 9682 + 9683 + #: src/components/dialogs/MutedWords.tsx:272 9684 + msgid "Text & tags" 9685 + msgstr "" 9686 + 9687 + #: src/components/live/GoLiveDisabledDialog.tsx:121 9688 + #: src/components/moderation/LabelsOnMeDialog.tsx:306 9689 + #: src/screens/Messages/components/ChatDisabled.tsx:120 9690 + msgid "Text input field" 9691 + msgstr "" 9692 + 9693 + #: src/view/com/posts/ShowLessFollowup.tsx:39 9694 + msgid "Thank you for your feedback! It has been sent to the feed operator." 9695 + msgstr "" 9696 + 9697 + #: src/components/intents/VerifyEmailIntentDialog.tsx:76 9698 + msgid "Thanks, you have successfully verified your email address. You can close this dialog." 9699 + msgstr "" 9700 + 9701 + #: src/ageAssurance/components/NoAccessScreen.tsx:394 9702 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:121 9703 + msgid "Thanks! You're all set." 9704 + msgstr "" 9705 + 9706 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:500 9707 + msgid "That contains the following:" 9708 + msgstr "" 9709 + 9710 + #: src/screens/StarterPack/StarterPackScreen.tsx:111 9711 + #: src/screens/StarterPack/StarterPackScreen.tsx:112 9712 + #: src/screens/StarterPack/StarterPackScreen.tsx:156 9713 + #: src/screens/StarterPack/StarterPackScreen.tsx:157 9714 + #: src/screens/StarterPack/Wizard/index.tsx:118 9715 + #: src/screens/StarterPack/Wizard/index.tsx:128 9716 + msgid "That starter pack could not be found." 9717 + msgstr "" 9718 + 9719 + #: src/screens/Signup/StepHandle/index.tsx:77 9720 + msgid "That username is already taken" 9721 + msgstr "" 9722 + 9723 + #: src/view/com/post-thread/PostQuotes.tsx:135 9724 + msgid "That's all, folks!" 9725 + msgstr "" 9726 + 9727 + #: src/screens/VideoFeed/index.tsx:1159 9728 + msgid "That's everything!" 9729 + msgstr "" 9730 + 9731 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:191 9732 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 9733 + #: src/view/com/profile/ProfileMenu.tsx:617 9734 + msgid "The account will be able to interact with you after unblocking." 9735 + msgstr "" 9736 + 9737 + #: src/screens/Settings/AppIconSettings/index.tsx:41 9738 + #: src/screens/Settings/AppIconSettings/index.tsx:227 9739 + msgid "The app will be restarted" 9740 + msgstr "" 9741 + 9742 + #: src/screens/Signup/index.tsx:185 9743 + msgid "The ATmosphere โœจ" 9744 + msgstr "" 9745 + 9746 + #: src/components/moderation/ModerationDetailsDialog.tsx:121 9747 + #: src/lib/moderation/useModerationCauseDescription.ts:129 9748 + msgid "The author of this thread has hidden this reply." 9749 + msgstr "" 9750 + 9751 + #: src/components/dialogs/BirthDateSettings.tsx:169 9752 + msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you." 9753 + msgstr "" 9754 + 9755 + #: src/screens/Moderation/index.tsx:397 9756 + msgid "The Bluesky web application" 9757 + msgstr "" 9758 + 9759 + #: src/view/screens/CommunityGuidelines.tsx:41 9760 + msgid "The Community Guidelines have been moved to <0/>" 9761 + msgstr "" 9762 + 9763 + #: src/view/screens/CopyrightPolicy.tsx:38 9764 + msgid "The Copyright Policy has been moved to <0/>" 9765 + msgstr "" 9766 + 9767 + #: src/view/com/posts/FeedShutdownMsg.tsx:102 9768 + msgid "The Discover feed" 9769 + msgstr "" 9770 + 9771 + #: src/state/shell/progress-guide.tsx:226 9772 + msgid "The Discover feed now knows what you like" 9773 + msgstr "" 9774 + 9775 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:332 9776 + msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." 9777 + msgstr "" 9778 + 9779 + #: src/view/com/posts/FeedShutdownMsg.tsx:67 9780 + msgid "The feed has been replaced with Discover." 9781 + msgstr "" 9782 + 9783 + #: src/components/moderation/LabelsOnMeDialog.tsx:63 9784 + msgid "The following labels were applied to your account." 9785 + msgstr "" 9786 + 9787 + #: src/components/moderation/LabelsOnMeDialog.tsx:64 9788 + msgid "The following labels were applied to your content." 9789 + msgstr "" 9790 + 9791 + #: src/components/live/GoLiveDialog.tsx:160 9792 + msgid "The following services are enabled for your account: {allowedServices}" 9793 + msgstr "" 9794 + 9795 + #: src/screens/ModerationInteractionSettings/index.tsx:42 9796 + msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." 9797 + msgstr "The following settings will be used as your defaults when creating new skeets. You can edit these for a specific skeet from the composer." 9798 + 9799 + #: src/components/ageAssurance/useAgeAssuranceCopy.ts:14 9800 + msgid "The laws in your location require you to verify you're an adult to access certain features. Tap to learn more." 9801 + msgstr "" 9802 + 9803 + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:119 9804 + msgid "The post you're replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}</0>?" 9805 + msgstr "The skeet you're replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}</0>?" 9806 + 9807 + #: src/view/screens/PrivacyPolicy.tsx:38 9808 + msgid "The Privacy Policy has been moved to <0/>" 9809 + msgstr "" 9810 + 9811 + #: src/view/com/composer/state/video.ts:431 9812 + #: src/view/com/composer/state/video.ts:470 9813 + msgid "The selected video is larger than 100ย MB. Please try again with a smaller file." 9814 + msgstr "" 9815 + 9816 + #: src/lib/hooks/useCleanError.ts:40 9817 + #: src/lib/strings/errors.ts:19 9818 + msgid "The server appears to be experiencing issues. Please try again in a few moments." 9819 + msgstr "" 9820 + 9821 + #: src/screens/StarterPack/StarterPackScreen.tsx:746 9822 + msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." 9823 + msgstr "" 9824 + 9825 + #: src/components/ContextMenu/index.tsx:435 9826 + msgid "The subject of the context menu" 9827 + msgstr "" 9828 + 9829 + #: src/view/screens/Support.tsx:40 9830 + msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." 9831 + msgstr "" 9832 + 9833 + #: src/view/screens/TermsOfService.tsx:38 9834 + msgid "The Terms of Service have been moved to" 9835 + msgstr "" 9836 + 9837 + #: src/components/intents/VerifyEmailIntentDialog.tsx:88 9838 + msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." 9839 + msgstr "" 9840 + 9841 + #: src/components/contacts/screens/PhoneInput.tsx:112 9842 + #: src/components/contacts/screens/VerifyNumber.tsx:110 9843 + #: src/components/contacts/screens/VerifyNumber.tsx:162 9844 + msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." 9845 + msgstr "" 9846 + 9847 + #: src/screens/Settings/AppearanceSettings.tsx:232 9848 + msgid "Theme" 9849 + msgstr "" 9850 + 9851 + #: src/components/dialogs/BirthDateSettings.tsx:104 9852 + msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again." 9853 + msgstr "" 9854 + 9855 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 9856 + msgid "There is no time limit for account deactivation, come back any time." 9857 + msgstr "" 9858 + 9859 + #: src/components/contacts/screens/GetContacts.tsx:144 9860 + msgid "There was a problem with your internet connection, please try again" 9861 + msgstr "" 9862 + 9863 + #: src/components/dialogs/GifSelect.tsx:217 9864 + msgid "There was an issue connecting to Tenor." 9865 + msgstr "" 9866 + 9867 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:180 9868 + #: src/screens/ProfileList/components/Header.tsx:91 9869 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 9870 + #: src/screens/SavedFeeds.tsx:97 9871 + msgid "There was an issue contacting the server" 9872 + msgstr "" 9873 + 9874 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:423 9875 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 9876 + msgid "There was an issue contacting the server, please check your internet connection and try again." 9877 + msgstr "" 9878 + 9879 + #: src/view/com/notifications/NotificationFeed.tsx:135 9880 + msgid "There was an issue fetching notifications. Tap here to try again." 9881 + msgstr "" 9882 + 9883 + #: src/screens/Search/Explore.tsx:999 9884 + #: src/view/com/posts/PostFeed.tsx:869 9885 + msgid "There was an issue fetching posts. Tap here to try again." 9886 + msgstr "There was an issue fetching skeets. Tap here to try again." 9887 + 9888 + #: src/view/com/lists/ListMembers.tsx:158 9889 + msgid "There was an issue fetching the list. Tap here to try again." 9890 + msgstr "" 9891 + 9892 + #: src/screens/Settings/AppPasswords.tsx:59 9893 + msgid "There was an issue fetching your app passwords" 9894 + msgstr "" 9895 + 9896 + #: src/view/com/feeds/ProfileFeedgens.tsx:185 9897 + #: src/view/com/lists/ProfileLists.tsx:184 9898 + msgid "There was an issue fetching your lists. Tap here to try again." 9899 + msgstr "" 9900 + 9901 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:109 9902 + msgid "There was an issue fetching your service info" 9903 + msgstr "" 9904 + 9905 + #: src/view/com/posts/PostFeedErrorMessage.tsx:152 9906 + msgid "There was an issue removing this feed. Please check your internet connection and try again." 9907 + msgstr "" 9908 + 9909 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:140 9910 + #: src/view/com/posts/FeedShutdownMsg.tsx:52 9911 + #: src/view/com/posts/FeedShutdownMsg.tsx:71 9912 + msgid "There was an issue updating your feeds, please check your internet connection and try again." 9913 + msgstr "" 9914 + 9915 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:653 9916 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:666 9917 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:676 9918 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:107 9919 + #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:118 9920 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:89 9921 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:258 9922 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:284 9923 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 9924 + #: src/view/com/profile/ProfileMenu.tsx:166 9925 + #: src/view/com/profile/ProfileMenu.tsx:176 9926 + #: src/view/com/profile/ProfileMenu.tsx:190 9927 + #: src/view/com/profile/ProfileMenu.tsx:200 9928 + #: src/view/com/profile/ProfileMenu.tsx:213 9929 + #: src/view/com/profile/ProfileMenu.tsx:225 9930 + msgid "There was an issue! {0}" 9931 + msgstr "" 9932 + 9933 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:238 9934 + #: src/screens/List/ListHiddenScreen.tsx:63 9935 + #: src/screens/List/ListHiddenScreen.tsx:77 9936 + #: src/screens/List/ListHiddenScreen.tsx:99 9937 + #: src/screens/ProfileList/components/Header.tsx:110 9938 + #: src/screens/ProfileList/components/Header.tsx:128 9939 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:125 9940 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:143 9941 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:43 9942 + #: src/screens/ProfileList/components/SubscribeMenu.tsx:62 9943 + msgid "There was an issue. Please check your internet connection and try again." 9944 + msgstr "" 9945 + 9946 + #: src/components/dialogs/GifSelect.tsx:261 9947 + #: src/view/com/composer/select-language/PostLanguageSelectDialog.tsx:328 9948 + #: src/view/com/util/ErrorBoundary.tsx:59 9949 + msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" 9950 + msgstr "" 9951 + 9952 + #: src/screens/SignupQueued.tsx:130 9953 + msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." 9954 + msgstr "" 9955 + 9956 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:654 9957 + msgid "These are your default settings" 9958 + msgstr "" 9959 + 9960 + #: src/screens/Settings/DeerSettings.tsx:821 9961 + msgid "These settings might summon nasal demons! Restart the app after changing if anything breaks." 9962 + msgstr "" 9963 + 9964 + #: src/screens/Settings/FollowingFeedPreferences.tsx:65 9965 + msgid "These settings only apply to the Following feed." 9966 + msgstr "" 9967 + 9968 + #: src/components/moderation/ScreenHider.tsx:120 9969 + msgid "This {screenDescription} has been flagged:" 9970 + msgstr "" 9971 + 9972 + #: src/components/verification/VerificationsDialog.tsx:88 9973 + msgid "This account has a checkmark because it's been verified by trusted sources." 9974 + msgstr "" 9975 + 9976 + #: src/components/verification/VerificationsDialog.tsx:93 9977 + msgid "This account has one or more attempted verifications, but it is not currently verified." 9978 + msgstr "" 9979 + 9980 + #: src/components/moderation/ScreenHider.tsx:115 9981 + msgid "This account has requested that users sign in to view their profile." 9982 + msgstr "" 9983 + 9984 + #: src/components/dms/BlockedByListDialog.tsx:34 9985 + msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." 9986 + msgstr "" 9987 + 9988 + #: src/components/verification/VerificationCreatePrompt.tsx:55 9989 + msgid "This action can be undone at any time." 9990 + msgstr "" 9991 + 9992 + #: src/components/moderation/LabelsOnMeDialog.tsx:284 9993 + msgid "This appeal will be sent to <0>{sourceName}</0>." 9994 + msgstr "" 9995 + 9996 + #: src/components/live/GoLiveDisabledDialog.tsx:113 9997 + #: src/screens/Messages/components/ChatDisabled.tsx:116 9998 + msgid "This appeal will be sent to Bluesky's moderation service." 9999 + msgstr "" 10000 + 10001 + #: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 10002 + #: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 10003 + msgid "This author has chosen to make their posts visible only to people who are signed in." 10004 + msgstr "This author has chosen to make their skeets visible only to people who are signed in." 10005 + 10006 + #: src/screens/Messages/components/MessageListError.tsx:18 10007 + msgid "This chat was disconnected" 10008 + msgstr "" 10009 + 10010 + #: src/components/contacts/screens/VerifyNumber.tsx:103 10011 + msgid "This code is invalid. Resend to get a new code." 10012 + msgstr "" 10013 + 10014 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:144 10015 + msgid "This confirmation code is not valid. Please try again." 10016 + msgstr "" 10017 + 10018 + #: src/lib/moderation/useGlobalLabelStrings.ts:19 10019 + msgid "This content has been hidden by the moderators." 10020 + msgstr "" 10021 + 10022 + #: src/lib/moderation/useGlobalLabelStrings.ts:24 10023 + msgid "This content has received a general warning from moderators." 10024 + msgstr "" 10025 + 10026 + #: src/components/dialogs/EmbedConsent.tsx:63 10027 + msgid "This content is hosted by {0}. Do you want to enable external media?" 10028 + msgstr "" 10029 + 10030 + #: src/components/moderation/ModerationDetailsDialog.tsx:86 10031 + #: src/lib/moderation/useModerationCauseDescription.ts:85 10032 + msgid "This content is not available because one of the users involved has blocked the other." 10033 + msgstr "" 10034 + 10035 + #: src/view/com/posts/PostFeedErrorMessage.tsx:121 10036 + msgid "This content is not viewable without a Bluesky account." 10037 + msgstr "" 10038 + 10039 + #: src/screens/Messages/components/ChatListItem.tsx:369 10040 + msgid "This conversation is with a deleted or a deactivated account. Press for options" 10041 + msgstr "" 10042 + 10043 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:156 10044 + msgid "This email is already associated with your account." 10045 + msgstr "" 10046 + 10047 + #: src/screens/Settings/ActivityPrivacySettings.tsx:55 10048 + msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" 10049 + msgstr "" 10050 + 10051 + #: src/screens/Settings/components/ExportCarDialog.tsx:96 10052 + msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost</0>." 10053 + msgstr "" 10054 + 10055 + #: src/lib/hooks/useCleanError.ts:64 10056 + msgid "This feature is not available while using an app password. Please sign in with your main password." 10057 + msgstr "" 10058 + 10059 + #: src/lib/strings/errors.ts:31 10060 + msgid "This feature is not available while using an App Password. Please sign in with your main password." 10061 + msgstr "" 10062 + 10063 + #: src/view/com/posts/PostFeedErrorMessage.tsx:127 10064 + msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." 10065 + msgstr "" 10066 + 10067 + #: src/view/com/posts/CustomFeedEmptyState.tsx:61 10068 + msgid "This feed is empty! You may need to follow more users or tune your language settings." 10069 + msgstr "" 10070 + 10071 + #: src/components/StarterPack/Main/PostsList.tsx:41 10072 + #: src/screens/Profile/ProfileFeed/index.tsx:197 10073 + #: src/screens/ProfileList/FeedSection.tsx:77 10074 + msgid "This feed is empty." 10075 + msgstr "" 10076 + 10077 + #: src/view/com/posts/FeedShutdownMsg.tsx:99 10078 + msgid "This feed is no longer online. We are showing <0>Discover</0> instead." 10079 + msgstr "" 10080 + 10081 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 10082 + msgid "This handle is reserved. Please try a different one." 10083 + msgstr "" 10084 + 10085 + #: src/components/dialogs/BirthDateSettings.tsx:55 10086 + msgid "This information is private and not shared with other users." 10087 + msgstr "" 10088 + 10089 + #: src/view/screens/Debug.tsx:343 10090 + msgid "This is an empty state" 10091 + msgstr "" 10092 + 10093 + #: src/components/live/EditLiveDialog.tsx:176 10094 + #: src/components/live/GoLiveDialog.tsx:153 10095 + msgid "This is not a valid link" 10096 + msgstr "" 10097 + 10098 + #: src/components/moderation/ModerationDetailsDialog.tsx:170 10099 + msgid "This label was applied by the author." 10100 + msgstr "" 10101 + 10102 + #: src/components/moderation/LabelsOnMeDialog.tsx:169 10103 + msgid "This label was applied by you." 10104 + msgstr "" 10105 + 10106 + #: src/screens/Profile/Sections/Labels.tsx:217 10107 + msgid "This labeler hasn't declared what labels it publishes, and may not be active." 10108 + msgstr "" 10109 + 10110 + #: src/components/dialogs/LinkWarning.tsx:79 10111 + msgid "This link is taking you to the following website:" 10112 + msgstr "" 10113 + 10114 + #: src/screens/List/ListHiddenScreen.tsx:151 10115 + msgid "This list โ€“ created by <0>{0}</0> โ€“ contains possible violations of Bluesky's community guidelines in its name or description." 10116 + msgstr "" 10117 + 10118 + #: src/screens/List/ListHiddenScreen.tsx:146 10119 + msgid "This list โ€“ created by you โ€“ contains possible violations of Bluesky's community guidelines in its name or description." 10120 + msgstr "" 10121 + 10122 + #: src/screens/ProfileList/AboutSection.tsx:99 10123 + msgid "This list is empty." 10124 + msgstr "" 10125 + 10126 + #: src/screens/Profile/ErrorState.tsx:40 10127 + msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." 10128 + msgstr "" 10129 + 10130 + #: src/screens/Settings/DeerSettings.tsx:670 10131 + msgid "" 10132 + "This only gets rid of the reminder on app launch, useful if your PDS does not have email verification setup.\n" 10133 + "This does NOT give access to features locked behind email verification." 10134 + msgstr "" 10135 + 10136 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:700 10137 + msgid "This post claims to have been created on <0>{0}</0>, but was first seen by Bluesky on <1>{1}</1>." 10138 + msgstr "This skeet claims to have been created on <0>{0}</0>, but was first seen by Bluesky on <1>{1}</1>." 10139 + 10140 + #: src/components/WhoCanReply.tsx:272 10141 + msgid "This post has an unknown type of threadgate on it. Your app may be out of date." 10142 + msgstr "This skeet has an unknown type of threadgate on it. Your app may be out of date." 10143 + 10144 + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:227 10145 + msgid "This post is only visible to logged-in users." 10146 + msgstr "This skeet is only visible to logged-in users." 10147 + 10148 + #: src/screens/Bookmarks/index.tsx:256 10149 + msgid "This post was deleted by its author" 10150 + msgstr "This skeet was deleted by its author" 10151 + 10152 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1047 10153 + msgid "This post will be hidden from feeds and threads. This cannot be undone." 10154 + msgstr "This skeet will be hidden from feeds and threads. This cannot be undone." 10155 + 10156 + #: src/view/com/composer/Composer.tsx:516 10157 + msgid "This post's author has disabled quote posts." 10158 + msgstr "This skeet's author has disabled quote skeets." 10159 + 10160 + #: src/view/com/profile/ProfileMenu.tsx:638 10161 + msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." 10162 + msgstr "" 10163 + 10164 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1082 10165 + msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." 10166 + msgstr "" 10167 + 10168 + #: src/screens/Signup/StepInfo/Policies.tsx:31 10169 + msgid "This service has not provided terms of service or a privacy policy." 10170 + msgstr "" 10171 + 10172 + #: src/components/live/queries.ts:38 10173 + msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." 10174 + msgstr "" 10175 + 10176 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:469 10177 + msgid "This should create a domain record at:" 10178 + msgstr "" 10179 + 10180 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:213 10181 + msgid "This should only take a few minutes." 10182 + msgstr "" 10183 + 10184 + #: src/components/verification/VerificationCreatePrompt.tsx:93 10185 + msgid "This user does not have a display name, and therefore cannot be verified." 10186 + msgstr "" 10187 + 10188 + #: src/view/com/profile/ProfileFollowers.tsx:172 10189 + msgid "This user doesn't have any followers." 10190 + msgstr "" 10191 + 10192 + #: src/components/dms/MessagesListBlockedFooter.tsx:68 10193 + msgid "This user has blocked you" 10194 + msgstr "" 10195 + 10196 + #: src/components/moderation/ModerationDetailsDialog.tsx:81 10197 + #: src/lib/moderation/useModerationCauseDescription.ts:76 10198 + msgid "This user has blocked you. You cannot view their content." 10199 + msgstr "" 10200 + 10201 + #: src/lib/moderation/useGlobalLabelStrings.ts:30 10202 + msgid "This user has requested that their content only be shown to signed-in users." 10203 + msgstr "" 10204 + 10205 + #: src/components/moderation/ModerationDetailsDialog.tsx:61 10206 + msgid "This user is included in the <0>{0}</0> list which you have blocked." 10207 + msgstr "" 10208 + 10209 + #: src/components/moderation/ModerationDetailsDialog.tsx:93 10210 + msgid "This user is included in the <0>{0}</0> list which you have muted." 10211 + msgstr "" 10212 + 10213 + #: src/components/NewskieDialog.tsx:47 10214 + msgid "This user is new here. Press for more info about when they joined." 10215 + msgstr "" 10216 + 10217 + #: src/view/com/profile/ProfileFollows.tsx:184 10218 + msgid "This user isn't following anyone." 10219 + msgstr "" 10220 + 10221 + #: src/components/dialogs/MutedWords.tsx:443 10222 + msgid "This will delete \"{0}\" from your muted words. You can always add it back later." 10223 + msgstr "" 10224 + 10225 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:703 10226 + msgid "This will delete the original post and open the composer with its content." 10227 + msgstr "This will delete the original skeet and open the composer with its content." 10228 + 10229 + #: src/screens/Settings/Settings.tsx:688 10230 + msgid "This will remove @{0} from the quick access list." 10231 + msgstr "" 10232 + 10233 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1072 10234 + msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." 10235 + msgstr "This will remove your skeet from this quote skeet for all users, and replace it with a placeholder." 10236 + 10237 + #: src/screens/PostThread/components/HeaderDropdown.tsx:27 10238 + #: src/screens/PostThread/components/HeaderDropdown.tsx:30 10239 + msgid "Thread options" 10240 + msgstr "" 10241 + 10242 + #: src/screens/Settings/ContentAndMediaSettings.tsx:69 10243 + #: src/screens/Settings/ContentAndMediaSettings.tsx:72 10244 + msgid "Thread preferences" 10245 + msgstr "" 10246 + 10247 + #: src/screens/Settings/ThreadPreferences.tsx:34 10248 + msgid "Thread Preferences" 10249 + msgstr "" 10250 + 10251 + #: src/screens/PostThread/components/HeaderDropdown.tsx:61 10252 + #: src/screens/PostThread/components/HeaderDropdown.tsx:66 10253 + msgid "Threaded" 10254 + msgstr "" 10255 + 10256 + #: src/Navigation.tsx:392 10257 + msgid "Threads Preferences" 10258 + msgstr "" 10259 + 10260 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134 10261 + msgid "Threats or incitement" 10262 + msgstr "" 10263 + 10264 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 10265 + msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" 10266 + msgstr "" 10267 + 10268 + #: src/screens/Settings/components/DisableEmail2FADialog.tsx:99 10269 + msgid "To disable the email 2FA method, please verify your access to the email address." 10270 + msgstr "" 10271 + 10272 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:164 10273 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:215 10274 + msgid "To disable your email 2FA method, please verify your access to <0>{0}</0>" 10275 + msgstr "" 10276 + 10277 + #: src/ageAssurance/components/NoAccessScreen.tsx:242 10278 + msgid "To log out, <0>click here</0>." 10279 + msgstr "" 10280 + 10281 + #: src/components/dms/ReportConversationPrompt.tsx:19 10282 + msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." 10283 + msgstr "" 10284 + 10285 + #: src/components/dms/DateDivider.tsx:44 10286 + msgid "Today" 10287 + msgstr "" 10288 + 10289 + #: src/screens/Moderation/index.tsx:374 10290 + msgid "Toggle to enable or disable adult content" 10291 + msgstr "" 10292 + 10293 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 10294 + msgid "Toggles the sound" 10295 + msgstr "" 10296 + 10297 + #: src/components/contacts/screens/VerifyNumber.tsx:120 10298 + msgid "Too many attempts. Please wait a few minutes and try again." 10299 + msgstr "" 10300 + 10301 + #: src/components/contacts/screens/VerifyNumber.tsx:173 10302 + msgid "Too many codes sent. Please wait a few minutes and try again." 10303 + msgstr "" 10304 + 10305 + #: src/components/contacts/screens/GetContacts.tsx:153 10306 + msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends" 10307 + msgstr "" 10308 + 10309 + #: src/screens/Hashtag.tsx:103 10310 + #: src/screens/Search/SearchResults.tsx:52 10311 + #: src/screens/Topic.tsx:75 10312 + msgid "Top" 10313 + msgstr "" 10314 + 10315 + #: src/screens/PostThread/components/HeaderDropdown.tsx:77 10316 + #: src/screens/PostThread/components/HeaderDropdown.tsx:82 10317 + #: src/screens/Settings/ThreadPreferences.tsx:56 10318 + #: src/screens/Settings/ThreadPreferences.tsx:59 10319 + msgid "Top replies first" 10320 + msgstr "" 10321 + 10322 + #: src/Navigation.tsx:583 10323 + msgid "Topic" 10324 + msgstr "" 10325 + 10326 + #: src/components/dms/MessageContextMenu.tsx:139 10327 + #: src/components/dms/MessageContextMenu.tsx:141 10328 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:779 10329 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 10330 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:621 10331 + #: src/screens/PostThread/components/ThreadItemAnchor.tsx:624 10332 + msgid "Translate" 10333 + msgstr "" 10334 + 10335 + #: src/screens/Settings/ThreadPreferences.tsx:86 10336 + #: src/screens/Settings/ThreadPreferences.tsx:91 10337 + msgid "Tree view" 10338 + msgstr "" 10339 + 10340 + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:51 10341 + msgid "Trending" 10342 + msgstr "" 10343 + 10344 + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:58 10345 + msgid "Trending options" 10346 + msgstr "" 10347 + 10348 + #: src/components/interstitials/TrendingVideos.tsx:87 10349 + msgid "Trending Videos" 10350 + msgstr "" 10351 + 10352 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 10353 + msgid "Trolling" 10354 + msgstr "" 10355 + 10356 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:141 10357 + msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers</0>: organizations that can directly issue verification." 10358 + msgstr "" 10359 + 10360 + #: src/view/com/profile/ProfileMenu.tsx:420 10361 + #: src/view/com/profile/ProfileMenu.tsx:423 10362 + msgid "Trust verifier" 10363 + msgstr "" 10364 + 10365 + #: src/screens/Settings/DeerSettings.tsx:238 10366 + #: src/screens/Settings/DeerSettings.tsx:241 10367 + #: src/screens/Settings/DeerSettings.tsx:483 10368 + msgid "Trusted Verifiers" 10369 + msgstr "" 10370 + 10371 + #: src/screens/Search/SearchResults.tsx:178 10372 + msgctxt "english-only-resource" 10373 + msgid "Try a different search term, or <0>read about how to use search filters</0>." 10374 + msgstr "" 10375 + 10376 + #: src/view/com/util/error/ErrorScreen.tsx:105 10377 + msgctxt "action" 10378 + msgid "Try again" 10379 + msgstr "" 10380 + 10381 + #: src/lib/interests.ts:74 10382 + msgid "TV" 10383 + msgstr "" 10384 + 10385 + #: src/screens/Settings/DeerSettings.tsx:514 10386 + msgid "Tweaks" 10387 + msgstr "" 10388 + 10389 + #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:64 10390 + msgid "Two-factor authentication (2FA)" 10391 + msgstr "" 10392 + 10393 + #: src/screens/Messages/components/MessageInput.tsx:156 10394 + msgid "Type your message here" 10395 + msgstr "" 10396 + 10397 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:445 10398 + msgid "Type:" 10399 + msgstr "" 10400 + 10401 + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:85 10402 + msgid "Unable to access location. You'll need to visit your system settings to enable location services for Bluesky." 10403 + msgstr "" 10404 + 10405 + #: src/lib/hooks/useCleanError.ts:27 10406 + #: src/lib/strings/errors.ts:12 10407 + msgid "Unable to connect. Please check your internet connection and try again." 10408 + msgstr "" 10409 + 10410 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:95 10411 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:140 10412 + msgid "Unable to contact your service. Please check your internet connection and try again." 10413 + msgstr "" 10414 + 10415 + #: src/screens/Login/ForgotPasswordForm.tsx:68 10416 + #: src/screens/Login/index.tsx:98 10417 + #: src/screens/Login/LoginForm.tsx:178 10418 + #: src/screens/Login/SetNewPasswordForm.tsx:81 10419 + #: src/screens/Signup/index.tsx:83 10420 + msgid "Unable to contact your service. Please check your Internet connection." 10421 + msgstr "" 10422 + 10423 + #: src/screens/StarterPack/StarterPackScreen.tsx:678 10424 + msgid "Unable to delete" 10425 + msgstr "" 10426 + 10427 + #: src/screens/Settings/Settings.tsx:533 10428 + msgid "Unapply Pull Request" 10429 + msgstr "" 10430 + 10431 + #: src/screens/Settings/Settings.tsx:535 10432 + msgid "Unapply Pull Request {currentChannel}" 10433 + msgstr "" 10434 + 10435 + #: src/components/ageAssurance/AgeRestrictedScreen.tsx:41 10436 + msgid "Unavailable" 10437 + msgstr "" 10438 + 10439 + #: src/view/com/feeds/MissingFeed.tsx:126 10440 + msgid "Unavailable feed information" 10441 + msgstr "" 10442 + 10443 + #: src/components/dms/MessagesListBlockedFooter.tsx:97 10444 + #: src/components/dms/MessagesListBlockedFooter.tsx:104 10445 + #: src/components/dms/MessagesListBlockedFooter.tsx:112 10446 + #: src/components/dms/MessagesListBlockedFooter.tsx:119 10447 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:195 10448 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:339 10449 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:403 10450 + #: src/screens/ProfileList/components/Header.tsx:174 10451 + #: src/screens/ProfileList/components/Header.tsx:181 10452 + #: src/view/com/profile/ProfileMenu.tsx:629 10453 + msgid "Unblock" 10454 + msgstr "" 10455 + 10456 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:343 10457 + msgctxt "action" 10458 + msgid "Unblock" 10459 + msgstr "" 10460 + 10461 + #: src/components/dms/ConvoMenu.tsx:264 10462 + #: src/components/dms/ConvoMenu.tsx:267 10463 + #: src/view/com/profile/ProfileMenu.tsx:534 10464 + #: src/view/com/profile/ProfileMenu.tsx:540 10465 + msgid "Unblock account" 10466 + msgstr "" 10467 + 10468 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:189 10469 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:398 10470 + #: src/view/com/profile/ProfileMenu.tsx:611 10471 + msgid "Unblock Account?" 10472 + msgstr "" 10473 + 10474 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:250 10475 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:253 10476 + msgid "Unblock list" 10477 + msgstr "" 10478 + 10479 + #: src/components/PostControls/BookmarkButton.tsx:42 10480 + msgctxt "Button label to undo saving/removing a post from saved posts." 10481 + msgid "Undo" 10482 + msgstr "" 10483 + 10484 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:72 10485 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:78 10486 + msgid "Undo" 10487 + msgstr "" 10488 + 10489 + #: src/components/PostControls/RepostButton.web.tsx:68 10490 + #: src/components/PostControls/RepostButton.web.tsx:75 10491 + msgid "Undo repost" 10492 + msgstr "Undo reskeet" 10493 + 10494 + #. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun 10495 + #: src/components/PostControls/RepostButton.tsx:67 10496 + msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" 10497 + msgstr "Undo reskeet ({0, plural, one {# repost} other {# reposts}})" 10498 + 10499 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:370 10500 + msgid "Unfollow {0}" 10501 + msgstr "" 10502 + 10503 + #: src/view/com/profile/ProfileMenu.tsx:361 10504 + #: src/view/com/profile/ProfileMenu.tsx:374 10505 + msgid "Unfollow account" 10506 + msgstr "" 10507 + 10508 + #: src/screens/VideoFeed/index.tsx:861 10509 + msgid "Unfollows the user" 10510 + msgstr "" 10511 + 10512 + #: src/components/moderation/ReportDialog/index.tsx:487 10513 + msgid "Unfortunately, none of your subscribed labelers supports this report type." 10514 + msgstr "" 10515 + 10516 + #: src/ageAssurance/components/NoAccessScreen.tsx:197 10517 + msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky." 10518 + msgstr "" 10519 + 10520 + #: src/ageAssurance/components/NoAccessScreen.tsx:182 10521 + msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." 10522 + msgstr "" 10523 + 10524 + #: src/components/verification/VerificationsDialog.tsx:214 10525 + msgid "Unknown verifier" 10526 + msgstr "" 10527 + 10528 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 10529 + msgid "Unlabeled adult content" 10530 + msgstr "" 10531 + 10532 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 10533 + msgid "Unlabeled, abusive, or non-consensual adult content" 10534 + msgstr "" 10535 + 10536 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:519 10537 + msgid "Unlike" 10538 + msgstr "" 10539 + 10540 + #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun 10541 + #: src/components/PostControls/index.tsx:290 10542 + msgid "Unlike ({0, plural, one {# like} other {# likes}})" 10543 + msgstr "" 10544 + 10545 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:153 10546 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 10547 + msgctxt "video" 10548 + msgid "Unmute" 10549 + msgstr "" 10550 + 10551 + #: src/screens/ProfileList/components/Header.tsx:188 10552 + #: src/screens/ProfileList/components/Header.tsx:195 10553 + msgid "Unmute" 10554 + msgstr "" 10555 + 10556 + #: src/components/RichTextTag.tsx:150 10557 + #: src/components/RichTextTag.tsx:163 10558 + msgid "Unmute {tag}" 10559 + msgstr "" 10560 + 10561 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:962 10562 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:968 10563 + #: src/view/com/profile/ProfileMenu.tsx:513 10564 + #: src/view/com/profile/ProfileMenu.tsx:519 10565 + msgid "Unmute account" 10566 + msgstr "" 10567 + 10568 + #: src/components/dms/ConvoMenu.tsx:253 10569 + msgid "Unmute conversation" 10570 + msgstr "" 10571 + 10572 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:260 10573 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:263 10574 + msgid "Unmute list" 10575 + msgstr "" 10576 + 10577 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:847 10578 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 10579 + msgid "Unmute thread" 10580 + msgstr "" 10581 + 10582 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:317 10583 + msgid "Unmute video" 10584 + msgstr "" 10585 + 10586 + #: src/screens/ProfileList/components/Header.tsx:159 10587 + #: src/screens/ProfileList/components/Header.tsx:166 10588 + msgid "Unpin" 10589 + msgstr "" 10590 + 10591 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:524 10592 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:531 10593 + #: src/screens/SavedFeeds.tsx:351 10594 + msgid "Unpin feed" 10595 + msgstr "" 10596 + 10597 + #: src/components/FeedCard.tsx:352 10598 + msgid "Unpin Feed" 10599 + msgstr "" 10600 + 10601 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:313 10602 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:315 10603 + msgid "Unpin from home" 10604 + msgstr "" 10605 + 10606 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:717 10607 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:724 10608 + msgid "Unpin from profile" 10609 + msgstr "" 10610 + 10611 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:233 10612 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:236 10613 + msgid "Unpin moderation list" 10614 + msgstr "" 10615 + 10616 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:165 10617 + msgid "Unpinned {0} from Home" 10618 + msgstr "" 10619 + 10620 + #: src/screens/ProfileList/components/Header.tsx:78 10621 + msgid "Unpinned from your feeds" 10622 + msgstr "" 10623 + 10624 + #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:105 10625 + msgid "Unpinned list" 10626 + msgstr "" 10627 + 10628 + #: src/screens/Settings/Settings.tsx:500 10629 + #: src/screens/Settings/Settings.tsx:502 10630 + msgid "Unsnooze email reminder" 10631 + msgstr "" 10632 + 10633 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:344 10634 + msgid "Unsubscribe" 10635 + msgstr "" 10636 + 10637 + #: src/screens/List/ListHiddenScreen.tsx:198 10638 + #: src/screens/List/ListHiddenScreen.tsx:208 10639 + msgid "Unsubscribe from list" 10640 + msgstr "" 10641 + 10642 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:311 10643 + msgid "Unsubscribe from this labeler" 10644 + msgstr "" 10645 + 10646 + #: src/screens/List/ListHiddenScreen.tsx:86 10647 + msgid "Unsubscribed from list" 10648 + msgstr "" 10649 + 10650 + #: src/view/com/composer/Composer.tsx:903 10651 + msgid "Unsupported video type: {mimeType}" 10652 + msgstr "" 10653 + 10654 + #: src/screens/Settings/components/OTAInfo.tsx:58 10655 + #: src/screens/Settings/components/OTAInfo.tsx:74 10656 + msgid "Update" 10657 + msgstr "" 10658 + 10659 + #: src/view/com/modals/UserAddRemoveLists.tsx:83 10660 + msgid "Update <0>{displayName}</0> in Lists" 10661 + msgstr "" 10662 + 10663 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:300 10664 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:312 10665 + #: src/screens/Settings/AccountSettings.tsx:107 10666 + #: src/screens/Settings/AccountSettings.tsx:115 10667 + msgid "Update email" 10668 + msgstr "" 10669 + 10670 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:544 10671 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:565 10672 + msgid "Update to {domain}" 10673 + msgstr "" 10674 + 10675 + #: src/components/dialogs/EmailDialog/screens/Update.tsx:203 10676 + msgid "Update your email" 10677 + msgstr "" 10678 + 10679 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 10680 + msgctxt "toast" 10681 + msgid "Updating quote attachment failed" 10682 + msgstr "" 10683 + 10684 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:566 10685 + msgctxt "toast" 10686 + msgid "Updating reply visibility failed" 10687 + msgstr "" 10688 + 10689 + #: src/screens/Login/SetNewPasswordForm.tsx:194 10690 + msgid "Updating..." 10691 + msgstr "" 10692 + 10693 + #: src/screens/Onboarding/StepProfile/index.tsx:298 10694 + msgid "Upload a photo instead" 10695 + msgstr "" 10696 + 10697 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:485 10698 + msgid "Upload a text file to:" 10699 + msgstr "" 10700 + 10701 + #: src/view/com/util/UserAvatar.tsx:505 10702 + #: src/view/com/util/UserAvatar.tsx:508 10703 + #: src/view/com/util/UserBanner.tsx:169 10704 + #: src/view/com/util/UserBanner.tsx:172 10705 + msgid "Upload from Camera" 10706 + msgstr "" 10707 + 10708 + #: src/view/com/util/UserAvatar.tsx:522 10709 + #: src/view/com/util/UserBanner.tsx:186 10710 + msgid "Upload from Files" 10711 + msgstr "" 10712 + 10713 + #: src/view/com/util/UserAvatar.tsx:516 10714 + #: src/view/com/util/UserAvatar.tsx:520 10715 + #: src/view/com/util/UserBanner.tsx:180 10716 + #: src/view/com/util/UserBanner.tsx:184 10717 + msgid "Upload from Library" 10718 + msgstr "" 10719 + 10720 + #: src/lib/api/index.ts:328 10721 + msgid "Uploading images..." 10722 + msgstr "" 10723 + 10724 + #: src/lib/api/index.ts:414 10725 + #: src/lib/api/index.ts:438 10726 + msgid "Uploading link thumbnail..." 10727 + msgstr "" 10728 + 10729 + #: src/view/com/composer/Composer.tsx:1927 10730 + msgid "Uploading video..." 10731 + msgstr "" 10732 + 10733 + #: src/screens/Settings/AppPasswords.tsx:66 10734 + msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." 10735 + msgstr "" 10736 + 10737 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:576 10738 + msgid "Use default provider" 10739 + msgstr "" 10740 + 10741 + #: src/components/dialogs/InAppBrowserConsent.tsx:77 10742 + #: src/components/dialogs/InAppBrowserConsent.tsx:83 10743 + msgid "Use in-app browser" 10744 + msgstr "" 10745 + 10746 + #: src/screens/Settings/ContentAndMediaSettings.tsx:103 10747 + #: src/screens/Settings/ContentAndMediaSettings.tsx:109 10748 + msgid "Use in-app browser to open links" 10749 + msgstr "" 10750 + 10751 + #: src/components/dialogs/InAppBrowserConsent.tsx:87 10752 + #: src/components/dialogs/InAppBrowserConsent.tsx:93 10753 + msgid "Use my default browser" 10754 + msgstr "" 10755 + 10756 + #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:56 10757 + msgid "Use recommended" 10758 + msgstr "" 10759 + 10760 + #: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 10761 + msgid "Use this to sign in to the other app along with your handle." 10762 + msgstr "" 10763 + 10764 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:277 10765 + msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." 10766 + msgstr "" 10767 + 10768 + #: src/components/dms/AfterReportDialog.tsx:152 10769 + msgctxt "toast" 10770 + msgid "User blocked" 10771 + msgstr "" 10772 + 10773 + #: src/components/moderation/ModerationDetailsDialog.tsx:73 10774 + #: src/lib/moderation/useModerationCauseDescription.ts:64 10775 + msgid "User Blocked" 10776 + msgstr "" 10777 + 10778 + #: src/lib/moderation/useModerationCauseDescription.ts:56 10779 + msgid "User Blocked by \"{0}\"" 10780 + msgstr "" 10781 + 10782 + #: src/components/dms/BlockedByListDialog.tsx:27 10783 + msgid "User blocked by list" 10784 + msgstr "" 10785 + 10786 + #: src/components/moderation/ModerationDetailsDialog.tsx:59 10787 + msgid "User Blocked by List" 10788 + msgstr "" 10789 + 10790 + #: src/lib/moderation/useModerationCauseDescription.ts:74 10791 + msgid "User Blocking You" 10792 + msgstr "" 10793 + 10794 + #: src/components/moderation/ModerationDetailsDialog.tsx:79 10795 + msgid "User Blocks You" 10796 + msgstr "" 10797 + 10798 + #: src/view/com/modals/UserAddRemoveLists.tsx:216 10799 + msgid "User list by {0}" 10800 + msgstr "" 10801 + 10802 + #: src/view/com/modals/UserAddRemoveLists.tsx:214 10803 + msgid "User list by you" 10804 + msgstr "" 10805 + 10806 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:241 10807 + msgctxt "toast" 10808 + msgid "User list created" 10809 + msgstr "" 10810 + 10811 + #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:227 10812 + msgctxt "toast" 10813 + msgid "User list updated" 10814 + msgstr "" 10815 + 10816 + #: src/screens/Signup/StepHandle/index.tsx:233 10817 + msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" 10818 + msgstr "" 10819 + 10820 + #: src/screens/Signup/StepHandle/index.tsx:217 10821 + msgid "Username cannot begin or end with a hyphen" 10822 + msgstr "" 10823 + 10824 + #: src/screens/Signup/StepHandle/index.tsx:221 10825 + msgid "Username must only contain letters (a-z), numbers, and hyphens" 10826 + msgstr "" 10827 + 10828 + #: src/screens/Login/LoginForm.tsx:218 10829 + msgid "Username or email address" 10830 + msgstr "" 10831 + 10832 + #: src/components/WhoCanReply.tsx:335 10833 + msgid "users followed by <0>@{0}</0>" 10834 + msgstr "" 10835 + 10836 + #: src/components/WhoCanReply.tsx:322 10837 + msgid "users following <0>@{0}</0>" 10838 + msgstr "" 10839 + 10840 + #: src/screens/Messages/Settings.tsx:97 10841 + #: src/screens/Messages/Settings.tsx:100 10842 + msgid "Users I follow" 10843 + msgstr "" 10844 + 10845 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:451 10846 + msgid "Value:" 10847 + msgstr "" 10848 + 10849 + #: src/screens/Settings/DeerSettings.tsx:447 10850 + msgid "Verification" 10851 + msgstr "" 10852 + 10853 + #: src/components/verification/VerificationCreatePrompt.tsx:39 10854 + msgid "Verification failed, please try again." 10855 + msgstr "" 10856 + 10857 + #: src/screens/Moderation/index.tsx:326 10858 + msgid "Verification settings" 10859 + msgstr "" 10860 + 10861 + #: src/Navigation.tsx:229 10862 + #: src/screens/Moderation/VerificationSettings.tsx:32 10863 + msgid "Verification Settings" 10864 + msgstr "" 10865 + 10866 + #: src/screens/Moderation/VerificationSettings.tsx:41 10867 + msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.</0>" 10868 + msgstr "" 10869 + 10870 + #: src/components/verification/VerificationsDialog.tsx:104 10871 + msgid "Verified by:" 10872 + msgstr "" 10873 + 10874 + #: src/components/verification/VerificationCreatePrompt.tsx:84 10875 + #: src/components/verification/VerificationCreatePrompt.tsx:86 10876 + #: src/view/com/profile/ProfileMenu.tsx:497 10877 + #: src/view/com/profile/ProfileMenu.tsx:500 10878 + msgid "Verify account" 10879 + msgstr "" 10880 + 10881 + #: src/ageAssurance/components/NoAccessScreen.tsx:331 10882 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:176 10883 + msgid "Verify again" 10884 + msgstr "" 10885 + 10886 + #. Button text and accessibility label for action to verify the user's email address using the code entered 10887 + #. Button text and accessibility label for action to verify the user's email address using the code entered 10888 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:351 10889 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 10890 + msgctxt "action" 10891 + msgid "Verify code" 10892 + msgstr "" 10893 + 10894 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:546 10895 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:567 10896 + msgid "Verify DNS Record" 10897 + msgstr "" 10898 + 10899 + #. Dialog title when a user is verifying their email address by entering a code they have been sent 10900 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 10901 + msgid "Verify email code" 10902 + msgstr "" 10903 + 10904 + #: src/components/intents/VerifyEmailIntentDialog.tsx:61 10905 + msgid "Verify email dialog" 10906 + msgstr "" 10907 + 10908 + #: src/ageAssurance/components/NoAccessScreen.tsx:319 10909 + #: src/ageAssurance/components/NoAccessScreen.tsx:333 10910 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:164 10911 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:178 10912 + msgid "Verify now" 10913 + msgstr "" 10914 + 10915 + #: src/components/contacts/screens/PhoneInput.tsx:172 10916 + #: src/components/contacts/screens/VerifyNumber.tsx:214 10917 + msgid "Verify phone number" 10918 + msgstr "" 10919 + 10920 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:547 10921 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:569 10922 + msgid "Verify Text File" 10923 + msgstr "" 10924 + 10925 + #: src/components/verification/VerificationCreatePrompt.tsx:51 10926 + msgid "Verify this account?" 10927 + msgstr "" 10928 + 10929 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 10930 + msgid "Verify your age" 10931 + msgstr "" 10932 + 10933 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:211 10934 + #: src/screens/Settings/AccountSettings.tsx:81 10935 + #: src/screens/Settings/AccountSettings.tsx:101 10936 + msgid "Verify your email" 10937 + msgstr "" 10938 + 10939 + #: src/ageAssurance/components/RedirectOverlay.tsx:300 10940 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:207 10941 + msgid "Verifying" 10942 + msgstr "" 10943 + 10944 + #: src/ageAssurance/components/RedirectOverlay.tsx:169 10945 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:74 10946 + msgid "Verifying your age assurance status" 10947 + msgstr "" 10948 + 10949 + #: src/components/contacts/screens/VerifyNumber.tsx:304 10950 + msgid "Verifying..." 10951 + msgstr "" 10952 + 10953 + #: src/screens/Settings/AboutSettings.tsx:124 10954 + #: src/screens/Settings/AboutSettings.tsx:153 10955 + msgid "Version {0}" 10956 + msgstr "" 10957 + 10958 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:82 10959 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:132 10960 + msgid "Video" 10961 + msgstr "" 10962 + 10963 + #: src/view/com/composer/state/video.ts:393 10964 + msgid "Video failed to process" 10965 + msgstr "" 10966 + 10967 + #: src/Navigation.tsx:639 10968 + msgid "Video Feed" 10969 + msgstr "" 10970 + 10971 + #: src/components/VideoPostCard.tsx:122 10972 + msgid "Video from {0}: {text}" 10973 + msgstr "" 10974 + 10975 + #: src/lib/interests.ts:62 10976 + #: src/screens/Search/modules/ExploreTrendingTopics.tsx:238 10977 + msgid "Video Games" 10978 + msgstr "" 10979 + 10980 + #: src/screens/VideoFeed/index.tsx:1116 10981 + msgid "Video is paused" 10982 + msgstr "" 10983 + 10984 + #: src/screens/VideoFeed/index.tsx:1116 10985 + msgid "Video is playing" 10986 + msgstr "" 10987 + 10988 + #: src/components/Post/Embed/VideoEmbed/index.web.tsx:219 10989 + msgid "Video not found." 10990 + msgstr "" 10991 + 10992 + #: src/view/com/composer/videos/SubtitleDialog.tsx:107 10993 + msgid "Video settings" 10994 + msgstr "" 10995 + 10996 + #: src/view/com/composer/Composer.tsx:1937 10997 + msgid "Video uploaded" 10998 + msgstr "" 10999 + 11000 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:82 11001 + msgid "Video: {0}" 11002 + msgstr "" 11003 + 11004 + #: src/view/screens/Profile.tsx:237 11005 + msgid "Videos" 11006 + msgstr "" 11007 + 11008 + #: src/view/com/composer/SelectMediaButton.tsx:411 11009 + msgid "Videos must be less than 3 minutes long." 11010 + msgstr "" 11011 + 11012 + #: src/screens/Settings/DeerSettings.tsx:486 11013 + msgid "View" 11014 + msgstr "" 11015 + 11016 + #: src/view/com/composer/Composer.tsx:588 11017 + msgctxt "Action to view the post the user just created" 11018 + msgid "View" 11019 + msgstr "" 11020 + 11021 + #: src/screens/Profile/Header/Shell.tsx:307 11022 + msgid "View {0}'s avatar" 11023 + msgstr "" 11024 + 11025 + #: src/screens/Profile/Header/Shell.tsx:260 11026 + msgid "View {0}'s banner" 11027 + msgstr "" 11028 + 11029 + #: src/components/ProfileCard.tsx:142 11030 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:460 11031 + #: src/screens/Search/components/SearchProfileCard.tsx:36 11032 + #: src/screens/VideoFeed/index.tsx:820 11033 + #: src/view/com/notifications/NotificationFeedItem.tsx:614 11034 + msgid "View {0}'s profile" 11035 + msgstr "" 11036 + 11037 + #: src/components/dms/MessagesListHeader.tsx:142 11038 + msgid "View {displayName}'s profile" 11039 + msgstr "" 11040 + 11041 + #: src/components/live/LiveStatusDialog.tsx:220 11042 + #: src/components/live/LiveStatusDialog.tsx:245 11043 + msgid "View avatar" 11044 + msgstr "" 11045 + 11046 + #: src/components/ProfileHoverCard/index.web.tsx:492 11047 + msgid "View blocked user's profile" 11048 + msgstr "" 11049 + 11050 + #: src/screens/Settings/components/ExportCarDialog.tsx:100 11051 + msgid "View blogpost for more details" 11052 + msgstr "" 11053 + 11054 + #: src/screens/Log.tsx:81 11055 + msgid "View debug entry" 11056 + msgstr "" 11057 + 11058 + #: src/screens/VideoFeed/index.tsx:685 11059 + #: src/screens/VideoFeed/index.tsx:703 11060 + msgid "View details" 11061 + msgstr "" 11062 + 11063 + #: src/view/com/posts/ViewFullThread.tsx:59 11064 + msgid "View full thread" 11065 + msgstr "" 11066 + 11067 + #: src/components/moderation/LabelsOnMe.tsx:51 11068 + msgid "View information about these labels" 11069 + msgstr "" 11070 + 11071 + #: src/components/interstitials/TrendingVideos.tsx:201 11072 + #: src/components/interstitials/TrendingVideos.tsx:223 11073 + #: src/screens/Search/modules/ExploreTrendingVideos.tsx:195 11074 + #: src/screens/Search/modules/ExploreTrendingVideos.tsx:214 11075 + msgid "View more" 11076 + msgstr "" 11077 + 11078 + #: src/components/interstitials/TrendingVideos.tsx:229 11079 + msgid "View more trending videos" 11080 + msgstr "" 11081 + 11082 + #: src/view/com/composer/Composer.tsx:583 11083 + msgid "View post" 11084 + msgstr "View skeet" 11085 + 11086 + #: src/components/ProfileHoverCard/index.web.tsx:478 11087 + #: src/components/ProfileHoverCard/index.web.tsx:498 11088 + #: src/components/ProfileHoverCard/index.web.tsx:533 11089 + #: src/view/com/posts/PostFeedErrorMessage.tsx:182 11090 + #: src/view/com/util/PostMeta.tsx:90 11091 + #: src/view/com/util/PostMeta.tsx:127 11092 + msgid "View profile" 11093 + msgstr "" 11094 + 11095 + #: src/view/com/profile/ProfileSubpageHeader.tsx:123 11096 + msgid "View the avatar" 11097 + msgstr "" 11098 + 11099 + #: src/components/LabelingServiceCard/index.tsx:164 11100 + msgid "View the labeling service provided by @{0}" 11101 + msgstr "" 11102 + 11103 + #: src/components/verification/VerificationCheckButton.tsx:99 11104 + msgid "View this user's verifications" 11105 + msgstr "" 11106 + 11107 + #: src/screens/Profile/components/ProfileFeedHeader.tsx:490 11108 + msgid "View users who like this feed" 11109 + msgstr "" 11110 + 11111 + #: src/components/VideoPostCard.tsx:401 11112 + msgid "View video" 11113 + msgstr "" 11114 + 11115 + #: src/screens/Moderation/index.tsx:306 11116 + msgid "View your blocked accounts" 11117 + msgstr "" 11118 + 11119 + #: src/screens/Moderation/index.tsx:246 11120 + msgid "View your default post interaction settings" 11121 + msgstr "View your default skeet interaction settings" 11122 + 11123 + #: src/view/com/home/HomeHeaderLayout.web.tsx:57 11124 + #: src/view/com/home/HomeHeaderLayoutMobile.tsx:72 11125 + msgid "View your feeds and explore more" 11126 + msgstr "" 11127 + 11128 + #: src/screens/Moderation/index.tsx:276 11129 + msgid "View your moderation lists" 11130 + msgstr "" 11131 + 11132 + #: src/screens/Moderation/index.tsx:291 11133 + msgid "View your muted accounts" 11134 + msgstr "" 11135 + 11136 + #: src/components/verification/VerificationCheckButton.tsx:98 11137 + msgid "View your verifications" 11138 + msgstr "" 11139 + 11140 + #: src/components/images/AutoSizedImage.tsx:211 11141 + #: src/components/images/AutoSizedImage.tsx:238 11142 + msgid "Views full image" 11143 + msgstr "" 11144 + 11145 + #: src/components/VideoPostCard.tsx:121 11146 + msgid "Views video in immersive mode" 11147 + msgstr "" 11148 + 11149 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126 11150 + msgid "Violence" 11151 + msgstr "" 11152 + 11153 + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127 11154 + msgid "Violent or threatening content" 11155 + msgstr "" 11156 + 11157 + #: src/screens/Settings/DeerSettings.tsx:402 11158 + msgid "Visibility" 11159 + msgstr "" 11160 + 11161 + #: src/view/shell/Drawer.tsx:390 11162 + msgid "Visit code repository" 11163 + msgstr "" 11164 + 11165 + #: src/components/dialogs/LinkWarning.tsx:96 11166 + #: src/components/dialogs/LinkWarning.tsx:106 11167 + msgid "Visit site" 11168 + msgstr "" 11169 + 11170 + #: src/view/screens/Notifications.tsx:306 11171 + msgid "Visit your notification settings" 11172 + msgstr "" 11173 + 11174 + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:80 11175 + msgid "Volume" 11176 + msgstr "" 11177 + 11178 + #: src/components/moderation/LabelPreference.tsx:141 11179 + #: src/lib/moderation/useLabelBehaviorDescription.ts:20 11180 + #: src/lib/moderation/useLabelBehaviorDescription.ts:25 11181 + msgid "Warn" 11182 + msgstr "" 11183 + 11184 + #: src/lib/moderation/useLabelBehaviorDescription.ts:51 11185 + msgid "Warn content" 11186 + msgstr "" 11187 + 11188 + #: src/lib/moderation/useLabelBehaviorDescription.ts:49 11189 + msgid "Warn content and filter from feeds" 11190 + msgstr "" 11191 + 11192 + #: src/components/live/LiveStatusDialog.tsx:186 11193 + #: src/components/live/LiveStatusDialog.tsx:199 11194 + msgid "Watch now" 11195 + msgstr "" 11196 + 11197 + #: src/components/contacts/screens/GetContacts.tsx:250 11198 + msgid "We apply the highest privacy standards, and never share or sell your contact information." 11199 + msgstr "" 11200 + 11201 + #: src/view/com/feeds/MissingFeed.tsx:140 11202 + msgid "We could not connect to the service that provides this custom feed. It may be temporarily unavailable and experiencing issues, or permanently unavailable." 11203 + msgstr "" 11204 + 11205 + #: src/view/com/feeds/MissingFeed.tsx:146 11206 + msgid "We could not find this list. It was probably deleted." 11207 + msgstr "" 11208 + 11209 + #: src/screens/Hashtag.tsx:274 11210 + msgid "We couldn't find any results for that tag." 11211 + msgstr "" 11212 + 11213 + #: src/screens/Topic.tsx:183 11214 + msgid "We couldn't find any results for that topic." 11215 + msgstr "" 11216 + 11217 + #: src/screens/Messages/Conversation.tsx:145 11218 + msgid "We couldn't load this conversation" 11219 + msgstr "" 11220 + 11221 + #: src/components/contacts/screens/GetContacts.tsx:241 11222 + msgid "We delete hashes after matches are made" 11223 + msgstr "" 11224 + 11225 + #: src/components/contacts/components/InviteInfo.tsx:66 11226 + msgid "We don't store your friends' phone numbers or send any messages" 11227 + msgstr "" 11228 + 11229 + #: src/screens/SignupQueued.tsx:160 11230 + msgid "We estimate {estimatedTime} until your account is ready." 11231 + msgstr "" 11232 + 11233 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:196 11234 + msgid "We have partnered with <0>KWS</0> to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you wonโ€™t need to do it again. When youโ€™re done, you'll be brought back to continue using Bluesky." 11235 + msgstr "" 11236 + 11237 + #: src/components/intents/VerifyEmailIntentDialog.tsx:101 11238 + msgid "We have sent another verification email to <0>{0}</0>." 11239 + msgstr "" 11240 + 11241 + #: src/components/contacts/screens/PhoneInput.tsx:181 11242 + msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number." 11243 + msgstr "" 11244 + 11245 + #: src/components/contacts/screens/GetContacts.tsx:238 11246 + msgid "We never keep plain phone numbers" 11247 + msgstr "" 11248 + 11249 + #: src/components/contacts/screens/GetContacts.tsx:244 11250 + msgid "We only suggest follows if both people consent" 11251 + msgstr "" 11252 + 11253 + #: src/view/com/posts/DiscoverFallbackHeader.tsx:29 11254 + msgid "We ran out of posts from your follows. Here's the latest from <0/>." 11255 + msgstr "We ran out of skeets from your follows. Here's the latest from <0/>." 11256 + 11257 + #: src/screens/Settings/InterestsSettings.tsx:159 11258 + msgid "We recommend selecting at least two interests." 11259 + msgstr "" 11260 + 11261 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 11262 + msgid "We sent an email to <0>{0}</0> containing a link. Please click on it to complete the email verification process." 11263 + msgstr "" 11264 + 11265 + #: src/view/com/composer/state/video.ts:454 11266 + msgid "We were unable to determine if you are allowed to upload videos. Please try again." 11267 + msgstr "" 11268 + 11269 + #: src/components/ageAssurance/AgeAssuranceErrors.tsx:18 11270 + msgid "We were unable to load the age assurance configuration for your region, probably due to a network error. Some content and features may be unavailable temporarily. Please try again later." 11271 + msgstr "" 11272 + 11273 + #: src/components/dialogs/BirthDateSettings.tsx:67 11274 + msgid "We were unable to load your birthdate preferences. Please try again." 11275 + msgstr "" 11276 + 11277 + #: src/screens/Moderation/index.tsx:449 11278 + msgid "We were unable to load your configured labelers at this time." 11279 + msgstr "" 11280 + 11281 + #: src/ageAssurance/components/RedirectOverlay.tsx:308 11282 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:215 11283 + msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." 11284 + msgstr "" 11285 + 11286 + #: src/screens/SignupQueued.tsx:164 11287 + msgid "We will let you know when your account is ready." 11288 + msgstr "" 11289 + 11290 + #: src/screens/Settings/FindContactsSettings.tsx:503 11291 + msgid "We will notify you when we find your friends." 11292 + msgstr "" 11293 + 11294 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:249 11295 + msgid "We'll send an email to <0>{0}</0> containing a link. Please click on it to complete the email verification process." 11296 + msgstr "" 11297 + 11298 + #: src/screens/Onboarding/StepInterests/index.tsx:60 11299 + msgid "We'll use this to help customize your experience." 11300 + msgstr "" 11301 + 11302 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:139 11303 + msgid "We're also updating our <0>Community Guidelines</0>, and we want your input! These new guidelines will take effect on October 15th, 2025." 11304 + msgstr "" 11305 + 11306 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:82 11307 + msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." 11308 + msgstr "" 11309 + 11310 + #: src/ageAssurance/components/RedirectOverlay.tsx:314 11311 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:221 11312 + msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." 11313 + msgstr "" 11314 + 11315 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:150 11316 + msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support</0> for assistance." 11317 + msgstr "" 11318 + 11319 + #: src/components/dialogs/SearchablePeopleList.tsx:110 11320 + #: src/components/ProgressGuide/FollowDialog.tsx:190 11321 + msgid "We're having network issues, try again" 11322 + msgstr "" 11323 + 11324 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 11325 + msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." 11326 + msgstr "" 11327 + 11328 + #: src/ageAssurance/components/NoAccessScreen.tsx:387 11329 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:114 11330 + msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance." 11331 + msgstr "" 11332 + 11333 + #: src/screens/ProfileList/index.tsx:87 11334 + msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." 11335 + msgstr "" 11336 + 11337 + #: src/components/dialogs/MutedWords.tsx:384 11338 + msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." 11339 + msgstr "" 11340 + 11341 + #: src/screens/Search/SearchResults.tsx:324 11342 + #: src/screens/Search/SearchResults.tsx:415 11343 + msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." 11344 + msgstr "" 11345 + 11346 + #: src/view/com/composer/Composer.tsx:513 11347 + msgid "We're sorry! The post you are replying to has been deleted." 11348 + msgstr "We're sorry! The skeet you are replying to has been deleted." 11349 + 11350 + #: src/components/Lists.tsx:223 11351 + #: src/view/screens/NotFound.tsx:50 11352 + msgid "We're sorry! We can't find the page you were looking for." 11353 + msgstr "" 11354 + 11355 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:219 11356 + msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." 11357 + msgstr "" 11358 + 11359 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:122 11360 + msgid "Weโ€™re updating our <0>Terms of Service</0>, <1>Privacy Policy</1>, and <2>Copyright Policy</2>, effective September 15th, 2025." 11361 + msgstr "" 11362 + 11363 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:63 11364 + msgid "We're updating our policies" 11365 + msgstr "" 11366 + 11367 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:76 11368 + msgid "Weโ€™re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." 11369 + msgstr "" 11370 + 11371 + #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 11372 + msgid "Weโ€™re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." 11373 + msgstr "" 11374 + 11375 + #: src/ageAssurance/components/RedirectOverlay.tsx:260 11376 + #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:163 11377 + msgid "We've confirmed your age assurance status. You can now close this dialog." 11378 + msgstr "" 11379 + 11380 + #: src/screens/Deactivated.tsx:116 11381 + msgid "Welcome back!" 11382 + msgstr "" 11383 + 11384 + #: src/screens/Signup/index.tsx:131 11385 + msgid "Welcome to the ATmosphere!" 11386 + msgstr "" 11387 + 11388 + #: src/components/NewskieDialog.tsx:139 11389 + msgid "Welcome, friend!" 11390 + msgstr "" 11391 + 11392 + #: src/screens/Onboarding/StepInterests/index.tsx:57 11393 + msgid "What are your interests?" 11394 + msgstr "" 11395 + 11396 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:41 11397 + msgid "What do you want to call your starter pack?" 11398 + msgstr "" 11399 + 11400 + #: src/view/com/auth/SplashScreen.tsx:55 11401 + #: src/view/com/auth/SplashScreen.web.tsx:103 11402 + #: src/view/com/composer/Composer.tsx:861 11403 + #: src/view/com/feeds/ComposerPrompt.tsx:189 11404 + msgid "What's up?" 11405 + msgstr "Skeet yo shit! ๐Ÿ—ฃ๏ธ" 11406 + 11407 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:149 11408 + msgid "When you tap on a check, youโ€™ll see which organizations have granted verification." 11409 + msgstr "" 11410 + 11411 + #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:79 11412 + msgid "Which languages would you like to see in your algorithmic feeds?" 11413 + msgstr "" 11414 + 11415 + #: src/components/WhoCanReply.tsx:224 11416 + msgid "Who can interact with this post?" 11417 + msgstr "Who can interact with this skeet?" 11418 + 11419 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:421 11420 + #: src/components/WhoCanReply.tsx:114 11421 + msgid "Who can reply" 11422 + msgstr "" 11423 + 11424 + #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:130 11425 + msgid "Who can verify?" 11426 + msgstr "" 11427 + 11428 + #: src/screens/Home/NoFeedsPinned.tsx:79 11429 + #: src/screens/Messages/ChatList.tsx:271 11430 + #: src/screens/Messages/Inbox.tsx:198 11431 + msgid "Whoops!" 11432 + msgstr "" 11433 + 11434 + #: src/components/interstitials/TrendingVideos.tsx:126 11435 + #: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 11436 + msgid "Whoops! Trending videos failed to load." 11437 + msgstr "" 11438 + 11439 + #: src/screens/Takendown.tsx:171 11440 + msgid "Why are you appealing?" 11441 + msgstr "" 11442 + 11443 + #: src/components/moderation/ReportDialog/copy.ts:52 11444 + msgid "Why should this conversation be reviewed?" 11445 + msgstr "" 11446 + 11447 + #: src/components/moderation/ReportDialog/copy.ts:38 11448 + msgid "Why should this feed be reviewed?" 11449 + msgstr "" 11450 + 11451 + #: src/components/moderation/ReportDialog/copy.ts:32 11452 + msgid "Why should this list be reviewed?" 11453 + msgstr "" 11454 + 11455 + #: src/components/moderation/ReportDialog/copy.ts:20 11456 + msgid "Why should this livestream be reviewed?" 11457 + msgstr "" 11458 + 11459 + #: src/components/moderation/ReportDialog/copy.ts:58 11460 + msgid "Why should this message be reviewed?" 11461 + msgstr "" 11462 + 11463 + #: src/components/moderation/ReportDialog/copy.ts:26 11464 + msgid "Why should this post be reviewed?" 11465 + msgstr "Why should this skeet be reviewed?" 11466 + 11467 + #: src/components/moderation/ReportDialog/copy.ts:44 11468 + msgid "Why should this starter pack be reviewed?" 11469 + msgstr "" 11470 + 11471 + #: src/components/moderation/ReportDialog/copy.ts:14 11472 + msgid "Why should this user be reviewed?" 11473 + msgstr "" 11474 + 11475 + #: src/screens/Settings/AppearanceSettings.tsx:109 11476 + msgid "Witchsky" 11477 + msgstr "" 11478 + 11479 + #: src/screens/Signup/StepInfo/index.tsx:200 11480 + msgid "Witchsky is part of the <0>ATmosphere</0>โ€”the network of apps, services, and accounts built on the AT Protocol." 11481 + msgstr "" 11482 + 11483 + #: src/components/dms/AfterReportDialog.tsx:49 11484 + msgid "Would you like to block this user and/or delete this conversation?" 11485 + msgstr "" 11486 + 11487 + #: src/screens/Messages/components/MessageInput.tsx:157 11488 + #: src/screens/Messages/components/MessageInput.web.tsx:217 11489 + msgid "Write a message" 11490 + msgstr "" 11491 + 11492 + #: src/view/screens/Profile.tsx:435 11493 + #: src/view/screens/Profile.tsx:436 11494 + msgid "Write a post" 11495 + msgstr "Write a skeet" 11496 + 11497 + #: src/view/com/composer/Composer.tsx:963 11498 + msgid "Write post" 11499 + msgstr "Write skeet" 11500 + 11501 + #: src/screens/PostThread/components/ThreadComposePrompt.tsx:92 11502 + #: src/view/com/composer/Composer.tsx:859 11503 + msgid "Write your reply" 11504 + msgstr "" 11505 + 11506 + #: src/lib/interests.ts:75 11507 + msgid "Writers" 11508 + msgstr "" 11509 + 11510 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:368 11511 + msgid "Wrong DID returned from server. Received: {0}" 11512 + msgstr "" 11513 + 11514 + #: src/components/live/EditLiveDialog.tsx:152 11515 + #: src/components/live/GoLiveDialog.tsx:134 11516 + msgid "www.mylivestream.tv" 11517 + msgstr "" 11518 + 11519 + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:180 11520 + msgid "Yes" 11521 + msgstr "" 11522 + 11523 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 11524 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 11525 + msgid "Yes, deactivate" 11526 + msgstr "" 11527 + 11528 + #: src/screens/StarterPack/StarterPackScreen.tsx:690 11529 + msgid "Yes, delete this starter pack" 11530 + msgstr "" 11531 + 11532 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1075 11533 + msgid "Yes, detach" 11534 + msgstr "" 11535 + 11536 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:1085 11537 + msgid "Yes, hide" 11538 + msgstr "" 11539 + 11540 + #: src/screens/Deactivated.tsx:138 11541 + msgid "Yes, reactivate my account" 11542 + msgstr "" 11543 + 11544 + #: src/components/dms/DateDivider.tsx:46 11545 + msgid "Yesterday" 11546 + msgstr "" 11547 + 11548 + #: src/components/verification/VerifierDialog.tsx:60 11549 + msgid "You are a trusted verifier" 11550 + msgstr "" 11551 + 11552 + #: src/ageAssurance/components/NoAccessScreen.tsx:173 11553 + msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." 11554 + msgstr "" 11555 + 11556 + #: src/components/forms/HostingProvider.tsx:47 11557 + msgid "You are creating an account on" 11558 + msgstr "" 11559 + 11560 + #: src/components/live/GoLiveDisabledDialog.tsx:107 11561 + msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below." 11562 + msgstr "" 11563 + 11564 + #: src/ageAssurance/components/NoAccessScreen.tsx:301 11565 + #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:134 11566 + msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team</0> if you believe this is an error." 11567 + msgstr "" 11568 + 11569 + #: src/screens/SignupQueued.tsx:157 11570 + msgid "You are in line." 11571 + msgstr "" 11572 + 11573 + #: src/components/live/EditLiveDialog.tsx:118 11574 + #: src/components/live/EditLiveDialog.tsx:123 11575 + msgid "You are Live" 11576 + msgstr "" 11577 + 11578 + #: src/components/live/queries.ts:212 11579 + msgid "You are no longer live" 11580 + msgstr "" 11581 + 11582 + #: src/view/com/composer/state/video.ts:447 11583 + msgid "You are not allowed to upload videos." 11584 + msgstr "" 11585 + 11586 + #: src/view/com/profile/ProfileFollows.tsx:183 11587 + msgid "You are not following anyone yet" 11588 + msgstr "" 11589 + 11590 + #: src/components/live/queries.ts:157 11591 + msgid "You are now live!" 11592 + msgstr "" 11593 + 11594 + #: src/components/verification/VerificationsDialog.tsx:65 11595 + msgid "You are verified" 11596 + msgstr "" 11597 + 11598 + #: src/screens/Profile/Header/EditProfileDialog.tsx:350 11599 + msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.</0>" 11600 + msgstr "" 11601 + 11602 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:210 11603 + msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.</0>" 11604 + msgstr "" 11605 + 11606 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:48 11607 + msgid "You can adjust your interests at any time from \"Content and media\" settings." 11608 + msgstr "" 11609 + 11610 + #: src/view/com/posts/FollowingEmptyState.tsx:63 11611 + #: src/view/com/posts/FollowingEndOfFeed.tsx:64 11612 + msgid "You can also discover new Custom Feeds to follow." 11613 + msgstr "" 11614 + 11615 + #: src/view/com/modals/DeleteAccount.tsx:198 11616 + msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." 11617 + msgstr "" 11618 + 11619 + #: src/components/contacts/screens/GetContacts.tsx:247 11620 + msgid "You can always opt out and delete your data" 11621 + msgstr "" 11622 + 11623 + #: src/lib/hooks/useNotificationHandler.ts:101 11624 + msgid "You can choose whether chat notifications have sound in the chat settings within the app" 11625 + msgstr "" 11626 + 11627 + #: src/screens/Messages/Settings.tsx:116 11628 + msgid "You can continue ongoing conversations regardless of which setting you choose." 11629 + msgstr "" 11630 + 11631 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 11632 + msgctxt "toast" 11633 + msgid "You can hide a maximum of {MAX_HIDDEN_REPLIES} replies." 11634 + msgstr "" 11635 + 11636 + #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:151 11637 + msgid "You can now choose to be notified when specific people post. If thereโ€™s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." 11638 + msgstr "You can now choose to be notified when specific people skeet. If thereโ€™s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." 11639 + 11640 + #: src/screens/Login/index.tsx:244 11641 + #: src/screens/Login/PasswordUpdatedForm.tsx:26 11642 + msgid "You can now sign in with your new password." 11643 + msgstr "" 11644 + 11645 + #: src/view/com/composer/SelectMediaButton.tsx:414 11646 + msgid "You can only select one GIF at a time." 11647 + msgstr "" 11648 + 11649 + #: src/view/com/composer/SelectMediaButton.tsx:408 11650 + msgid "You can only select one video at a time." 11651 + msgstr "" 11652 + 11653 + #: src/screens/Deactivated.tsx:124 11654 + msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." 11655 + msgstr "You can reactivate your account to continue logging in. Your profile and skeets will be visible to other users." 11656 + 11657 + #. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. 11658 + #: src/view/com/composer/SelectMediaButton.tsx:400 11659 + msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." 11660 + msgstr "" 11661 + 11662 + #: src/components/interstitials/Trending.tsx:132 11663 + #: src/components/interstitials/TrendingVideos.tsx:138 11664 + #: src/view/shell/desktop/SidebarTrendingTopics.tsx:131 11665 + msgid "You can update this later from your settings." 11666 + msgstr "" 11667 + 11668 + #: src/lib/hooks/useCleanError.ts:55 11669 + #: src/lib/strings/errors.ts:28 11670 + msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." 11671 + msgstr "" 11672 + 11673 + #: src/screens/Profile/KnownFollowers.tsx:121 11674 + msgid "You don't follow any users who follow @{name}." 11675 + msgstr "" 11676 + 11677 + #: src/screens/Messages/Inbox.tsx:243 11678 + msgid "You don't have any chat requests at the moment." 11679 + msgstr "" 11680 + 11681 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:583 11682 + msgid "You don't have any lists yet." 11683 + msgstr "" 11684 + 11685 + #: src/screens/SavedFeeds.tsx:149 11686 + msgid "You don't have any pinned feeds." 11687 + msgstr "" 11688 + 11689 + #: src/screens/SavedFeeds.tsx:191 11690 + msgid "You don't have any saved feeds." 11691 + msgstr "" 11692 + 11693 + #: src/components/contacts/screens/ViewMatches.tsx:309 11694 + msgid "You got here first" 11695 + msgstr "" 11696 + 11697 + #: src/components/dms/MessagesListBlockedFooter.tsx:66 11698 + msgid "You have blocked this user" 11699 + msgstr "" 11700 + 11701 + #: src/components/moderation/ModerationDetailsDialog.tsx:75 11702 + #: src/lib/moderation/useModerationCauseDescription.ts:58 11703 + #: src/lib/moderation/useModerationCauseDescription.ts:66 11704 + msgid "You have blocked this user. You cannot view their content." 11705 + msgstr "" 11706 + 11707 + #: src/view/screens/Notifications.tsx:301 11708 + msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings</0>." 11709 + msgstr "" 11710 + 11711 + #: src/screens/Login/SetNewPasswordForm.tsx:49 11712 + #: src/screens/Login/SetNewPasswordForm.tsx:95 11713 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:112 11714 + msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." 11715 + msgstr "" 11716 + 11717 + #: src/lib/moderation/useModerationCauseDescription.ts:117 11718 + msgid "You have hidden this post" 11719 + msgstr "You have hidden this skeet" 11720 + 11721 + #: src/components/moderation/ModerationDetailsDialog.tsx:113 11722 + msgid "You have hidden this post." 11723 + msgstr "You have hidden this skeet." 11724 + 11725 + #: src/components/moderation/ModerationDetailsDialog.tsx:106 11726 + #: src/lib/moderation/useModerationCauseDescription.ts:100 11727 + msgid "You have muted this account." 11728 + msgstr "" 11729 + 11730 + #: src/lib/moderation/useModerationCauseDescription.ts:94 11731 + msgid "You have muted this user" 11732 + msgstr "" 11733 + 11734 + #: src/screens/Messages/ChatList.tsx:315 11735 + msgid "You have no conversations yet. Start one!" 11736 + msgstr "" 11737 + 11738 + #: src/view/com/lists/MyLists.tsx:83 11739 + msgid "You have no lists." 11740 + msgstr "" 11741 + 11742 + #: src/components/dialogs/StarterPackDialog.tsx:102 11743 + msgid "You have no starter packs." 11744 + msgstr "" 11745 + 11746 + #: src/view/screens/ModerationBlockedAccounts.tsx:164 11747 + msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." 11748 + msgstr "" 11749 + 11750 + #: src/view/screens/ModerationMutedAccounts.tsx:177 11751 + msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." 11752 + msgstr "" 11753 + 11754 + #: src/components/Lists.tsx:61 11755 + msgid "You have reached the end" 11756 + msgstr "" 11757 + 11758 + #: src/components/dialogs/EmailDialog/screens/Verify.tsx:187 11759 + msgid "You have successfully verified your email address. You can close this dialog." 11760 + msgstr "" 11761 + 11762 + #: src/lib/media/video/upload.shared.ts:56 11763 + msgid "You have temporarily reached the limit for video uploads. Please try again later." 11764 + msgstr "" 11765 + 11766 + #: src/components/StarterPack/ProfileStarterPacks.tsx:291 11767 + msgid "You haven't created a starter pack yet!" 11768 + msgstr "" 11769 + 11770 + #: src/view/com/lists/ProfileLists.tsx:159 11771 + msgid "You haven't created any lists yet." 11772 + msgstr "" 11773 + 11774 + #: src/view/com/feeds/ProfileFeedgens.tsx:160 11775 + msgid "You haven't made any custom feeds yet." 11776 + msgstr "" 11777 + 11778 + #: src/components/dialogs/MutedWords.tsx:404 11779 + msgid "You haven't muted any words or tags yet" 11780 + msgstr "" 11781 + 11782 + #: src/components/moderation/ModerationDetailsDialog.tsx:120 11783 + #: src/lib/moderation/useModerationCauseDescription.ts:128 11784 + msgid "You hid this reply." 11785 + msgstr "" 11786 + 11787 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:239 11788 + msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." 11789 + msgstr "" 11790 + 11791 + #: src/components/NewskieDialog.tsx:105 11792 + msgid "You joined Bluesky {timeAgoString} ago" 11793 + msgstr "" 11794 + 11795 + #: src/components/NewskieDialog.tsx:102 11796 + msgid "You joined Bluesky using a starter pack {timeAgoString} ago" 11797 + msgstr "" 11798 + 11799 + #: src/components/moderation/LabelsOnMeDialog.tsx:83 11800 + msgid "You may appeal non-self labels if you feel they were placed in error." 11801 + msgstr "" 11802 + 11803 + #: src/components/moderation/LabelsOnMeDialog.tsx:88 11804 + msgid "You may appeal these labels if you feel they were placed in error." 11805 + msgstr "" 11806 + 11807 + #: src/screens/StarterPack/Wizard/State.tsx:80 11808 + msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" 11809 + msgstr "" 11810 + 11811 + #: src/screens/StarterPack/Wizard/State.tsx:99 11812 + msgid "You may only add up to 3 feeds" 11813 + msgstr "" 11814 + 11815 + #: src/screens/Signup/StepInfo/index.tsx:394 11816 + msgid "You must be {0} years of age or older to create an account in your region." 11817 + msgstr "" 11818 + 11819 + #: src/screens/Signup/StepInfo/index.tsx:389 11820 + msgid "You must be {MIN_ACCESS_AGE} years of age or older to create an account." 11821 + msgstr "" 11822 + 11823 + #: src/components/dialogs/BirthDateSettings.tsx:178 11824 + msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service</0> for more information." 11825 + msgstr "" 11826 + 11827 + #: src/components/StarterPack/ProfileStarterPacks.tsx:362 11828 + msgid "You must be following at least seven other people to generate a starter pack." 11829 + msgstr "" 11830 + 11831 + #: src/components/ageAssurance/AgeRestrictedScreen.tsx:60 11832 + msgid "You must complete age assurance in order to access this screen." 11833 + msgstr "" 11834 + 11835 + #: src/components/StarterPack/QrCodeDialog.tsx:65 11836 + msgid "You must grant access to your photo library to save a QR code" 11837 + msgstr "" 11838 + 11839 + #: src/view/com/composer/SelectMediaButton.tsx:443 11840 + msgid "You need to allow access to your media library." 11841 + msgstr "" 11842 + 11843 + #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 11844 + msgid "You need to verify your email address before you can enable email 2FA." 11845 + msgstr "" 11846 + 11847 + #: src/screens/Deactivated.tsx:119 11848 + msgid "You previously deactivated @{0}." 11849 + msgstr "" 11850 + 11851 + #: src/screens/Settings/Settings.tsx:430 11852 + msgid "You probably want to restart the app now." 11853 + msgstr "" 11854 + 11855 + #: src/components/dms/MessageItem.tsx:135 11856 + msgid "You reacted {0}" 11857 + msgstr "" 11858 + 11859 + #: src/screens/Messages/components/ChatListItem.tsx:224 11860 + msgid "You reacted {0} to {1}" 11861 + msgstr "" 11862 + 11863 + #: src/components/dialogs/BirthDateSettings.tsx:90 11864 + #: src/components/dialogs/BirthDateSettings.tsx:100 11865 + msgid "You recently changed your birthdate" 11866 + msgstr "" 11867 + 11868 + #: src/screens/Settings/Settings.tsx:312 11869 + #: src/view/shell/desktop/LeftNav.tsx:213 11870 + msgid "You will be signed out of all your accounts." 11871 + msgstr "" 11872 + 11873 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:139 11874 + msgid "You will no longer receive notifications for {0}" 11875 + msgstr "" 11876 + 11877 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 11878 + msgid "You will no longer receive notifications for this thread" 11879 + msgstr "" 11880 + 11881 + #: src/components/PostControls/PostMenu/PostMenuItems.tsx:391 11882 + msgid "You will now receive notifications for this thread" 11883 + msgstr "" 11884 + 11885 + #: src/screens/Login/SetNewPasswordForm.tsx:108 11886 + msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." 11887 + msgstr "" 11888 + 11889 + #: src/screens/Messages/components/ChatListItem.tsx:160 11890 + msgid "You: {0}" 11891 + msgstr "" 11892 + 11893 + #: src/screens/Messages/components/ChatListItem.tsx:189 11894 + msgid "You: {defaultEmbeddedContentMessage}" 11895 + msgstr "" 11896 + 11897 + #: src/screens/Messages/components/ChatListItem.tsx:182 11898 + msgid "You: {short}" 11899 + msgstr "" 11900 + 11901 + #: src/screens/Signup/index.tsx:147 11902 + msgid "You'll follow the suggested users and feeds once you finish creating your account!" 11903 + msgstr "" 11904 + 11905 + #: src/screens/Signup/index.tsx:152 11906 + msgid "You'll follow the suggested users once you finish creating your account!" 11907 + msgstr "" 11908 + 11909 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:244 11910 + msgid "You'll follow these people and {0} others" 11911 + msgstr "" 11912 + 11913 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:242 11914 + msgid "You'll follow these people right away" 11915 + msgstr "" 11916 + 11917 + #: src/components/contacts/screens/GetContacts.tsx:311 11918 + msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature." 11919 + msgstr "" 11920 + 11921 + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:169 11922 + msgid "You'll start receiving notifications for {0}!" 11923 + msgstr "" 11924 + 11925 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:282 11926 + msgid "You'll stay updated with these feeds" 11927 + msgstr "" 11928 + 11929 + #: src/screens/SignupQueued.tsx:127 11930 + msgid "You're in line" 11931 + msgstr "" 11932 + 11933 + #: src/screens/Deactivated.tsx:80 11934 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 11935 + msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." 11936 + msgstr "" 11937 + 11938 + #: src/components/moderation/LabelsOnMeDialog.tsx:261 11939 + msgid "You've already appealed this label and it's being reviewed by our moderation team." 11940 + msgstr "" 11941 + 11942 + #: src/components/moderation/ModerationDetailsDialog.tsx:110 11943 + #: src/lib/moderation/useModerationCauseDescription.ts:109 11944 + msgid "You've chosen to hide a word or tag within this post." 11945 + msgstr "You've chosen to hide a word or tag within this skeey." 11946 + 11947 + #: src/components/contacts/screens/GetContacts.tsx:310 11948 + msgid "You've denied access to your contacts" 11949 + msgstr "" 11950 + 11951 + #: src/state/shell/progress-guide.tsx:236 11952 + msgid "You've found some people to follow" 11953 + msgstr "" 11954 + 11955 + #: src/components/FocusScope/index.tsx:112 11956 + msgid "You've reached the end of the active content." 11957 + msgstr "" 11958 + 11959 + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 11960 + msgid "You've reached the end of your feed! Find some more accounts to follow." 11961 + msgstr "" 11962 + 11963 + #: src/lib/hooks/useCleanError.ts:73 11964 + msgid "You've reached the maximum number of requests allowed. Please try again later." 11965 + msgstr "" 11966 + 11967 + #: src/components/FocusScope/index.tsx:88 11968 + msgid "You've reached the start of the active content." 11969 + msgstr "" 11970 + 11971 + #: src/view/com/composer/state/video.ts:458 11972 + msgid "You've reached your daily limit for video uploads (too many bytes)" 11973 + msgstr "" 11974 + 11975 + #: src/view/com/composer/state/video.ts:462 11976 + msgid "You've reached your daily limit for video uploads (too many videos)" 11977 + msgstr "" 11978 + 11979 + #: src/screens/VideoFeed/index.tsx:1168 11980 + msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" 11981 + msgstr "" 11982 + 11983 + #: src/view/com/modals/DeleteAccount.tsx:84 11984 + msgid "Your account has been deleted" 11985 + msgstr "" 11986 + 11987 + #: src/screens/Takendown.tsx:144 11988 + msgid "Your account has been suspended" 11989 + msgstr "" 11990 + 11991 + #: src/view/com/composer/state/video.ts:466 11992 + msgid "Your account is not yet old enough to upload videos. Please try again later." 11993 + msgstr "" 11994 + 11995 + #: src/screens/Settings/components/ExportCarDialog.tsx:68 11996 + msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." 11997 + msgstr "" 11998 + 11999 + #: src/screens/Takendown.tsx:212 12000 + msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service</0>. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." 12001 + msgstr "" 12002 + 12003 + #: src/screens/Takendown.tsx:152 12004 + msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." 12005 + msgstr "" 12006 + 12007 + #: src/screens/Signup/StepInfo/index.tsx:361 12008 + msgid "Your birth date" 12009 + msgstr "" 12010 + 12011 + #: src/components/Post/Embed/VideoEmbed/index.web.tsx:223 12012 + msgid "Your browser does not support the video format. Please try a different browser." 12013 + msgstr "" 12014 + 12015 + #: src/screens/Messages/components/ChatDisabled.tsx:31 12016 + msgid "Your chats have been disabled" 12017 + msgstr "" 12018 + 12019 + #: src/components/dialogs/InAppBrowserConsent.tsx:69 12020 + msgid "Your choice will be remembered for future links. You can change it at any time in settings." 12021 + msgstr "" 12022 + 12023 + #: src/view/com/notifications/NotificationFeedItem.tsx:376 12024 + msgid "Your contact {firstAuthorLink} is on Bluesky" 12025 + msgstr "" 12026 + 12027 + #: src/view/com/notifications/NotificationFeedItem.tsx:374 12028 + msgid "Your contact {firstAuthorName} is on Bluesky" 12029 + msgstr "" 12030 + 12031 + #: src/components/contacts/screens/ViewMatches.tsx:451 12032 + msgid "Your contact {name}" 12033 + msgstr "" 12034 + 12035 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:531 12036 + msgid "Your current handle <0>{0}</0> will automatically remain reserved for you. You can switch back to it at any time from this account." 12037 + msgstr "" 12038 + 12039 + #: src/screens/Moderation/index.tsx:213 12040 + msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings</0>." 12041 + msgstr "" 12042 + 12043 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:251 12044 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:255 12045 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256 12046 + msgid "Your email" 12047 + msgstr "" 12048 + 12049 + #: src/screens/Login/ForgotPasswordForm.tsx:51 12050 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:81 12051 + #: src/screens/Signup/state.ts:273 12052 + #: src/screens/Signup/StepInfo/index.tsx:146 12053 + msgid "Your email appears to be invalid." 12054 + msgstr "" 12055 + 12056 + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:70 12057 + msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Witchsky." 12058 + msgstr "" 12059 + 12060 + #: src/state/shell/progress-guide.tsx:215 12061 + msgid "Your first like!" 12062 + msgstr "" 12063 + 12064 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:490 12065 + msgid "Your followers" 12066 + msgstr "" 12067 + 12068 + #: src/view/com/posts/FollowingEmptyState.tsx:43 12069 + msgid "Your following feed is empty! Follow more users to see what's happening." 12070 + msgstr "" 12071 + 12072 + #: src/screens/Settings/components/ChangeHandleDialog.tsx:247 12073 + msgid "Your full handle will be <0>@{0}</0>" 12074 + msgstr "" 12075 + 12076 + #: src/Navigation.tsx:555 12077 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:70 12078 + #: src/screens/Settings/ContentAndMediaSettings.tsx:93 12079 + #: src/screens/Settings/ContentAndMediaSettings.tsx:96 12080 + #: src/screens/Settings/InterestsSettings.tsx:47 12081 + msgid "Your interests" 12082 + msgstr "" 12083 + 12084 + #: src/screens/Settings/InterestsSettings.tsx:128 12085 + msgctxt "toast" 12086 + msgid "Your interests have been updated!" 12087 + msgstr "" 12088 + 12089 + #: src/screens/Search/modules/ExploreInterestsCard.tsx:97 12090 + msgid "Your interests help us find what you like!" 12091 + msgstr "" 12092 + 12093 + #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:68 12094 + msgid "Your live event preferences have been updated." 12095 + msgstr "" 12096 + 12097 + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:123 12098 + msgid "Your location data is not tracked and does not leave your device." 12099 + msgstr "" 12100 + 12101 + #: src/screens/Signup/StepInfo/index.tsx:439 12102 + msgid "Your location has been updated." 12103 + msgstr "" 12104 + 12105 + #: src/components/dialogs/MutedWords.tsx:375 12106 + msgid "Your muted words" 12107 + msgstr "" 12108 + 12109 + #: src/screens/Settings/components/ChangePasswordDialog.tsx:71 12110 + msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on." 12111 + msgstr "" 12112 + 12113 + #: src/screens/Signup/StepInfo/index.tsx:175 12114 + msgid "Your password must be at least 8 characters long." 12115 + msgstr "" 12116 + 12117 + #: src/view/com/composer/Composer.tsx:579 12118 + msgid "Your post was sent" 12119 + msgstr "Your skeet was sent" 12120 + 12121 + #: src/view/com/composer/Composer.tsx:576 12122 + msgid "Your posts were sent" 12123 + msgstr "Your skeets were sent" 12124 + 12125 + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:288 12126 + msgid "Your preferred language" 12127 + msgstr "" 12128 + 12129 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 12130 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 12131 + msgid "Your profile picture" 12132 + msgstr "" 12133 + 12134 + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 12135 + msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" 12136 + msgstr "" 12137 + 12138 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 12139 + msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." 12140 + msgstr "Your profile, skeets, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." 12141 + 12142 + #: src/view/com/composer/Composer.tsx:578 12143 + msgid "Your reply was sent" 12144 + msgstr "" 12145 + 12146 + #: src/components/moderation/ReportDialog/index.tsx:514 12147 + msgid "Your report will be sent to <0>{0}</0>." 12148 + msgstr "" 12149 + 12150 + #: src/screens/Settings/InterestsSettings.tsx:61 12151 + msgid "Your selected interests help us serve you content you care about." 12152 + msgstr "" 12153 + 12154 + #: src/components/verification/VerificationsDialog.tsx:66 12155 + msgid "Your verifications" 12156 + msgstr "" 12157 + 12158 + #: src/screens/Settings/AppearanceSettings.tsx:113 12159 + msgid "Zeppelin" 12160 + msgstr ""
+4 -4
src/screens/Bookmarks/index.tsx
··· 57 57 <Layout.Header.BackButton /> 58 58 <Layout.Header.Content> 59 59 <Layout.Header.TitleText> 60 - <Trans>Saved Skeets</Trans> 60 + <Trans>Saved Posts</Trans> 61 61 </Layout.Header.TitleText> 62 62 </Layout.Header.Content> 63 63 <Layout.Header.Slot /> ··· 215 215 const remove = async () => { 216 216 try { 217 217 await bookmark({action: 'delete', uri: post.uri}) 218 - toast.show(_(msg`Removed from saved skeets`), { 218 + toast.show(_(msg`Removed from saved posts`), { 219 219 type: 'info', 220 220 }) 221 221 } catch (e: any) { ··· 253 253 a.italic, 254 254 t.atoms.text_contrast_medium, 255 255 ]}> 256 - <Trans>This skeet was deleted by its author</Trans> 256 + <Trans>This post was deleted by its author</Trans> 257 257 </Text> 258 258 </View> 259 259 <Button 260 - label={_(msg`Remove from saved skeets`)} 260 + label={_(msg`Remove from saved posts`)} 261 261 size="tiny" 262 262 color="secondary" 263 263 onPress={remove}>
+1 -1
src/screens/Moderation/index.tsx
··· 243 243 t.atoms.bg_contrast_25, 244 244 ]}> 245 245 <Link 246 - label={_(msg`View your default skeet interaction settings`)} 246 + label={_(msg`View your default post interaction settings`)} 247 247 testID="interactionSettingsBtn" 248 248 to="/moderation/interaction-settings"> 249 249 {state => (
+2 -2
src/screens/ModerationInteractionSettings/index.tsx
··· 31 31 <Layout.Header.BackButton /> 32 32 <Layout.Header.Content> 33 33 <Layout.Header.TitleText> 34 - <Trans>Skeet Interaction Settings</Trans> 34 + <Trans>Post Interaction Settings</Trans> 35 35 </Layout.Header.TitleText> 36 36 </Layout.Header.Content> 37 37 <Layout.Header.Slot /> ··· 41 41 <Admonition type="tip"> 42 42 <Trans> 43 43 The following settings will be used as your defaults when creating 44 - new skeets. You can edit these for a specific skeet from the 44 + new posts. You can edit these for a specific post from the 45 45 composer. 46 46 </Trans> 47 47 </Admonition>
+1 -1
src/screens/Post/PostLikedBy.tsx
··· 27 27 const {data: resolvedDid} = useResolveDidQuery(name) 28 28 const {data: profile} = useProfileQuery({did: resolvedDid}) 29 29 30 - useSetTitle(profile ? _(msg`Skeet by @${profile.handle}`) : undefined) 30 + useSetTitle(profile ? _(msg`Post by @${profile.handle}`) : undefined) 31 31 32 32 let likeCount 33 33 if (post) {
+1 -1
src/screens/Post/PostQuotes.tsx
··· 27 27 const {data: resolvedDid} = useResolveDidQuery(name) 28 28 const {data: profile} = useProfileQuery({did: resolvedDid}) 29 29 30 - useSetTitle(profile ? _(msg`Skeet by @${profile.handle}`) : undefined) 30 + useSetTitle(profile ? _(msg`Post by @${profile.handle}`) : undefined) 31 31 32 32 let quoteCount 33 33 if (post) {
+4 -4
src/screens/Post/PostRepostedBy.tsx
··· 27 27 const {data: resolvedDid} = useResolveDidQuery(name) 28 28 const {data: profile} = useProfileQuery({did: resolvedDid}) 29 29 30 - useSetTitle(profile ? _(msg`Skeet by @${profile.handle}`) : undefined) 30 + useSetTitle(profile ? _(msg`Post by @${profile.handle}`) : undefined) 31 31 32 32 let quoteCount 33 33 if (post) { ··· 48 48 {post && ( 49 49 <> 50 50 <Layout.Header.TitleText> 51 - <Trans>Reskeeted By</Trans> 51 + <Trans>Reposted By</Trans> 52 52 </Layout.Header.TitleText> 53 53 <Layout.Header.SubtitleText> 54 54 <Plural 55 55 value={quoteCount ?? 0} 56 - one="# reskeet" 57 - other="# reskeets" 56 + one="# repost" 57 + other="# reposts" 58 58 /> 59 59 </Layout.Header.SubtitleText> 60 60 </>
+2 -2
src/screens/PostThread/components/ThreadError.tsx
··· 23 23 const cleanError = useCleanError() 24 24 25 25 const {title, message} = useMemo(() => { 26 - let title = _(msg`Error loading skeet`) 26 + let title = _(msg`Error loading post`) 27 27 let message = _(msg`Something went wrong. Please try again in a moment.`) 28 28 29 29 const {raw, clean} = cleanError(error) 30 30 31 31 if (error.message.startsWith('Post not found')) { 32 - title = _(msg`Skeet not found`) 32 + title = _(msg`Post not found`) 33 33 message = clean || raw || message 34 34 } 35 35
+8 -8
src/screens/PostThread/components/ThreadItemAnchor.tsx
··· 136 136 </View> 137 137 <Text 138 138 style={[a.text_md, a.font_semi_bold, t.atoms.text_contrast_medium]}> 139 - <Trans>Skeet has been deleted</Trans> 139 + <Trans>Post has been deleted</Trans> 140 140 </Text> 141 141 </View> 142 142 </View> ··· 458 458 {post.repostCount != null && 459 459 post.repostCount !== 0 && 460 460 !disableRepostsMetrics ? ( 461 - <Link to={repostsHref} label={_(msg`Reskeets of this skeet`)}> 461 + <Link to={repostsHref} label={_(msg`Reposts of this post`)}> 462 462 <Text 463 463 testID="repostCount-expanded" 464 464 style={[a.text_md, t.atoms.text_contrast_medium]}> ··· 467 467 </Text>{' '} 468 468 <Plural 469 469 value={post.repostCount} 470 - one="reskeet" 471 - other="reskeets" 470 + one="repost" 471 + other="reposts" 472 472 /> 473 473 </Text> 474 474 </Link> ··· 477 477 post.quoteCount !== 0 && 478 478 !post.viewer?.embeddingDisabled && 479 479 !disableQuotesMetrics ? ( 480 - <Link to={quotesHref} label={_(msg`Quotes of this skeet`)}> 480 + <Link to={quotesHref} label={_(msg`Quotes of this post`)}> 481 481 <Text 482 482 testID="quoteCount-expanded" 483 483 style={[a.text_md, t.atoms.text_contrast_medium]}> ··· 495 495 {post.likeCount != null && 496 496 post.likeCount !== 0 && 497 497 !disableLikesMetrics ? ( 498 - <Link to={likesHref} label={_(msg`Likes on this skeet`)}> 498 + <Link to={likesHref} label={_(msg`Likes on this post`)}> 499 499 <Text 500 500 testID="likeCount-expanded" 501 501 style={[a.text_md, t.atoms.text_contrast_medium]}> ··· 657 657 <Button 658 658 label={_(msg`Archived post`)} 659 659 accessibilityHint={_( 660 - msg`Shows information about when this skeet was created`, 660 + msg`Shows information about when this post was created`, 661 661 )} 662 662 onPress={e => { 663 663 e.preventDefault() ··· 698 698 </Prompt.TitleText> 699 699 <Prompt.DescriptionText> 700 700 <Trans> 701 - This skeet claims to have been created on{' '} 701 + This post claims to have been created on{' '} 702 702 <RNText style={[a.font_semi_bold]}> 703 703 {niceDate(i18n, createdAt)} 704 704 </RNText>
+1 -1
src/screens/PostThread/components/ThreadItemPost.tsx
··· 109 109 </View> 110 110 <Text 111 111 style={[a.text_md, a.font_semi_bold, t.atoms.text_contrast_medium]}> 112 - <Trans>Skeet has been deleted</Trans> 112 + <Trans>Post has been deleted</Trans> 113 113 </Text> 114 114 </View> 115 115
+2 -2
src/screens/PostThread/components/ThreadItemPostTombstone.tsx
··· 19 19 const {copy, Icon} = useMemo(() => { 20 20 switch (type) { 21 21 case 'blocked': 22 - return {copy: _(msg`Skeet blocked`), Icon: PersonXIcon} 22 + return {copy: _(msg`Post blocked`), Icon: PersonXIcon} 23 23 case 'not-found': 24 24 default: 25 - return {copy: _(msg`Skeet not found`), Icon: TrashIcon} 25 + return {copy: _(msg`Post not found`), Icon: TrashIcon} 26 26 } 27 27 }, [_, type]) 28 28
+1 -1
src/screens/PostThread/components/ThreadItemTreePost.tsx
··· 105 105 ]}> 106 106 <TrashIcon style={[t.atoms.text]} width={14} /> 107 107 <Text style={[t.atoms.text_contrast_medium, a.mt_2xs]}> 108 - <Trans>Skeet has been deleted</Trans> 108 + <Trans>Post has been deleted</Trans> 109 109 </Text> 110 110 </View> 111 111 {item.ui.isLastChild && !item.ui.precedesChildReadMore && (
+1 -1
src/screens/PostThread/index.tsx
··· 528 528 <Layout.Header.BackButton /> 529 529 <Layout.Header.Content> 530 530 <Layout.Header.TitleText> 531 - <Trans context="description">Skeet</Trans> 531 + <Trans context="description">Post</Trans> 532 532 </Layout.Header.TitleText> 533 533 </Layout.Header.Content> 534 534 <Layout.Header.Slot>
+30 -40
src/screens/Profile/Header/Metrics.tsx
··· 37 37 const disablePostsMetrics = useDisablePostsMetrics() 38 38 39 39 return ( 40 - <> 41 - {disableFollowersMetrics && disableFollowingMetrics && disablePostsMetrics ? ( null ) : 42 - <View 43 - style={[a.flex_row, a.gap_sm, a.align_center]} 44 - pointerEvents="box-none"> 45 - {!disableFollowersMetrics ? ( 46 - <InlineLinkText 47 - testID="profileHeaderFollowersButton" 48 - style={[a.flex_row, t.atoms.text]} 49 - to={makeProfileLink(profile, 'followers')} 50 - label={`${profile.followersCount || 0} ${pluralizedFollowers}`}> 51 - <Text style={[a.font_semi_bold, a.text_md]}>{followers} </Text> 52 - <Text style={[t.atoms.text_contrast_medium, a.text_md]}> 53 - {pluralizedFollowers} 54 - </Text> 55 - </InlineLinkText> 56 - ) : null} 57 - {!disableFollowingMetrics ? ( 58 - <InlineLinkText 59 - testID="profileHeaderFollowsButton" 60 - style={[a.flex_row, t.atoms.text]} 61 - to={makeProfileLink(profile, 'follows')} 62 - label={_(msg`${profile.followsCount || 0} following`)}> 63 - <Text style={[a.font_semi_bold, a.text_md]}>{following} </Text> 64 - <Text style={[t.atoms.text_contrast_medium, a.text_md]}> 65 - {pluralizedFollowings} 66 - </Text> 67 - </InlineLinkText> 68 - ) : null} 69 - {!disablePostsMetrics ? ( 70 - <Text style={[a.font_semi_bold, t.atoms.text, a.text_md]}> 71 - {formatCount(i18n, profile.postsCount || 0)}{' '} 72 - <Text style={[t.atoms.text_contrast_medium, a.font_normal, a.text_md]}> 73 - {plural(profile.postsCount || 0, {one: 'skeet', other: 'skeets'})} 74 - </Text> 75 - </Text> 76 - ) : null} 77 - </View> 78 - } 79 - </> 40 + <View 41 + style={[a.flex_row, a.gap_sm, a.align_center]} 42 + pointerEvents="box-none"> 43 + <InlineLinkText 44 + testID="profileHeaderFollowersButton" 45 + style={[a.flex_row, t.atoms.text]} 46 + to={makeProfileLink(profile, 'followers')} 47 + label={`${profile.followersCount || 0} ${pluralizedFollowers}`}> 48 + <Text style={[a.font_semi_bold, a.text_md]}>{followers} </Text> 49 + <Text style={[t.atoms.text_contrast_medium, a.text_md]}> 50 + {pluralizedFollowers} 51 + </Text> 52 + </InlineLinkText> 53 + <InlineLinkText 54 + testID="profileHeaderFollowsButton" 55 + style={[a.flex_row, t.atoms.text]} 56 + to={makeProfileLink(profile, 'follows')} 57 + label={_(msg`${profile.followsCount || 0} following`)}> 58 + <Text style={[a.font_semi_bold, a.text_md]}>{following} </Text> 59 + <Text style={[t.atoms.text_contrast_medium, a.text_md]}> 60 + {pluralizedFollowings} 61 + </Text> 62 + </InlineLinkText> 63 + <Text style={[a.font_semi_bold, t.atoms.text, a.text_md]}> 64 + {formatCount(i18n, profile.postsCount || 0)}{' '} 65 + <Text style={[t.atoms.text_contrast_medium, a.font_normal, a.text_md]}> 66 + {plural(profile.postsCount || 0, {one: 'post', other: 'posts'})} 67 + </Text> 68 + </Text> 69 + </View> 80 70 ) 81 71 }
+1 -1
src/screens/Profile/ProfileFeed/index.tsx
··· 228 228 {(isScrolledDown || hasNew) && ( 229 229 <LoadLatestBtn 230 230 onPress={onScrollToTop} 231 - label={_(msg`Load new skeets`)} 231 + label={_(msg`Load new posts`)} 232 232 showIndicator={hasNew} 233 233 /> 234 234 )}
+3 -3
src/screens/Profile/ProfileSearch.tsx
··· 21 21 const {data: resolvedDid} = useResolveDidQuery(name) 22 22 const {data: profile} = useProfileQuery({did: resolvedDid}) 23 23 24 - useSetTitle(profile ? _(msg`Search @${profile.handle}'s skeets`) : undefined) 24 + useSetTitle(profile ? _(msg`Search @${profile.handle}'s posts`) : undefined) 25 25 26 26 const fixedParams = useMemo( 27 27 () => ({ ··· 36 36 inputPlaceholder={ 37 37 profile 38 38 ? currentAccount?.did === profile.did 39 - ? _(msg`Search my skeets`) 40 - : _(msg`Search @${profile.handle}'s skeets`) 39 + ? _(msg`Search my posts`) 40 + : _(msg`Search @${profile.handle}'s posts`) 41 41 : _(msg`Search...`) 42 42 } 43 43 fixedParams={fixedParams}
+1 -1
src/screens/Profile/Sections/Feed.tsx
··· 113 113 {(isScrolledDown || hasNew) && ( 114 114 <LoadLatestBtn 115 115 onPress={onScrollToTop} 116 - label={_(msg`Load new skeets`)} 116 + label={_(msg`Load new posts`)} 117 117 showIndicator={hasNew} 118 118 /> 119 119 )}
+1 -1
src/screens/ProfileList/FeedSection.tsx
··· 109 109 {(isScrolledDown || hasNew) && ( 110 110 <LoadLatestBtn 111 111 onPress={onScrollToTop} 112 - label={_(msg`Load new skeets`)} 112 + label={_(msg`Load new posts`)} 113 113 showIndicator={hasNew} 114 114 /> 115 115 )}
+1 -1
src/screens/ProfileList/components/SubscribeMenu.tsx
··· 112 112 control={subscribeMutePromptControl} 113 113 title={_(msg`Mute these accounts?`)} 114 114 description={_( 115 - msg`Muting is private. Muted accounts can interact with you, but you will not see their skeets or receive notifications from them.`, 115 + msg`Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them.`, 116 116 )} 117 117 onConfirm={onSubscribeMute} 118 118 confirmButtonCta={_(msg`Mute list`)}
+1 -1
src/screens/ProfileList/index.tsx
··· 163 163 const isOwner = currentAccount?.did === list.creator.did 164 164 const scrollElRef = useAnimatedRef() 165 165 const addUserDialogControl = useDialogControl() 166 - const sectionTitlesCurate = [_(msg`Skeets`), _(msg`People`)] 166 + const sectionTitlesCurate = [_(msg`Posts`), _(msg`People`)] 167 167 168 168 const moderation = useMemo(() => { 169 169 return moderateUserList(list, moderationOpts)
+1 -1
src/screens/Search/Explore.tsx
··· 996 996 return ( 997 997 <LoadMoreRetryBtn 998 998 label={_( 999 - msg`There was an issue fetching skeets. Tap here to try again.`, 999 + msg`There was an issue fetching posts. Tap here to try again.`, 1000 1000 )} 1001 1001 onPress={fetchNextPageFeedPreviews} 1002 1002 />
+2 -2
src/screens/Search/Shell.tsx
··· 351 351 onSubmitEditing={onSubmit} 352 352 placeholder={ 353 353 inputPlaceholder ?? 354 - _(msg`Search for skeets, users, or feeds`) 354 + _(msg`Search for posts, users, or feeds`) 355 355 } 356 356 hitSlop={{...HITSLOP_20, top: 0}} 357 357 /> ··· 523 523 style={t.atoms.text_contrast_medium as StyleProp<ViewStyle>} 524 524 /> 525 525 <Text style={[t.atoms.text_contrast_medium, a.text_md]}> 526 - <Trans>Find skeets, users, and feeds on Witchsky</Trans> 526 + <Trans>Find posts, users, and feeds on Bluesky</Trans> 527 527 </Text> 528 528 </View> 529 529 </View>
+1 -1
src/screens/Search/modules/ExploreTrendingTopics.tsx
··· 81 81 const postCount = trend.postCount 82 82 ? _( 83 83 plural(trend.postCount, { 84 - other: `${formatCount(i18n, trend.postCount)} skeets`, 84 + other: `${formatCount(i18n, trend.postCount)} posts`, 85 85 }), 86 86 ) 87 87 : null
+2 -2
src/screens/Settings/AccessibilitySettings.tsx
··· 55 55 </SettingsList.ItemText> 56 56 <Toggle.Item 57 57 name="require_alt_text" 58 - label={_(msg`Require alt text before skeeting`)} 58 + label={_(msg`Require alt text before posting`)} 59 59 value={requireAltTextEnabled ?? false} 60 60 onChange={value => setRequireAltTextEnabled(value)} 61 61 style={[a.w_full]}> 62 62 <Toggle.LabelText style={[a.flex_1]}> 63 - <Trans>Require alt text before skeeting</Trans> 63 + <Trans>Require alt text before posting</Trans> 64 64 </Toggle.LabelText> 65 65 <Toggle.Platform /> 66 66 </Toggle.Item>
+2 -2
src/screens/Settings/ActivityPrivacySettings.tsx
··· 49 49 <ItemTextWithSubtitle 50 50 bold 51 51 titleText={ 52 - <Trans>Allow others to be notified of your skeets</Trans> 52 + <Trans>Allow others to be notified of your posts</Trans> 53 53 } 54 54 subtitleText={ 55 55 <Trans> 56 56 This feature allows users to receive notifications for your 57 - new skeets and replies. Who do you want to enable this for? 57 + new posts and replies. Who do you want to enable this for? 58 58 </Trans> 59 59 } 60 60 />
+33 -12
src/screens/Settings/DeerSettings.tsx
··· 427 427 <Toggle.Item 428 428 name="external_share_buttons" 429 429 label={_( 430 - msg`Show "Open original skeet" and "Open skeet in PDSls" buttons`, 430 + msg`Show "Open original post" and "Open post in PDSls" buttons`, 431 431 )} 432 432 value={showExternalShareButtons} 433 433 onChange={value => setShowExternalShareButtons(value)} 434 434 style={[a.w_full]}> 435 435 <Toggle.LabelText style={[a.flex_1]}> 436 436 <Trans> 437 - Show "Open original skeet" and "Open skeet in PDSls" buttons 437 + Show "Open original post" and "Open post in PDSls" buttons 438 438 </Trans> 439 439 </Toggle.LabelText> 440 440 <Toggle.Platform /> ··· 513 513 <SettingsList.ItemText> 514 514 <Trans>Tweaks</Trans> 515 515 </SettingsList.ItemText> 516 - 516 + <Toggle.Item 517 + name="repost_carousel" 518 + label={_(msg`Combine reposts into a horizontal carousel`)} 519 + value={repostCarouselEnabled} 520 + onChange={value => setRepostCarouselEnabled(value)} 521 + style={[a.w_full]}> 522 + <Toggle.LabelText style={[a.flex_1]}> 523 + <Trans>Combine reposts into a horizontal carousel</Trans> 524 + </Toggle.LabelText> 525 + <Toggle.Platform /> 526 + </Toggle.Item> 527 + <Toggle.Item 528 + name="no_discover_fallback" 529 + label={_(msg`Do not fall back to discover feed`)} 530 + value={noDiscoverFallback} 531 + onChange={value => setNoDiscoverFallback(value)} 532 + style={[a.w_full]}> 533 + <Toggle.LabelText style={[a.flex_1]}> 534 + <Trans>Do not fall back to discover feed</Trans> 535 + </Toggle.LabelText> 536 + <Toggle.Platform /> 537 + </Toggle.Item> 517 538 <Toggle.Item 518 539 name="show_link_in_handle" 519 540 label={_( ··· 532 553 533 554 <Toggle.Item 534 555 name="repost_carousel" 535 - label={_(msg`Combine reskeets into a horizontal carousel`)} 556 + label={_(msg`Combine reposts into a horizontal carousel`)} 536 557 value={repostCarouselEnabled} 537 558 onChange={value => setRepostCarouselEnabled(value)} 538 559 style={[a.w_full]}> 539 560 <Toggle.LabelText style={[a.flex_1]}> 540 - <Trans>Combine reskeets into a horizontal carousel</Trans> 561 + <Trans>Combine reposts into a horizontal carousel</Trans> 541 562 </Toggle.LabelText> 542 563 <Toggle.Platform /> 543 564 </Toggle.Item> ··· 588 609 589 610 <Toggle.Item 590 611 name="disable_via_repost_notification" 591 - label={_(msg`Disable "via reskeet" notifications`)} 612 + label={_(msg`Disable via repost notifications`)} 592 613 value={disableViaRepostNotification} 593 614 onChange={value => setDisableViaRepostNotification(value)} 594 615 style={[a.w_full]}> 595 616 <Toggle.LabelText style={[a.flex_1]}> 596 - <Trans>Disable "via reskeet" notifications</Trans> 617 + <Trans>Disable via repost notifications</Trans> 597 618 </Toggle.LabelText> 598 619 <Toggle.Platform /> 599 620 </Toggle.Item> 600 621 <Admonition type="info" style={[a.flex_1]}> 601 622 <Trans> 602 623 Forcefully disables the notifications other people receive when 603 - you like/reskeet a skeet someone else has reskeeted for privacy. 624 + you like/repost a post someone else has reposted for privacy. 604 625 </Trans> 605 626 </Admonition> 606 627 ··· 674 695 675 696 <Toggle.Item 676 697 name="disable_reposts_metrics" 677 - label={_(msg`Disable reskeets metrics`)} 698 + label={_(msg`Disable Reposts Metrics`)} 678 699 value={disableRepostsMetrics} 679 700 onChange={value => setDisableRepostsMetrics(value)} 680 701 style={[a.w_full]}> 681 702 <Toggle.LabelText style={[a.flex_1]}> 682 - <Trans>Disable reskeets metrics</Trans> 703 + <Trans>Disable Reposts Metrics</Trans> 683 704 </Toggle.LabelText> 684 705 <Toggle.Platform /> 685 706 </Toggle.Item> ··· 758 779 759 780 <Toggle.Item 760 781 name="disable_posts_metrics" 761 - label={_(msg`Disable skeets metrics`)} 782 + label={_(msg`Disable posts metrics`)} 762 783 value={disablePostsMetrics} 763 784 onChange={value => setDisablePostsMetrics(value)} 764 785 style={[a.w_full]}> 765 786 <Toggle.LabelText style={[a.flex_1]}> 766 - <Trans>Disable skeets metrics</Trans> 787 + <Trans>Disable posts metrics</Trans> 767 788 </Toggle.LabelText> 768 789 <Toggle.Platform /> 769 790 </Toggle.Item>
+4 -4
src/screens/Settings/FollowingFeedPreferences.tsx
··· 86 86 <Toggle.Item 87 87 type="checkbox" 88 88 name="show-reposts" 89 - label={_(msg`Show reskeets`)} 89 + label={_(msg`Show reposts`)} 90 90 value={showReposts} 91 91 onChange={value => 92 92 setFeedViewPref({ ··· 96 96 <SettingsList.Item> 97 97 <SettingsList.ItemIcon icon={RepostIcon} /> 98 98 <SettingsList.ItemText> 99 - <Trans>Show reskeets</Trans> 99 + <Trans>Show reposts</Trans> 100 100 </SettingsList.ItemText> 101 101 <Toggle.Platform /> 102 102 </SettingsList.Item> ··· 104 104 <Toggle.Item 105 105 type="checkbox" 106 106 name="show-quotes" 107 - label={_(msg`Show quote skeets`)} 107 + label={_(msg`Show quote posts`)} 108 108 value={showQuotePosts} 109 109 onChange={value => 110 110 setFeedViewPref({ ··· 114 114 <SettingsList.Item> 115 115 <SettingsList.ItemIcon icon={QuoteIcon} /> 116 116 <SettingsList.ItemText> 117 - <Trans>Show quote skeets</Trans> 117 + <Trans>Show quote posts</Trans> 118 118 </SettingsList.ItemText> 119 119 <Toggle.Platform /> 120 120 </SettingsList.Item>
+43 -2
src/screens/Settings/LanguageSettings.tsx
··· 3 3 import {msg, Trans} from '@lingui/macro' 4 4 import {useLingui} from '@lingui/react' 5 5 6 - import {APP_LANGUAGES, LANGUAGES} from '#/lib/../locale/languages' 7 6 import { 8 7 type CommonNavigatorParams, 9 8 type NativeStackScreenProps, 10 9 } from '#/lib/routes/types' 11 10 import {languageName, sanitizeAppLanguageSetting} from '#/locale/helpers' 11 + import {APP_LANGUAGES, AppLanguage, LANGUAGES} from '#/locale/languages' 12 12 import {useModalControls} from '#/state/modals' 13 13 import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' 14 14 import {atoms as a, useTheme, web} from '#/alf' 15 15 import {Button, ButtonIcon, ButtonText} from '#/components/Button' 16 + import * as Toggle from '#/components/forms/Toggle' 16 17 import {Check_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check' 17 18 import {PlusLarge_Stroke2_Corner0_Rounded as PlusIcon} from '#/components/icons/Plus' 18 19 import * as Layout from '#/components/Layout' ··· 34 35 35 36 const {openModal} = useModalControls() 36 37 38 + // Language detection for skeet mode 39 + const currentLanguage = sanitizeAppLanguageSetting(langPrefs.appLanguage) 40 + const isEnglishSelected = currentLanguage === AppLanguage.en 41 + const isSkeetModeActive = currentLanguage === AppLanguage.en_skeet 42 + 37 43 const onPressContentLanguages = useCallback(() => { 38 44 openModal({name: 'content-languages-settings'}) 39 45 }, [openModal]) ··· 58 64 [langPrefs, setLangPrefs], 59 65 ) 60 66 67 + const onToggleSkeetModeCheckbox = useCallback( 68 + (newValue: boolean) => { 69 + if (newValue) { 70 + setLangPrefs.setAppLanguage(AppLanguage.en_skeet) 71 + } else { 72 + setLangPrefs.setAppLanguage(AppLanguage.en) 73 + } 74 + }, 75 + [setLangPrefs], 76 + ) 77 + 61 78 const myLanguages = useMemo(() => { 62 79 return ( 63 80 langPrefs.contentLanguages ··· 107 124 <Select.ItemText>{label}</Select.ItemText> 108 125 </Select.Item> 109 126 )} 110 - items={APP_LANGUAGES.map(l => ({ 127 + items={APP_LANGUAGES.filter(l => 128 + isSkeetModeActive 129 + ? l.code2 !== AppLanguage.en 130 + : l.code2 !== AppLanguage.en_skeet, 131 + ).map(l => ({ 111 132 label: l.name, 112 133 value: l.code2, 113 134 }))} 114 135 /> 115 136 </Select.Root> 137 + {(isEnglishSelected || isSkeetModeActive) && ( 138 + <Toggle.Item 139 + name="skeet_mode" 140 + label={_(msg`Call posts skeets`)} 141 + value={isSkeetModeActive ?? false} 142 + onChange={onToggleSkeetModeCheckbox} 143 + style={[a.w_full]}> 144 + <Toggle.LabelText style={[a.flex_1]}> 145 + <Trans>Call posts skeets</Trans> 146 + </Toggle.LabelText> 147 + <Toggle.Platform /> 148 + </Toggle.Item> 149 + /* 150 + <Checkbox 151 + label={_(msg`Call them skeets`)} 152 + value={isSkeetModeActive} 153 + onValueChange={onToggleSkeetModeCheckbox} 154 + /> 155 + */ 156 + )} 116 157 </View> 117 158 </SettingsList.Group> 118 159 <SettingsList.Divider />
+3 -3
src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx
··· 102 102 titleText={<Trans>Activity from others</Trans>} 103 103 subtitleText={ 104 104 <Trans> 105 - Get notified about skeets and replies from accounts you 105 + Get notified about posts and replies from accounts you 106 106 choose. 107 107 </Trans> 108 108 } ··· 211 211 const preview = useMemo(() => { 212 212 const actSub = profile.viewer?.activitySubscription 213 213 if (actSub?.post && actSub?.reply) { 214 - return _(msg`Skeets, Replies`) 214 + return _(msg`Posts, Replies`) 215 215 } else if (actSub?.post) { 216 - return _(msg`Skeets`) 216 + return _(msg`Posts`) 217 217 } else if (actSub?.reply) { 218 218 return _(msg`Replies`) 219 219 }
+1 -1
src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx
··· 40 40 bold 41 41 titleText={<Trans>Likes</Trans>} 42 42 subtitleText={ 43 - <Trans>Get notifications when people like your skeets.</Trans> 43 + <Trans>Get notifications when people like your posts.</Trans> 44 44 } 45 45 /> 46 46 </SettingsList.Item>
+2 -2
src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx
··· 38 38 <SettingsList.ItemIcon icon={LikeRepostIcon} /> 39 39 <ItemTextWithSubtitle 40 40 bold 41 - titleText={<Trans>Likes of your reskeets</Trans>} 41 + titleText={<Trans>Likes of your reposts</Trans>} 42 42 subtitleText={ 43 43 <Trans> 44 - Get notifications when people like skeets that you've reskeeted. 44 + Get notifications when people like posts that you've reposted. 45 45 </Trans> 46 46 } 47 47 />
+1 -1
src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx
··· 40 40 bold 41 41 titleText={<Trans>Quotes</Trans>} 42 42 subtitleText={ 43 - <Trans>Get notifications when people quote your skeets.</Trans> 43 + <Trans>Get notifications when people quote your posts.</Trans> 44 44 } 45 45 /> 46 46 </SettingsList.Item>
+1 -1
src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx
··· 41 41 titleText={<Trans>Replies</Trans>} 42 42 subtitleText={ 43 43 <Trans> 44 - Get notifications when people reply to your skeets. 44 + Get notifications when people reply to your posts. 45 45 </Trans> 46 46 } 47 47 />
+2 -2
src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx
··· 38 38 <SettingsList.ItemIcon icon={RepostIcon} /> 39 39 <ItemTextWithSubtitle 40 40 bold 41 - titleText={<Trans>Reskeets</Trans>} 41 + titleText={<Trans>Reposts</Trans>} 42 42 subtitleText={ 43 - <Trans>Get notifications when people reskeet your skeets.</Trans> 43 + <Trans>Get notifications when people repost your posts.</Trans> 44 44 } 45 45 /> 46 46 </SettingsList.Item>
+3 -3
src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx
··· 38 38 <SettingsList.ItemIcon icon={RepostRepostIcon} /> 39 39 <ItemTextWithSubtitle 40 40 bold 41 - titleText={<Trans>Reskeets of your reskeets</Trans>} 41 + titleText={<Trans>Reposts of your reposts</Trans>} 42 42 subtitleText={ 43 43 <Trans> 44 - Get notifications when people reskeet skeets that you've 45 - reskeeted. 44 + Get notifications when people repost posts that you've 45 + reposted. 46 46 </Trans> 47 47 } 48 48 />
+4 -4
src/screens/Settings/NotificationSettings/index.tsx
··· 173 173 /> 174 174 </SettingsList.LinkItem> 175 175 <SettingsList.LinkItem 176 - label={_(msg`Settings for reskeet notifications`)} 176 + label={_(msg`Settings for repost notifications`)} 177 177 to={{screen: 'RepostNotificationSettings'}} 178 178 contentContainerStyle={[a.align_start]}> 179 179 <SettingsList.ItemIcon icon={RepostIcon} /> 180 180 <ItemTextWithSubtitle 181 - titleText={<Trans>Reskeets</Trans>} 181 + titleText={<Trans>Reposts</Trans>} 182 182 subtitleText={<SettingPreview preference={settings?.repost} />} 183 183 showSkeleton={!settings} 184 184 /> ··· 204 204 contentContainerStyle={[a.align_start]}> 205 205 <SettingsList.ItemIcon icon={LikeRepostIcon} /> 206 206 <ItemTextWithSubtitle 207 - titleText={<Trans>Likes of your reskeets</Trans>} 207 + titleText={<Trans>Likes of your reposts</Trans>} 208 208 subtitleText={ 209 209 <SettingPreview preference={settings?.likeViaRepost} /> 210 210 } ··· 219 219 contentContainerStyle={[a.align_start]}> 220 220 <SettingsList.ItemIcon icon={RepostRepostIcon} /> 221 221 <ItemTextWithSubtitle 222 - titleText={<Trans>Reskeets of your reskeets</Trans>} 222 + titleText={<Trans>Reposts of your reposts</Trans>} 223 223 subtitleText={ 224 224 <SettingPreview preference={settings?.repostViaRepost} /> 225 225 }
+2 -2
src/screens/Settings/PrivacyAndSecuritySettings.tsx
··· 81 81 </SettingsList.LinkItem> 82 82 <SettingsList.LinkItem 83 83 label={_( 84 - msg`Settings for allowing others to be notified of your skeets`, 84 + msg`Settings for allowing others to be notified of your posts`, 85 85 )} 86 86 to={{screen: 'ActivityPrivacySettings'}} 87 87 contentContainerStyle={[a.align_start]}> 88 88 <SettingsList.ItemIcon icon={BellRingingIcon} /> 89 89 <ItemTextWithSubtitle 90 90 titleText={ 91 - <Trans>Allow others to be notified of your skeets</Trans> 91 + <Trans>Allow others to be notified of your posts</Trans> 92 92 } 93 93 subtitleText={ 94 94 <NotificationDeclaration
+2 -2
src/screens/Settings/ThreadPreferences.tsx
··· 45 45 </SettingsList.ItemText> 46 46 <View style={[a.w_full, a.gap_md]}> 47 47 <Text style={[a.flex_1, t.atoms.text_contrast_medium]}> 48 - <Trans>Sort replies to the same skeet by:</Trans> 48 + <Trans>Sort replies to the same post by:</Trans> 49 49 </Text> 50 50 <Toggle.Group 51 51 label={_(msg`Sort replies by`)} ··· 95 95 } 96 96 style={[a.w_full, a.gap_md]}> 97 97 <Toggle.LabelText style={[a.flex_1]}> 98 - <Trans>Show skeet replies in a threaded tree view</Trans> 98 + <Trans>Show post replies in a threaded tree view</Trans> 99 99 </Toggle.LabelText> 100 100 <Toggle.Platform /> 101 101 </Toggle.Item>
+2 -2
src/screens/StarterPack/StarterPackScreen.tsx
··· 189 189 const tabs = [ 190 190 ...(showPeopleTab ? [_(msg`People`)] : []), 191 191 ...(showFeedsTab ? [_(msg`Feeds`)] : []), 192 - ...(showPostsTab ? [_(msg`Skeets`)] : []), 192 + ...(showPostsTab ? [_(msg`Posts`)] : []), 193 193 ] 194 194 195 195 const qrCodeDialogControl = useDialogControl() ··· 563 563 return ( 564 564 <> 565 565 <Menu.Root> 566 - <Menu.Trigger label={_(msg`Reskeet or quote skeet`)}> 566 + <Menu.Trigger label={_(msg`Repost or quote post`)}> 567 567 {({props}) => ( 568 568 <Button 569 569 {...props}
+1 -1
src/screens/VideoFeed/index.tsx
··· 555 555 a.leading_tight, 556 556 a.mx_xl, 557 557 ]}> 558 - <Trans>Skeet has been deleted</Trans> 558 + <Trans>Post has been deleted</Trans> 559 559 </Text> 560 560 </View> 561 561 ) : (
+2 -2
src/state/persisted/schema.ts
··· 222 222 kawaii: false, 223 223 hasCheckedForStarterPack: false, 224 224 subtitlesEnabled: true, 225 - trendingDisabled: true, 226 - trendingVideoDisabled: true, 225 + trendingDisabled: false, 226 + trendingVideoDisabled: false, 227 227 228 228 // deer 229 229 goLinksEnabled: true,
+3 -3
src/state/queries/pinned-post.ts
··· 56 56 }) 57 57 58 58 if (pinCurrentPost) { 59 - Toast.show(_(msg({message: 'Skeet pinned', context: 'toast'}))) 59 + Toast.show(_(msg({message: 'Post pinned', context: 'toast'}))) 60 60 } else { 61 - Toast.show(_(msg({message: 'Skeet unpinned', context: 'toast'}))) 61 + Toast.show(_(msg({message: 'Post unpinned', context: 'toast'}))) 62 62 } 63 63 64 64 queryClient.invalidateQueries({ ··· 72 72 ), 73 73 }) 74 74 } catch (e: any) { 75 - Toast.show(_(msg`Failed to pin skeet`)) 75 + Toast.show(_(msg`Failed to pin post`)) 76 76 logger.error('Failed to pin post', {message: String(e)}) 77 77 // revert optimistic update 78 78 updatePostShadow(queryClient, postUri, {
+2 -2
src/state/shell/progress-guide.tsx
··· 213 213 <ProgressGuideToast 214 214 ref={firstLikeToastRef} 215 215 title={_(msg`Your first like!`)} 216 - subtitle={_(msg`Like 10 skeets to train the Discover feed`)} 216 + subtitle={_(msg`Like 10 posts to train the Discover feed`)} 217 217 /> 218 218 <ProgressGuideToast 219 219 ref={fifthLikeToastRef} 220 220 title={_(msg`Half way there!`)} 221 - subtitle={_(msg`Like 10 skeets to train the Discover feed`)} 221 + subtitle={_(msg`Like 10 posts to train the Discover feed`)} 222 222 /> 223 223 <ProgressGuideToast 224 224 ref={tenthLikeToastRef}
+1 -1
src/view/com/auth/SplashScreen.tsx
··· 52 52 t.atoms.text_contrast_medium, 53 53 a.text_center, 54 54 ]}> 55 - <Trans>Skeet yo stuff! ๐Ÿ—ฃ๏ธ</Trans> 55 + <Trans>What's up?</Trans> 56 56 </Text> 57 57 </View> 58 58
+1 -1
src/view/com/auth/SplashScreen.web.tsx
··· 100 100 a.font_semi_bold, 101 101 t.atoms.text_contrast_medium, 102 102 ]}> 103 - <Trans>Skeet yo shit! ๐Ÿ—ฃ๏ธ</Trans> 103 + <Trans>What's up?</Trans> 104 104 </Text> 105 105 </View> 106 106
+13 -13
src/view/com/composer/Composer.tsx
··· 510 510 let err = cleanError(e.message) 511 511 if (err.includes('not locate record')) { 512 512 err = _( 513 - msg`We're sorry! The skeet you are replying to has been deleted.`, 513 + msg`We're sorry! The post you are replying to has been deleted.`, 514 514 ) 515 515 } else if (e instanceof EmbeddingDisabledError) { 516 - err = _(msg`This skeet's author has disabled quote skeets.`) 516 + err = _(msg`This post's author has disabled quote posts.`) 517 517 } 518 518 setError(err) 519 519 setIsPublishing(false) ··· 573 573 <Toast.Icon /> 574 574 <Toast.Text> 575 575 {thread.posts.length > 1 576 - ? _(msg`Your skeets were sent`) 576 + ? _(msg`Your posts were sent`) 577 577 : replyTo 578 578 ? _(msg`Your reply was sent`) 579 - : _(msg`Your skeet was sent`)} 579 + : _(msg`Your post was sent`)} 580 580 </Toast.Text> 581 581 {postUri && ( 582 582 <Toast.Action 583 - label={_(msg`View skeet`)} 583 + label={_(msg`View post`)} 584 584 onPress={() => { 585 585 const {host: name, rkey} = new AtUri(postUri) 586 586 navigation.navigate('PostThread', {name, rkey}) 587 587 }}> 588 - <Trans context="Action to view the skeet the user just created"> 588 + <Trans context="Action to view the post the user just created"> 589 589 View 590 590 </Trans> 591 591 </Toast.Action> ··· 857 857 const selectTextInputPlaceholder = isReply 858 858 ? isFirstPost 859 859 ? _(msg`Write your reply`) 860 - : _(msg`Add another skeet`) 861 - : _(msg`Anything but skeet`) 860 + : _(msg`Add another post`) 861 + : _(msg`What's up?`) 862 862 const discardPromptControl = Prompt.usePromptControl() 863 863 864 864 const enableSquareButtons = useEnableSquareButtons() ··· 972 972 {canRemovePost && isActive && ( 973 973 <> 974 974 <Button 975 - label={_(msg`Delete skeet`)} 975 + label={_(msg`Delete post`)} 976 976 size="small" 977 977 color="secondary" 978 978 variant="ghost" ··· 997 997 </Button> 998 998 <Prompt.Basic 999 999 control={discardPromptControl} 1000 - title={_(msg`Discard skeet?`)} 1001 - description={_(msg`Are you sure you'd like to discard this skeet?`)} 1000 + title={_(msg`Discard post?`)} 1001 + description={_(msg`Are you sure you'd like to discard this post?`)} 1002 1002 onConfirm={() => { 1003 1003 dispatch({ 1004 1004 type: 'remove_post', ··· 1133 1133 {isReply ? ( 1134 1134 <Trans context="action">Reply</Trans> 1135 1135 ) : isThread ? ( 1136 - <Trans context="action">Skeet All</Trans> 1136 + <Trans context="action">Post All</Trans> 1137 1137 ) : ( 1138 - <Trans context="action">Skeet</Trans> 1138 + <Trans context="action">Post</Trans> 1139 1139 )} 1140 1140 </ButtonText> 1141 1141 </Button>
+1 -1
src/view/com/composer/labels/LabelsBtn.tsx
··· 109 109 <Text style={[t.atoms.text_contrast_medium, a.leading_snug]}> 110 110 <Trans> 111 111 Please add any content warning labels that are applicable for the 112 - media you are skeeting. 112 + media you are posting. 113 113 </Trans> 114 114 </Text> 115 115 </View>
+2 -2
src/view/com/composer/select-language/PostLanguageSelect.tsx
··· 54 54 return ( 55 55 <> 56 56 <Menu.Root> 57 - <Menu.Trigger label={_(msg`Select skeet language`)}> 57 + <Menu.Trigger label={_(msg`Select post language`)}> 58 58 {({props}) => ( 59 59 <LanguageBtn currentLanguages={currentLanguages} {...props} /> 60 60 )} ··· 122 122 hitSlop={LANG_DROPDOWN_HITSLOP} 123 123 label={_( 124 124 msg({ 125 - message: `Skeet language selection`, 125 + message: `Post language selection`, 126 126 comment: `Accessibility label for button that opens dialog to choose post language settings`, 127 127 }), 128 128 )}
+2 -2
src/view/com/composer/select-language/PostLanguageSelectDialog.tsx
··· 184 184 a.text_xl, 185 185 a.mb_sm, 186 186 ]}> 187 - <Trans>Choose Skeet Languages</Trans> 187 + <Trans>Choose Post Languages</Trans> 188 188 </Text> 189 189 <Text 190 190 nativeID="dialog-description" ··· 194 194 a.text_md, 195 195 a.mb_lg, 196 196 ]}> 197 - <Trans>Select up to 3 languages used in this skeet</Trans> 197 + <Trans>Select up to 3 languages used in this post</Trans> 198 198 </Text> 199 199 </View> 200 200
+1 -1
src/view/com/composer/select-language/SuggestedLanguage.tsx
··· 117 117 label={ 118 118 <RNText> 119 119 <Trans> 120 - The skeet you're replying to was marked as being written in{' '} 120 + The post you're replying to was marked as being written in{' '} 121 121 {suggestedLanguageName} by its author. Would you like to reply in{' '} 122 122 <Text style={[a.font_bold]}>{suggestedLanguageName}</Text>? 123 123 </Trans>
+1 -1
src/view/com/feeds/FeedPage.tsx
··· 166 166 {(isScrolledDown || hasNew) && ( 167 167 <LoadLatestBtn 168 168 onPress={onPressLoadLatest} 169 - label={_(msg`Load new skeets`)} 169 + label={_(msg`Load new posts`)} 170 170 showIndicator={hasNew} 171 171 /> 172 172 )}
+12 -12
src/view/com/notifications/NotificationFeedItem.tsx
··· 306 306 other={`${formattedAuthorsCount} others`} 307 307 /> 308 308 </Text>{' '} 309 - liked your skeet 309 + liked your post 310 310 </Trans> 311 311 ) : ( 312 - <Trans>{firstAuthorLink} liked your skeet</Trans> 312 + <Trans>{firstAuthorLink} liked your post</Trans> 313 313 ) 314 314 } else if (item.type === 'repost') { 315 315 a11yLabel = hasMultipleAuthors ··· 330 330 other={`${formattedAuthorsCount} others`} 331 331 /> 332 332 </Text>{' '} 333 - reskeeted your skeet 333 + reposted your post 334 334 </Trans> 335 335 ) : ( 336 - <Trans>{firstAuthorLink} reskeeted your skeet</Trans> 336 + <Trans>{firstAuthorLink} reposted your post</Trans> 337 337 ) 338 338 icon = <RepostIcon size="xl" style={{color: t.palette.positive_500}} /> 339 339 } else if (item.type === 'follow') { ··· 502 502 other={`${formattedAuthorsCount} others`} 503 503 /> 504 504 </Text>{' '} 505 - liked your reskeet 505 + liked your repost 506 506 </Trans> 507 507 ) : ( 508 - <Trans>{firstAuthorLink} liked your reskeet</Trans> 508 + <Trans>{firstAuthorLink} liked your repost</Trans> 509 509 ) 510 510 icon = <RepostHeartIcon size="xl" style={[s.likeColor]} /> 511 511 } else if (item.type === 'repost-via-repost') { ··· 527 527 other={`${formattedAuthorsCount} others`} 528 528 /> 529 529 </Text>{' '} 530 - reskeeted your reskeet 530 + reposted your repost 531 531 </Trans> 532 532 ) : ( 533 - <Trans>{firstAuthorLink} reskeeted your reskeet</Trans> 533 + <Trans>{firstAuthorLink} reposted your repost</Trans> 534 534 ) 535 535 icon = ( 536 536 <RepostRepostIcon size="xl" style={{color: t.palette.positive_500}} /> ··· 549 549 ) 550 550 : _( 551 551 msg`New ${plural(postsCount, { 552 - one: 'skeet', 553 - other: 'skeets', 552 + one: 'post', 553 + other: 'posts', 554 554 })} from ${firstAuthorName}`, 555 555 ) 556 556 notificationContent = hasMultipleAuthors ? ( 557 557 <Trans> 558 - New skeets from {firstAuthorLink} and{' '} 558 + New posts from {firstAuthorLink} and{' '} 559 559 <Text style={[a.text_md, a.font_semi_bold, a.leading_snug]}> 560 560 <Plural 561 561 value={additionalAuthorsCount} ··· 566 566 </Trans> 567 567 ) : ( 568 568 <Trans> 569 - New <Plural value={postsCount} one="skeet" other="skeets" /> from{' '} 569 + New <Plural value={postsCount} one="post" other="posts" /> from{' '} 570 570 {firstAuthorLink} 571 571 </Trans> 572 572 )
+2 -2
src/view/com/post-thread/PostRepostedBy.tsx
··· 87 87 isLoading={isLoadingUri || isLoadingRepostedBy} 88 88 isError={isError} 89 89 emptyType="results" 90 - emptyTitle={_(msg`No reskeets yet`)} 90 + emptyTitle={_(msg`No reposts yet`)} 91 91 emptyMessage={_( 92 - msg`Nobody has reskeeted this yet. Maybe you should be the first!`, 92 + msg`Nobody has reposted this yet. Maybe you should be the first!`, 93 93 )} 94 94 errorMessage={cleanError(resolveError || error)} 95 95 sideBorders={false}
+1 -1
src/view/com/posts/DiscoverFallbackHeader.tsx
··· 27 27 <View style={{flex: 1}}> 28 28 <Text type="md" style={pal.text}> 29 29 <Trans> 30 - We ran out of skeets from your follows. Here's the latest from{' '} 30 + We ran out of posts from your follows. Here's the latest from{' '} 31 31 <TextLink 32 32 type="md-medium" 33 33 href="/profile/bsky.app/feed/whats-hot"
+1 -1
src/view/com/posts/PostFeed.tsx
··· 866 866 return ( 867 867 <LoadMoreRetryBtn 868 868 label={_( 869 - msg`There was an issue fetching skeets. Tap here to try again.`, 869 + msg`There was an issue fetching posts. Tap here to try again.`, 870 870 )} 871 871 onPress={onPressRetryLoadMore} 872 872 />
+1 -1
src/view/com/posts/PostFeedItemCarousel.tsx
··· 63 63 ]}> 64 64 <Text style={[a.text_sm, a.font_bold, t.atoms.text_contrast_medium]}> 65 65 {items.length}{' '} 66 - <Plural value={items.length} one="reskeet" other="reskeets" /> 66 + <Plural value={items.length} one="repost" other="reposts" /> 67 67 </Text> 68 68 <View style={[a.gap_md, a.flex_row, a.align_end]}> 69 69 <Button
+3 -3
src/view/com/posts/PostFeedReason.tsx
··· 74 74 style={styles.includeReason} 75 75 to={makeProfileLink(reason.by)} 76 76 label={ 77 - isOwner ? _(msg`Reskeeted by you`) : _(msg`Reskeeted by ${reposter}`) 77 + isOwner ? _(msg`Reposted by you`) : _(msg`Reposted by ${reposter}`) 78 78 } 79 79 onPress={onOpenReposter}> 80 80 <RepostIcon ··· 91 91 ]} 92 92 numberOfLines={1}> 93 93 {isOwner ? ( 94 - <Trans>Reskeeted by you</Trans> 94 + <Trans>Reposted by you</Trans> 95 95 ) : ( 96 - <Trans>Reskeeted by {reposter}</Trans> 96 + <Trans>Reposted by {reposter}</Trans> 97 97 )} 98 98 </Text> 99 99 </ProfileHoverCard>
+2 -2
src/view/com/profile/ProfileMenu.tsx
··· 336 336 </Menu.Item> 337 337 <Menu.Item 338 338 testID="profileHeaderDropdownSearchBtn" 339 - label={_(msg`Search skeets`)} 339 + label={_(msg`Search posts`)} 340 340 onPress={onPressSearch}> 341 341 <Menu.ItemText> 342 - <Trans>Search skeets</Trans> 342 + <Trans>Search posts</Trans> 343 343 </Menu.ItemText> 344 344 <Menu.ItemIcon icon={SearchIcon} /> 345 345 </Menu.Item>
+1 -1
src/view/screens/ModerationMutedAccounts.tsx
··· 200 200 ]}> 201 201 <Text style={[a.text_center, a.text_sm, t.atoms.text_contrast_high]}> 202 202 <Trans> 203 - Muted accounts have their skeets removed from your feed and from your 203 + Muted accounts have their posts removed from your feed and from your 204 204 notifications. Mutes are completely private. 205 205 </Trans> 206 206 </Text>
+1 -1
src/view/screens/PostThread.tsx
··· 26 26 const {data: resolvedDid} = useResolveDidQuery(name) 27 27 const {data: profile} = useProfileQuery({did: resolvedDid}) 28 28 29 - useSetTitle(profile ? _(msg`Skeet by @${profile.handle}`) : undefined) 29 + useSetTitle(profile ? _(msg`Post by @${profile.handle}`) : undefined) 30 30 31 31 useFocusEffect( 32 32 useCallback(() => {
+1 -1
src/view/screens/Profile.tsx
··· 231 231 const sectionTitles = [ 232 232 showFiltersTab ? _(msg`Labels`) : undefined, 233 233 showListsTab && hasLabeler ? _(msg`Lists`) : undefined, 234 - showPostsTab ? _(msg`Skeets`) : undefined, 234 + showPostsTab ? _(msg`Posts`) : undefined, 235 235 showRepliesTab ? _(msg`Replies`) : undefined, 236 236 showMediaTab ? _(msg`Media`) : undefined, 237 237 showVideosTab ? _(msg`Videos`) : undefined,
+1 -1
src/view/shell/desktop/LeftNav.tsx
··· 588 588 style={enableSquareButtons ? [a.rounded_sm] : [a.rounded_full]}> 589 589 <ButtonIcon icon={EditBig} position="left" /> 590 590 <ButtonText> 591 - <Trans context="action">New Skeet</Trans> 591 + <Trans context="action">New Post</Trans> 592 592 </ButtonText> 593 593 </Button> 594 594 </View>

History

1 round 4 comments
sign up or login to add to the discussion
2 commits
expand
Revert changing "post" to "skeet"
Implement new locale "en-skeet"
expand 4 comments

Ok, so that didn't change anything at all, because tangled doesn't do per-commit diffs. Lame !! It'll look prettier in the commit history.

Look at DeerSettings.tsx, LanguageSettings.tsx, and the js/ts files in the locale directory for the real meat of this change.

this requiring editing the messages.po file is genuinely an issue as that causes insane merge conflicts when trying to merge social-app commits and unless u perfectly know what ur doing (which is hard with how large that file is) can heavily break text in witchsky, its something that has happened before and is a major reason why social app forks avoid modifying those files, this probably needs to be approached differently

closing this because editing any messages.po files as a soft-fork is ๐Ÿ˜จ (and people from languages other than English should be able to change their word for 'post')

we tried to do this ourselves and i immediately borked the client! let's... not repeat that.

closed without merging