add translation context for "saved" (#8982)
This commit is contained in:
@@ -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}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -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) : '/'}
|
||||||
|
|||||||
Reference in New Issue
Block a user