Skip to content

Commit c26906e

Browse files
authored
add translation context for "saved" (#8982)
1 parent 0c4b908 commit c26906e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/view/shell/Drawer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ let BookmarksMenuItem = ({
568568
<Bookmark style={[t.atoms.text]} width={iconWidth} />
569569
)
570570
}
571-
label={_(msg`Saved`)}
571+
label={_(msg({message: 'Saved', context: 'link to bookmarks screen'}))}
572572
onPress={onPress}
573573
/>
574574
)

src/view/shell/desktop/LeftNav.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,12 @@ export function DesktopLeftNav() {
760760
width={NAV_ICON_WIDTH}
761761
/>
762762
}
763-
label={_(msg`Saved`)}
763+
label={_(
764+
msg({
765+
message: 'Saved',
766+
context: 'link to bookmarks screen',
767+
}),
768+
)}
764769
/>
765770
<NavItem
766771
href={currentAccount ? makeProfileLink(currentAccount) : '/'}

0 commit comments

Comments
 (0)