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/screens/Signup/index.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/screens/Signup/index.tsx')
-rw-r--r-- | src/screens/Signup/index.tsx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index 5e2596d8c..3d8b505b9 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -151,11 +151,13 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { ]}> <View style={[a.gap_sm, a.pb_3xl]}> <Text style={[a.font_semibold, t.atoms.text_contrast_medium]}> - <Trans>Step</Trans> {state.activeStep + 1} <Trans>of</Trans>{' '} - {state.serviceDescription && - !state.serviceDescription.phoneVerificationRequired - ? '2' - : '3'} + <Trans> + Step {state.activeStep + 1} of{' '} + {state.serviceDescription && + !state.serviceDescription.phoneVerificationRequired + ? '2' + : '3'} + </Trans> </Text> <Text style={[a.text_3xl, a.font_bold]}> {state.activeStep === SignupStep.INFO ? ( |