diff options
Diffstat (limited to 'src/view/com')
-rw-r--r-- | src/view/com/lightbox/Lightbox.tsx | 2 | ||||
-rw-r--r-- | src/view/com/modals/ChangeHandle.tsx | 4 | ||||
-rw-r--r-- | src/view/com/modals/DeleteAccount.tsx | 38 | ||||
-rw-r--r-- | src/view/com/modals/SelfLabel.tsx | 6 |
4 files changed, 26 insertions, 24 deletions
diff --git a/src/view/com/lightbox/Lightbox.tsx b/src/view/com/lightbox/Lightbox.tsx index 5bab643ca..fd4c486af 100644 --- a/src/view/com/lightbox/Lightbox.tsx +++ b/src/view/com/lightbox/Lightbox.tsx @@ -78,7 +78,7 @@ function LightboxFooter({imageIndex}: {imageIndex: number}) { try { await saveImageToMediaLibrary({uri}) - Toast.show(_(msg`Saved to your camera roll.`)) + Toast.show(_(msg`Saved to your camera roll`)) } catch (e: any) { Toast.show(_(msg`Failed to save image: ${String(e)}`)) } diff --git a/src/view/com/modals/ChangeHandle.tsx b/src/view/com/modals/ChangeHandle.tsx index ae43d1e32..ea49a93f2 100644 --- a/src/view/com/modals/ChangeHandle.tsx +++ b/src/view/com/modals/ChangeHandle.tsx @@ -507,7 +507,9 @@ function CustomHandleForm({ <Text type="xl-medium" style={[s.white, s.textCenter]}> {canSave ? _(msg`Update to ${handle}`) - : _(msg`Verify ${isDNSForm ? 'DNS Record' : 'Text File'}`)} + : isDNSForm + ? _(msg`Verify DNS Record`) + : _(msg`Verify Text File`)} </Text> )} </Button> diff --git a/src/view/com/modals/DeleteAccount.tsx b/src/view/com/modals/DeleteAccount.tsx index 5e68daef9..2e23a46b0 100644 --- a/src/view/com/modals/DeleteAccount.tsx +++ b/src/view/com/modals/DeleteAccount.tsx @@ -84,26 +84,26 @@ export function Component({}: {}) { <ScrollView style={[pal.view]} keyboardShouldPersistTaps="handled"> <View style={[styles.titleContainer, pal.view]}> <Text type="title-xl" style={[s.textCenter, pal.text]}> - <Trans>Delete Account</Trans> + <Trans> + Delete Account{' '} + <Text type="title-xl" style={[pal.text, s.bold]}> + " + </Text> + <Text + type="title-xl" + numberOfLines={1} + style={[ + isMobile ? styles.titleMobile : styles.titleDesktop, + pal.text, + s.bold, + ]}> + {currentAccount?.handle} + </Text> + <Text type="title-xl" style={[pal.text, s.bold]}> + " + </Text> + </Trans> </Text> - <View style={[pal.view, s.flexRow]}> - <Text type="title-xl" style={[pal.text, s.bold]}> - {' "'} - </Text> - <Text - type="title-xl" - numberOfLines={1} - style={[ - isMobile ? styles.titleMobile : styles.titleDesktop, - pal.text, - s.bold, - ]}> - {currentAccount?.handle} - </Text> - <Text type="title-xl" style={[pal.text, s.bold]}> - {'"'} - </Text> - </View> </View> {!isEmailSent ? ( <> diff --git a/src/view/com/modals/SelfLabel.tsx b/src/view/com/modals/SelfLabel.tsx index 779a9e71b..2b83c7a9a 100644 --- a/src/view/com/modals/SelfLabel.tsx +++ b/src/view/com/modals/SelfLabel.tsx @@ -131,10 +131,10 @@ export function Component({ ) : ( <View> <Text style={[pal.textLight]}> - <Text type="md-bold" style={[pal.textLight, s.mr5]}> - <Trans>Not Applicable.</Trans> - </Text> <Trans> + <Text type="md-bold" style={[pal.textLight]}> + Not Applicable. + </Text>{' '} This warning is only available for posts with media attached. </Trans> </Text> |