my fork of the bluesky client

Edit self hosting copy (#5469)

* Edit self hosting copy

* Tweak

* Tweak

authored by

Eric Bailey and committed by
GitHub
dbe1df7a b626b934

+9 -4
+9 -4
src/view/com/auth/server-input/index.tsx
··· 3 3 import {msg, Trans} from '@lingui/macro' 4 4 import {useLingui} from '@lingui/react' 5 5 6 + import {BSKY_SERVICE} from '#/lib/constants' 6 7 import * as persisted from '#/state/persisted' 7 - import {BSKY_SERVICE} from 'lib/constants' 8 8 import {atoms as a, useBreakpoints, useTheme} from '#/alf' 9 9 import {Button, ButtonText} from '#/components/Button' 10 10 import * as Dialog from '#/components/Dialog' 11 11 import * as TextField from '#/components/forms/TextField' 12 12 import * as ToggleButton from '#/components/forms/ToggleButton' 13 13 import {Globe_Stroke2_Corner0_Rounded as Globe} from '#/components/icons/Globe' 14 + import {InlineLinkText} from '#/components/Link' 14 15 import {P, Text} from '#/components/Typography' 15 16 16 17 export function ServerInputDialog({ ··· 153 154 ]}> 154 155 <Trans> 155 156 Bluesky is an open network where you can choose your hosting 156 - provider. Custom hosting is now available in beta for 157 - developers. 158 - </Trans> 157 + provider. If you're a developer, you can host your own server. 158 + </Trans>{' '} 159 + <InlineLinkText 160 + label={_(msg`Learn more about self hosting your PDS.`)} 161 + to="https://atproto.com/guides/self-hosting"> 162 + <Trans>Learn more.</Trans> 163 + </InlineLinkText> 159 164 </P> 160 165 </View> 161 166