diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-05-07 11:58:04 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 19:58:04 -0700 |
commit | 2ea9e2c929d5ae013977fb3d2e962296364629ac (patch) | |
tree | 61c38e04dd5b06113265a94c90159be7dec4ce0d /src/view/com/modals/DeleteAccount.tsx | |
parent | 4fad18b2fa3c12ffdf1d49afac5228f7df658bc2 (diff) | |
download | voidsky-2ea9e2c929d5ae013977fb3d2e962296364629ac.tar.zst |
Improve localization marks (#3285)
* Update Lightbox.tsx * Change strings for easier localization * Update DeleteAccount.tsx * Update LabelsOnMeDialog.tsx * Update FeedCard.tsx * Update index.tsx * Update LabelsOnMeDialog.tsx * Update index.tsx * Update FeedCard.tsx * Update SelfLabel.tsx * Update Hashtag.tsx * Update index.tsx * Update Hashtag.tsx * Update ChangeHandle.tsx * Update index.web.tsx * Update index.web.tsx * Update index.tsx * Remove unnecessary `<Trans>` tags * Update Drawer.tsx
Diffstat (limited to 'src/view/com/modals/DeleteAccount.tsx')
-rw-r--r-- | src/view/com/modals/DeleteAccount.tsx | 38 |
1 files changed, 19 insertions, 19 deletions
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 ? ( <> |