diff options
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/com/auth/SplashScreen.web.tsx | 13 | ||||
-rw-r--r-- | src/view/com/home/HomeHeaderLayoutMobile.tsx | 2 | ||||
-rw-r--r-- | src/view/com/posts/FeedShutdownMsg.tsx | 1 | ||||
-rw-r--r-- | src/view/screens/Settings/ExportCarDialog.tsx | 1 | ||||
-rw-r--r-- | src/view/screens/Storybook/Links.tsx | 6 |
5 files changed, 17 insertions, 6 deletions
diff --git a/src/view/com/auth/SplashScreen.web.tsx b/src/view/com/auth/SplashScreen.web.tsx index 6df4e439a..9ffcbfb9d 100644 --- a/src/view/com/auth/SplashScreen.web.tsx +++ b/src/view/com/auth/SplashScreen.web.tsx @@ -132,6 +132,7 @@ export const SplashScreen = ({ function Footer() { const t = useTheme() + const {_} = useLingui() return ( <View @@ -147,13 +148,19 @@ function Footer() { a.flex_1, t.atoms.border_contrast_medium, ]}> - <InlineLinkText to="https://bsky.social"> + <InlineLinkText + label={_(msg`Learn more about Bluesky`)} + to="https://bsky.social"> <Trans>Business</Trans> </InlineLinkText> - <InlineLinkText to="https://bsky.social/about/blog"> + <InlineLinkText + label={_(msg`Read the Bluesky blog`)} + to="https://bsky.social/about/blog"> <Trans>Blog</Trans> </InlineLinkText> - <InlineLinkText to="https://bsky.social/about/join"> + <InlineLinkText + label={_(msg`See jobs at Bluesky`)} + to="https://bsky.social/about/join"> <Trans>Jobs</Trans> </InlineLinkText> diff --git a/src/view/com/home/HomeHeaderLayoutMobile.tsx b/src/view/com/home/HomeHeaderLayoutMobile.tsx index ed353cf16..e537abfaa 100644 --- a/src/view/com/home/HomeHeaderLayoutMobile.tsx +++ b/src/view/com/home/HomeHeaderLayoutMobile.tsx @@ -73,7 +73,7 @@ export function HomeHeaderLayoutMobile({ ]}> {IS_DEV && ( <> - <Link to="/sys/debug"> + <Link label="View storybook" to="/sys/debug"> <ColorPalette size="md" /> </Link> </> diff --git a/src/view/com/posts/FeedShutdownMsg.tsx b/src/view/com/posts/FeedShutdownMsg.tsx index 36b1706cb..f12ecf12b 100644 --- a/src/view/com/posts/FeedShutdownMsg.tsx +++ b/src/view/com/posts/FeedShutdownMsg.tsx @@ -99,6 +99,7 @@ export function FeedShutdownMsg({feedUri}: {feedUri: string}) { <Trans> This feed is no longer online. We are showing{' '} <InlineLinkText + label={_(msg`The Discover feed`)} to="/profile/bsky.app/feed/whats-hot" style={[a.text_md]}> Discover diff --git a/src/view/screens/Settings/ExportCarDialog.tsx b/src/view/screens/Settings/ExportCarDialog.tsx index 0daa3c8c9..a6ddb3820 100644 --- a/src/view/screens/Settings/ExportCarDialog.tsx +++ b/src/view/screens/Settings/ExportCarDialog.tsx @@ -94,6 +94,7 @@ export function ExportCarDialog({ This feature is in beta. You can read more about repository exports in{' '} <InlineLinkText + label={_(msg`View blogpost for more details`)} to="https://docs.bsky.app/blog/repo-export" style={[a.text_sm]}> this blogpost diff --git a/src/view/screens/Storybook/Links.tsx b/src/view/screens/Storybook/Links.tsx index d35db79bc..465ce0d6f 100644 --- a/src/view/screens/Storybook/Links.tsx +++ b/src/view/screens/Storybook/Links.tsx @@ -13,18 +13,20 @@ export function Links() { <H1>Links</H1> <View style={[a.gap_md, a.align_start]}> - <InlineLinkText to="https://google.com" style={[a.text_lg]}> + <InlineLinkText label="foo" to="https://google.com" style={[a.text_lg]}> https://google.com </InlineLinkText> - <InlineLinkText to="https://google.com" style={[a.text_lg]}> + <InlineLinkText label="foo" to="https://google.com" style={[a.text_lg]}> External with custom children (google.com) </InlineLinkText> <InlineLinkText + label="foo" to="https://bsky.social" style={[a.text_md, t.atoms.text_contrast_low]}> Internal (bsky.social) </InlineLinkText> <InlineLinkText + label="foo" to="https://bsky.app/profile/bsky.app" style={[a.text_md]}> Internal (bsky.app) |