Skip to content

Commit

Permalink
Merge pull request #3326 from bluesky-social/samuel/lowercase-i
Browse files Browse the repository at this point in the history
Change Sign In -> Sign in on Splashscreen
  • Loading branch information
mozzius authored Mar 22, 2024
2 parents df7f985 + a3eab31 commit 6f2dfcb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions src/view/com/auth/HomeLoggedOutCTA.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import React from 'react'
import {StyleSheet, TouchableOpacity, View} from 'react-native'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {Trans, msg} from '@lingui/macro'
import {ScrollView} from '../util/Views'
import {Text} from '../util/text/Text'

import {usePalette} from '#/lib/hooks/usePalette'
import {colors, s} from '#/lib/styles'
import {TextLink} from '../util/Link'
import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
import {colors, s} from '#/lib/styles'
import {useLoggedOutViewControls} from '#/state/shell/logged-out'
import {TextLink} from '../util/Link'
import {Text} from '../util/text/Text'
import {ScrollView} from '../util/Views'

export function HomeLoggedOutCTA() {
const pal = usePalette('default')
Expand Down Expand Up @@ -79,7 +80,7 @@ export function HomeLoggedOutCTA() {
styles.btnLabel,
isMobile && styles.btnLabelMobile,
]}>
<Trans>Sign In</Trans>
<Trans>Sign in</Trans>
</Text>
</TouchableOpacity>
</View>
Expand Down
2 changes: 1 addition & 1 deletion src/view/com/auth/SplashScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const SplashScreen = ({
variant="solid"
color="secondary">
<ButtonText>
<Trans>Sign In</Trans>
<Trans>Sign in</Trans>
</ButtonText>
</Button>
</View>
Expand Down
2 changes: 1 addition & 1 deletion src/view/com/auth/SplashScreen.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export const SplashScreen = ({
variant="solid"
color="secondary">
<ButtonText>
<Trans>Sign In</Trans>
<Trans>Sign in</Trans>
</ButtonText>
</Button>
</View>
Expand Down

0 comments on commit 6f2dfcb

Please sign in to comment.