diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-01-08 22:13:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-08 22:13:24 +0000 |
commit | a0393fcd485eec4c6d4d6729b95b2528686b5b1a (patch) | |
tree | 289ce86ad93f20593f8f04d20338a406b3a1a8ae /src/view/shell/NavSignupCard.tsx | |
parent | 7c8c78b18f5610b1fd150158d0eaec948b11801c (diff) | |
download | voidsky-a0393fcd485eec4c6d4d6729b95b2528686b5b1a.tar.zst |
[ELI5] change sign in to create account (#6931)
* change sign in to create account * alf buttons on native bottom bar * manually edit .po file
Diffstat (limited to 'src/view/shell/NavSignupCard.tsx')
-rw-r--r-- | src/view/shell/NavSignupCard.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/shell/NavSignupCard.tsx b/src/view/shell/NavSignupCard.tsx index 63648db4c..e32c24dc4 100644 --- a/src/view/shell/NavSignupCard.tsx +++ b/src/view/shell/NavSignupCard.tsx @@ -44,12 +44,12 @@ let NavSignupCard = ({}: {}): React.ReactNode => { <View style={[a.flex_row, a.flex_wrap, a.gap_sm, a.pt_md]}> <Button onPress={showCreateAccount} - label={_(msg`Sign up`)} + label={_(msg`Create account`)} size="small" variant="solid" color="primary"> <ButtonText> - <Trans>Sign up</Trans> + <Trans>Create account</Trans> </ButtonText> </Button> <Button |