add translation context for "saved"

This commit is contained in:
Samuel Newman
2025-09-05 13:29:03 +03:00
parent bc827dc97f
commit 2e59de52a8
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} />
)
}
label={_(msg`Saved`)}
label={_(msg({message: 'Saved', context: 'link to bookmarks screen'}))}
onPress={onPress}
/>
)
+6 -1
View File
@@ -760,7 +760,12 @@ export function DesktopLeftNav() {
width={NAV_ICON_WIDTH}
/>
}
label={_(msg`Saved`)}
label={_(
msg({
message: 'Saved',
context: 'link to bookmarks screen',
}),
)}
/>
<NavItem
href={currentAccount ? makeProfileLink(currentAccount) : '/'}