We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c4b908 commit c26906eCopy full SHA for c26906e
src/view/shell/Drawer.tsx
@@ -568,7 +568,7 @@ let BookmarksMenuItem = ({
568
<Bookmark style={[t.atoms.text]} width={iconWidth} />
569
)
570
}
571
- label={_(msg`Saved`)}
+ label={_(msg({message: 'Saved', context: 'link to bookmarks screen'}))}
572
onPress={onPress}
573
/>
574
src/view/shell/desktop/LeftNav.tsx
@@ -760,7 +760,12 @@ export function DesktopLeftNav() {
760
width={NAV_ICON_WIDTH}
761
762
763
+ label={_(
764
+ msg({
765
+ message: 'Saved',
766
+ context: 'link to bookmarks screen',
767
+ }),
768
+ )}
769
770
<NavItem
771
href={currentAccount ? makeProfileLink(currentAccount) : '/'}
0 commit comments