diff options
author | dan <dan.abramov@gmail.com> | 2024-12-17 00:11:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-17 00:11:21 +0000 |
commit | c9e429760d426df7549bfcd6292a0dc5e7fe7d7e (patch) | |
tree | f01afc3098a56c36d6ad7193f7e8e40333f3d989 /src/screens/Signup/StepHandle.tsx | |
parent | be33c626b03bafd3c4543a3962e87f9422d7d05d (diff) | |
download | voidsky-c9e429760d426df7549bfcd6292a0dc5e7fe7d7e.tar.zst |
[ELI5] Tweak wording on the signup screen (#7136)
* Tweak signup wordings * Update translations
Diffstat (limited to 'src/screens/Signup/StepHandle.tsx')
-rw-r--r-- | src/screens/Signup/StepHandle.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/Signup/StepHandle.tsx b/src/screens/Signup/StepHandle.tsx index 0ff0506f4..dee7df848 100644 --- a/src/screens/Signup/StepHandle.tsx +++ b/src/screens/Signup/StepHandle.tsx @@ -111,7 +111,7 @@ export function StepHandle() { handleValueRef.current = val setDraftValue(val) }} - label={_(msg`Input your user handle`)} + label={_(msg`Type your desired username`)} defaultValue={draftValue} autoCapitalize="none" autoCorrect={false} @@ -122,7 +122,7 @@ export function StepHandle() { </View> {draftValue !== '' && ( <Text style={[a.text_md]}> - <Trans>Your full handle will be</Trans>{' '} + <Trans>Your full username will be</Trans>{' '} <Text style={[a.text_md, a.font_bold]}> @{createFullHandle(draftValue, state.userDomain)} </Text> |