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

Configure Feed

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

refactor: label fixme

serenity e703962e c6532ccc

+7 -6
+4 -4
src/components/Post/Embed/index.tsx
··· 175 175 case 'post_not_found': { 176 176 return ( 177 177 <PostPlaceholderText> 178 - <Trans>Deleted </Trans> 178 + <Trans>Deleted</Trans> 179 179 </PostPlaceholderText> 180 180 ) 181 181 } 182 182 case 'post_blocked': { 183 183 return ( 184 184 <PostPlaceholderText> 185 - <Trans>Blocked </Trans> 185 + <Trans>Blocked</Trans> 186 186 </PostPlaceholderText> 187 187 ) 188 188 } ··· 208 208 return ( 209 209 <PostPlaceholderText> 210 210 {isViewerOwner ? ( 211 - <Trans> Removed by you </Trans> 211 + <Trans>Removed by you</Trans> 212 212 ) : ( 213 - <Trans>Removed by author </Trans> 213 + <Trans>Removed by author</Trans> 214 214 )} 215 215 </PostPlaceholderText> 216 216 )
+3 -2
src/screens/Settings/ExperimentalSettings.tsx
··· 91 91 <Toggle.Item 92 92 name="direct_fetch_records" 93 93 label={_( 94 - msg`Fetch records directly from PDS to see through quote blocks`, 94 + msg`FIXME: Fetch records directly from PDS to see through quote blocks`, 95 95 )} 96 96 value={directFetchRecords} 97 97 onChange={value => setDirectFetchRecords(value)} 98 98 style={[a.w_full]}> 99 99 <Toggle.LabelText style={[a.flex_1]}> 100 100 <Trans> 101 - Fetch records directly from PDS to see through quote blocks 101 + FIXME: Fetch records directly from PDS to see through quote 102 + blocks 102 103 </Trans> 103 104 </Toggle.LabelText> 104 105 <Toggle.Platform />