Bluesky app fork with some witchin' additions 💫

add translation context for "saved" (#8982)

authored by samuel.fm and committed by

GitHub c26906e1 0c4b9080

+7 -2
+1 -1
src/view/shell/Drawer.tsx
··· 568 568 <Bookmark style={[t.atoms.text]} width={iconWidth} /> 569 569 ) 570 570 } 571 - label={_(msg`Saved`)} 571 + label={_(msg({message: 'Saved', context: 'link to bookmarks screen'}))} 572 572 onPress={onPress} 573 573 /> 574 574 )
+6 -1
src/view/shell/desktop/LeftNav.tsx
··· 760 760 width={NAV_ICON_WIDTH} 761 761 /> 762 762 } 763 - label={_(msg`Saved`)} 763 + label={_( 764 + msg({ 765 + message: 'Saved', 766 + context: 'link to bookmarks screen', 767 + }), 768 + )} 764 769 /> 765 770 <NavItem 766 771 href={currentAccount ? makeProfileLink(currentAccount) : '/'}