An ATproto social media client -- with an independent Appview.
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #3326 from bluesky-social/samuel/lowercase-i

Change Sign In -> Sign in on Splashscreen

authored by

Samuel Newman and committed by
GitHub
6f2dfcb5 df7f9856

+9 -8
+7 -6
src/view/com/auth/HomeLoggedOutCTA.tsx
··· 1 1 import React from 'react' 2 2 import {StyleSheet, TouchableOpacity, View} from 'react-native' 3 + import {msg, Trans} from '@lingui/macro' 3 4 import {useLingui} from '@lingui/react' 4 - import {Trans, msg} from '@lingui/macro' 5 - import {ScrollView} from '../util/Views' 6 - import {Text} from '../util/text/Text' 5 + 7 6 import {usePalette} from '#/lib/hooks/usePalette' 7 + import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' 8 8 import {colors, s} from '#/lib/styles' 9 + import {useLoggedOutViewControls} from '#/state/shell/logged-out' 9 10 import {TextLink} from '../util/Link' 10 - import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' 11 - import {useLoggedOutViewControls} from '#/state/shell/logged-out' 11 + import {Text} from '../util/text/Text' 12 + import {ScrollView} from '../util/Views' 12 13 13 14 export function HomeLoggedOutCTA() { 14 15 const pal = usePalette('default') ··· 79 80 styles.btnLabel, 80 81 isMobile && styles.btnLabelMobile, 81 82 ]}> 82 - <Trans>Sign In</Trans> 83 + <Trans>Sign in</Trans> 83 84 </Text> 84 85 </TouchableOpacity> 85 86 </View>
+1 -1
src/view/com/auth/SplashScreen.tsx
··· 87 87 variant="solid" 88 88 color="secondary"> 89 89 <ButtonText> 90 - <Trans>Sign In</Trans> 90 + <Trans>Sign in</Trans> 91 91 </ButtonText> 92 92 </Button> 93 93 </View>
+1 -1
src/view/com/auth/SplashScreen.web.tsx
··· 116 116 variant="solid" 117 117 color="secondary"> 118 118 <ButtonText> 119 - <Trans>Sign In</Trans> 119 + <Trans>Sign in</Trans> 120 120 </ButtonText> 121 121 </Button> 122 122 </View>