Wrap a few things in Prompt.Content
This commit is contained in:
@@ -198,10 +198,12 @@ function AltText({text}: {text: string}) {
|
|||||||
</Text>
|
</Text>
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
<Prompt.Outer control={control}>
|
<Prompt.Outer control={control}>
|
||||||
<Prompt.TitleText>
|
<Prompt.Content>
|
||||||
<Trans>Alt Text</Trans>
|
<Prompt.TitleText>
|
||||||
</Prompt.TitleText>
|
<Trans>Alt Text</Trans>
|
||||||
<Prompt.DescriptionText selectable>{text}</Prompt.DescriptionText>
|
</Prompt.TitleText>
|
||||||
|
<Prompt.DescriptionText selectable>{text}</Prompt.DescriptionText>
|
||||||
|
</Prompt.Content>
|
||||||
<Prompt.Actions>
|
<Prompt.Actions>
|
||||||
<Prompt.Action
|
<Prompt.Action
|
||||||
onPress={() => control.close()}
|
onPress={() => control.close()}
|
||||||
|
|||||||
@@ -331,15 +331,17 @@ function Empty() {
|
|||||||
</View>
|
</View>
|
||||||
|
|
||||||
<Prompt.Outer control={confirmDialogControl}>
|
<Prompt.Outer control={confirmDialogControl}>
|
||||||
<Prompt.TitleText>
|
<Prompt.Content>
|
||||||
<Trans>Generate a starter pack</Trans>
|
<Prompt.TitleText>
|
||||||
</Prompt.TitleText>
|
<Trans>Generate a starter pack</Trans>
|
||||||
<Prompt.DescriptionText>
|
</Prompt.TitleText>
|
||||||
<Trans>
|
<Prompt.DescriptionText>
|
||||||
Bluesky will choose a set of recommended accounts from people in
|
<Trans>
|
||||||
your network.
|
Bluesky will choose a set of recommended accounts from people in
|
||||||
</Trans>
|
your network.
|
||||||
</Prompt.DescriptionText>
|
</Trans>
|
||||||
|
</Prompt.DescriptionText>
|
||||||
|
</Prompt.Content>
|
||||||
<Prompt.Actions>
|
<Prompt.Actions>
|
||||||
<Prompt.Action
|
<Prompt.Action
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|||||||
@@ -212,13 +212,15 @@ function CantSubscribePrompt({
|
|||||||
const {_} = useLingui()
|
const {_} = useLingui()
|
||||||
return (
|
return (
|
||||||
<Prompt.Outer control={control}>
|
<Prompt.Outer control={control}>
|
||||||
<Prompt.TitleText>Unable to subscribe</Prompt.TitleText>
|
<Prompt.Content>
|
||||||
<Prompt.DescriptionText>
|
<Prompt.TitleText>Unable to subscribe</Prompt.TitleText>
|
||||||
<Trans>
|
<Prompt.DescriptionText>
|
||||||
We're sorry! You can only subscribe to twenty labelers, and you've
|
<Trans>
|
||||||
reached your limit of twenty.
|
We're sorry! You can only subscribe to twenty labelers, and you've
|
||||||
</Trans>
|
reached your limit of twenty.
|
||||||
</Prompt.DescriptionText>
|
</Trans>
|
||||||
|
</Prompt.DescriptionText>
|
||||||
|
</Prompt.Content>
|
||||||
<Prompt.Actions>
|
<Prompt.Actions>
|
||||||
<Prompt.Action onPress={() => control.close()} cta={_(msg`OK`)} />
|
<Prompt.Action onPress={() => control.close()} cta={_(msg`OK`)} />
|
||||||
</Prompt.Actions>
|
</Prompt.Actions>
|
||||||
|
|||||||
@@ -326,15 +326,17 @@ function LandingScreenLoaded({
|
|||||||
setIsVisible={setAppClipOverlayVisible}
|
setIsVisible={setAppClipOverlayVisible}
|
||||||
/>
|
/>
|
||||||
<Prompt.Outer control={androidDialogControl}>
|
<Prompt.Outer control={androidDialogControl}>
|
||||||
<Prompt.TitleText>
|
<Prompt.Content>
|
||||||
<Trans>Download Bluesky</Trans>
|
<Prompt.TitleText>
|
||||||
</Prompt.TitleText>
|
<Trans>Download Bluesky</Trans>
|
||||||
<Prompt.DescriptionText>
|
</Prompt.TitleText>
|
||||||
<Trans>
|
<Prompt.DescriptionText>
|
||||||
The experience is better in the app. Download Bluesky now and we'll
|
<Trans>
|
||||||
pick back up where you left off.
|
The experience is better in the app. Download Bluesky now and
|
||||||
</Trans>
|
we'll pick back up where you left off.
|
||||||
</Prompt.DescriptionText>
|
</Trans>
|
||||||
|
</Prompt.DescriptionText>
|
||||||
|
</Prompt.Content>
|
||||||
<Prompt.Actions>
|
<Prompt.Actions>
|
||||||
<Prompt.Action
|
<Prompt.Action
|
||||||
cta="Download on Google Play"
|
cta="Download on Google Play"
|
||||||
|
|||||||
Reference in New Issue
Block a user