Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Reapply "Modify hosting provider text for better localization" (#7928)

* Update HostingProvider.tsx

* Update src/components/forms/HostingProvider.tsx

---------

Co-authored-by: Hailey <hailey@blueskyweb.xyz>

authored by

Minseo Lee
Hailey
and committed by
GitHub
8dfdee80 df9909ba

+17 -19
+17 -19
src/components/forms/HostingProvider.tsx
··· 41 41 onSelect={onSelectServiceUrl} 42 42 /> 43 43 {minimal ? ( 44 - <View style={[a.flex_row, a.align_center, a.flex_wrap, a.gap_xs]}> 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, {margin: 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={[ 56 - a.px_xs, 57 - {marginHorizontal: tokens.space.xs * -1}, 58 - {paddingVertical: 0}, 59 - ]}> 60 - <ButtonText style={[a.text_sm]}> 61 - {toNiceDomain(serviceUrl)} 62 - </ButtonText> 63 - <ButtonIcon icon={PencilIcon} /> 64 - </Button> 65 63 </View> 66 64 ) : ( 67 65 <Button