Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Modify hosting provider text for better localization (#7847)

* Update HostingProvider.tsx

* Update src/components/forms/HostingProvider.tsx

---------

Co-authored-by: Samuel Newman <mozzius@protonmail.com>

authored by

Minseo Lee
Samuel Newman
and committed by
GitHub
ec75cbc0 b924c53b

+16 -14
+16 -14
src/components/forms/HostingProvider.tsx
··· 43 43 {minimal ? ( 44 44 <View style={[a.flex_row, a.align_center, a.flex_wrap]}> 45 45 <Text style={[a.text_sm, t.atoms.text_contrast_medium]}> 46 - <Trans>You are creating an account on </Trans> 46 + <Trans> 47 + You are creating an account on{' '} 48 + <Button 49 + label={toNiceDomain(serviceUrl)} 50 + accessibilityHint={_(msg`Changes hosting provider`)} 51 + onPress={onPressSelectService} 52 + variant="ghost" 53 + color="secondary" 54 + size="tiny" 55 + style={[a.px_xs, {marginHorizontal: tokens.space.xs * -1}]}> 56 + <ButtonText style={[a.text_sm]}> 57 + {toNiceDomain(serviceUrl)} 58 + </ButtonText> 59 + <ButtonIcon icon={PencilIcon} /> 60 + </Button> 61 + </Trans> 47 62 </Text> 48 - <Button 49 - label={toNiceDomain(serviceUrl)} 50 - accessibilityHint={_(msg`Changes hosting provider`)} 51 - onPress={onPressSelectService} 52 - variant="ghost" 53 - color="secondary" 54 - size="tiny" 55 - style={[a.px_xs, {marginLeft: tokens.space.xs * -1}]}> 56 - <ButtonText style={[a.text_sm]}> 57 - {toNiceDomain(serviceUrl)} 58 - </ButtonText> 59 - <ButtonIcon icon={PencilIcon} /> 60 - </Button> 61 63 </View> 62 64 ) : ( 63 65 <Button