Bluesky app fork with some witchin' additions ๐Ÿ’ซ
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[๐Ÿด] Copy tweaks (#4042)

* `notifications` -> `conversation`

* `users` -> `people`

* `other participants` -> `the other participant`

* rename

authored by

Hailey and committed by
GitHub
400c2693 b635d000

+10 -10
+4 -4
src/components/dms/ConvoMenu.tsx
··· 171 171 <Menu.ItemIcon icon={Person} /> 172 172 </Menu.Item> 173 173 <Menu.Item 174 - label={_(msg`Mute notifications`)} 174 + label={_(msg`Mute conversation`)} 175 175 onPress={() => muteConvo({mute: !convo?.muted})}> 176 176 <Menu.ItemText> 177 177 {convo?.muted ? ( 178 - <Trans>Unmute notifications</Trans> 178 + <Trans>Unmute conversation</Trans> 179 179 ) : ( 180 - <Trans>Mute notifications</Trans> 180 + <Trans>Mute conversation</Trans> 181 181 )} 182 182 </Menu.ItemText> 183 183 <Menu.ItemIcon icon={convo?.muted ? Unmute : Mute} /> ··· 222 222 control={leaveConvoControl} 223 223 title={_(msg`Leave conversation`)} 224 224 description={_( 225 - msg`Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants.`, 225 + msg`Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant.`, 226 226 )} 227 227 confirmButtonCta={_(msg`Leave`)} 228 228 confirmButtonColor="negative"
+1 -1
src/components/dms/MessageMenu.tsx
··· 119 119 control={deleteControl} 120 120 title={_(msg`Delete message`)} 121 121 description={_( 122 - msg`Are you sure you want to delete this message? The message will be deleted for you, but not for other participants.`, 122 + msg`Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant.`, 123 123 )} 124 124 confirmButtonCta={_(msg`Delete`)} 125 125 confirmButtonColor="negative"
+1 -1
src/screens/Messages/Conversation/index.tsx
··· 277 277 size={32} 278 278 profile={profile} 279 279 moderation={moderation.ui('avatar')} 280 - disable={moderation.blocked} 280 + disableHoverCard={moderation.blocked} 281 281 /> 282 282 <Text 283 283 style={[a.text_lg, a.font_bold, a.pt_sm, a.pb_2xs]}
+1 -1
src/screens/Messages/Settings.tsx
··· 62 62 } 63 63 items={[ 64 64 {label: _(msg`Everyone`), value: 'all'}, 65 - {label: _(msg`People I Follow`), value: 'following'}, 65 + {label: _(msg`Users I follow`), value: 'following'}, 66 66 {label: _(msg`No one`), value: 'none'}, 67 67 ]} 68 68 onSelect={onSelectItem}
+3 -3
src/view/com/util/UserAvatar.tsx
··· 51 51 interface PreviewableUserAvatarProps extends BaseUserAvatarProps { 52 52 moderation?: ModerationUI 53 53 profile: AppBskyActorDefs.ProfileViewBasic 54 - disable?: boolean 54 + disableHoverCard?: boolean 55 55 onBeforePress?: () => void 56 56 } 57 57 ··· 384 384 let PreviewableUserAvatar = ({ 385 385 moderation, 386 386 profile, 387 - disable, 387 + disableHoverCard, 388 388 onBeforePress, 389 389 ...rest 390 390 }: PreviewableUserAvatarProps): React.ReactNode => { ··· 397 397 }, [profile, queryClient, onBeforePress]) 398 398 399 399 return ( 400 - <ProfileHoverCard did={profile.did} disable={disable}> 400 + <ProfileHoverCard did={profile.did} disable={disableHoverCard}> 401 401 <Link 402 402 label={_(msg`See profile`)} 403 403 to={makeProfileLink({