add translation context for "saved" (#8982)

This commit is contained in:
Samuel Newman
2025-09-05 17:29:57 +03:00
committed by GitHub
parent 0c4b908020
commit c26906e15c
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -568,7 +568,7 @@ let BookmarksMenuItem = ({
<Bookmark style={[t.atoms.text]} width={iconWidth} /> <Bookmark style={[t.atoms.text]} width={iconWidth} />
) )
} }
label={_(msg`Saved`)} label={_(msg({message: 'Saved', context: 'link to bookmarks screen'}))}
onPress={onPress} onPress={onPress}
/> />
) )
+6 -1
View File
@@ -760,7 +760,12 @@ export function DesktopLeftNav() {
width={NAV_ICON_WIDTH} width={NAV_ICON_WIDTH}
/> />
} }
label={_(msg`Saved`)} label={_(
msg({
message: 'Saved',
context: 'link to bookmarks screen',
}),
)}
/> />
<NavItem <NavItem
href={currentAccount ? makeProfileLink(currentAccount) : '/'} href={currentAccount ? makeProfileLink(currentAccount) : '/'}