deer social fork for personal usage. but you might see a use idk. github mirror
4
fork

Configure Feed

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

they're called bookmarks

ayla d8a80b61 bd6f11fc

+25 -19
+1 -1
bskyweb/cmd/bskyweb/server.go
··· 331 331 e.GET("/start/:handleOrDID/:rkey", server.WebStarterPack) 332 332 333 333 // bookmarks 334 - e.GET("/saved", server.WebGeneric) 334 + e.GET("/bookmarks", server.WebGeneric) 335 335 336 336 // ipcc 337 337 e.GET("/ipcc", server.WebIpCC)
+1 -1
src/Navigation.tsx
··· 597 597 name="Bookmarks" 598 598 getComponent={() => BookmarksScreen} 599 599 options={{ 600 - title: title(msg`Saved Posts`), 600 + title: title(msg`Bookmarks`), 601 601 requireAuth: true, 602 602 }} 603 603 />
+4 -4
src/components/PostControls/BookmarkButton.tsx
··· 39 39 const undoLabel = _( 40 40 msg({ 41 41 message: `Undo`, 42 - context: `Button label to undo saving/removing a post from saved posts.`, 42 + context: `Button label to undo saving/removing a post from your bookmarks.`, 43 43 }), 44 44 ) 45 45 ··· 91 91 <toast.Outer> 92 92 <toast.Icon icon={TrashIcon} /> 93 93 <toast.Text> 94 - <Trans>Removed from saved posts</Trans> 94 + <Trans>Removed from your bookmarks</Trans> 95 95 </toast.Text> 96 96 {!disableUndo && ( 97 97 <toast.Action ··· 125 125 big={big} 126 126 label={ 127 127 isBookmarked 128 - ? _(msg`Remove from saved posts`) 129 - : _(msg`Add to saved posts`) 128 + ? _(msg`Remove from your bookmarks`) 129 + : _(msg`Add to your bookmarks`) 130 130 } 131 131 onPress={onHandlePress} 132 132 hitSlop={hitSlop}>
+4 -4
src/components/dialogs/nuxs/BookmarksAnnouncement.tsx
··· 34 34 <Dialog.Handle /> 35 35 36 36 <Dialog.ScrollableInner 37 - label={_(msg`Introducing saved posts AKA bookmarks`)} 37 + label={_(msg`Introducing bookmarks`)} 38 38 style={[web({maxWidth: 440})]} 39 39 contentContainerStyle={[ 40 40 { ··· 140 140 maxWidth: 300, 141 141 }, 142 142 ]}> 143 - <Trans>Saved Posts</Trans> 143 + <Trans>Bookmarks</Trans> 144 144 </Text> 145 145 <Text 146 146 style={[ ··· 152 152 }, 153 153 ]}> 154 154 <Trans> 155 - Finally! Keep track of posts that matter to you. Save them to 156 - revisit anytime. 155 + Finally! Keep track of posts that matter to you. Bookmark them 156 + to revisit anytime. 157 157 </Trans> 158 158 </Text> 159 159 </View>
+1 -1
src/routes.ts
··· 91 91 StarterPackShort: '/starter-pack-short/:code', 92 92 StarterPackWizard: '/starter-pack/create', 93 93 VideoFeed: '/video-feed', 94 - Bookmarks: '/saved', 94 + Bookmarks: '/bookmarks', 95 95 })
+1 -1
src/screens/Bookmarks/components/EmptyState.tsx
··· 32 32 a.text_center, 33 33 t.atoms.text_contrast_medium, 34 34 ]}> 35 - <Trans>Nothing saved yet</Trans> 35 + <Trans>Nothing bookmarked yet</Trans> 36 36 </Text> 37 37 </View> 38 38 <View style={[a.pt_2xl]}>
+3 -3
src/screens/Bookmarks/index.tsx
··· 52 52 <Layout.Header.BackButton /> 53 53 <Layout.Header.Content> 54 54 <Layout.Header.TitleText> 55 - <Trans>Saved Posts</Trans> 55 + <Trans>Bookmarks</Trans> 56 56 </Layout.Header.TitleText> 57 57 </Layout.Header.Content> 58 58 <Layout.Header.Slot /> ··· 204 204 const remove = async () => { 205 205 try { 206 206 await bookmark({action: 'delete', uri: post.uri}) 207 - toast.show(_(msg`Removed from saved posts`), { 207 + toast.show(_(msg`Removed from bookmarks`), { 208 208 type: 'info', 209 209 }) 210 210 } catch (e: any) { ··· 246 246 </Text> 247 247 </View> 248 248 <Button 249 - label={_(msg`Remove from saved posts`)} 249 + label={_(msg`Remove from bookmarks`)} 250 250 size="tiny" 251 251 color="secondary" 252 252 onPress={remove}>
+5 -1
src/screens/PostThread/components/ThreadItemAnchor.tsx
··· 487 487 <Text style={[a.text_md, a.font_bold, t.atoms.text]}> 488 488 {formatPostStatCount(post.bookmarkCount)} 489 489 </Text>{' '} 490 - <Plural value={post.bookmarkCount} one="save" other="saves" /> 490 + <Plural 491 + value={post.bookmarkCount} 492 + one="bookmark" 493 + other="bookmarks" 494 + /> 491 495 </Text> 492 496 ) : null} 493 497 </View>
+3 -1
src/view/shell/Drawer.tsx
··· 568 568 <Bookmark style={[t.atoms.text]} width={iconWidth} /> 569 569 ) 570 570 } 571 - label={_(msg({message: 'Saved', context: 'link to bookmarks screen'}))} 571 + label={_( 572 + msg({message: 'Bookmarks', context: 'link to bookmarks screen'}), 573 + )} 572 574 onPress={onPress} 573 575 /> 574 576 )
+2 -2
src/view/shell/desktop/LeftNav.tsx
··· 747 747 label={_(msg`Lists`)} 748 748 /> 749 749 <NavItem 750 - href="/saved" 750 + href="/bookmarks" 751 751 icon={ 752 752 <Bookmark 753 753 style={pal.text} ··· 764 764 } 765 765 label={_( 766 766 msg({ 767 - message: 'Saved', 767 + message: 'Bookmarks', 768 768 context: 'link to bookmarks screen', 769 769 }), 770 770 )}