An ATproto social media client -- with an independent Appview.
6
fork

Configure Feed

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

change copy on list blocked (#7316)

authored by

Hailey and committed by
GitHub
6c40efb3 2dc6932f

+22 -11
+22 -11
src/screens/List/ListHiddenScreen.tsx
··· 123 123 /> 124 124 <View style={[a.gap_sm, a.align_center]}> 125 125 <Text style={[a.font_bold, a.text_3xl]}> 126 - <Trans>List has been hidden</Trans> 126 + {list.creator.viewer?.blocking || list.creator.viewer?.blockedBy ? ( 127 + <Trans>Creator has been blocked</Trans> 128 + ) : ( 129 + <Trans>List has been hidden</Trans> 130 + )} 127 131 </Text> 128 132 <Text 129 133 style={[ ··· 133 137 t.atoms.text_contrast_high, 134 138 {lineHeight: 1.4}, 135 139 ]}> 136 - <Trans> 137 - This list - created by{' '} 138 - <Text style={[a.text_md, !isOwner && a.font_bold]}> 139 - {isOwner 140 - ? _(msg`you`) 141 - : sanitizeHandle(list.creator.handle, '@')} 142 - </Text>{' '} 143 - - contains possible violations of Bluesky's community guidelines 144 - in its name or description. 145 - </Trans> 140 + {list.creator.viewer?.blocking || list.creator.viewer?.blockedBy ? ( 141 + <Trans> 142 + Either the creator of this list has blocked you or you have 143 + blocked the creator. 144 + </Trans> 145 + ) : ( 146 + <Trans> 147 + This list - created by{' '} 148 + <Text style={[a.text_md, !isOwner && a.font_bold]}> 149 + {isOwner 150 + ? _(msg`you`) 151 + : sanitizeHandle(list.creator.handle, '@')} 152 + </Text>{' '} 153 + - contains possible violations of Bluesky's community guidelines 154 + in its name or description. 155 + </Trans> 156 + )} 146 157 </Text> 147 158 </View> 148 159 </View>