Capitalize screen headers consistently (#2612)

zio/stable
dan 2024-01-24 23:21:43 +00:00 committed by GitHub
parent c2733bc2c0
commit e111a31c1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ export const NotFoundScreen = () => {
return (
<View testID="notFoundView" style={pal.view}>
<ViewHeader title={_(msg`Page not found`)} />
<ViewHeader title={_(msg`Page Not Found`)} />
<View style={styles.container}>
<Text type="title-2xl" style={[pal.text, s.mb10]}>
<Trans>Page not found</Trans>

View File

@ -24,7 +24,7 @@ export const PostLikedByScreen = ({route}: Props) => {
return (
<View>
<ViewHeader title={_(msg`Liked by`)} />
<ViewHeader title={_(msg`Liked By`)} />
<PostLikedByComponent uri={uri} />
</View>
)

View File

@ -24,7 +24,7 @@ export const PostRepostedByScreen = ({route}: Props) => {
return (
<View>
<ViewHeader title={_(msg`Reposted by`)} />
<ViewHeader title={_(msg`Reposted By`)} />
<PostRepostedByComponent uri={uri} />
</View>
)

View File

@ -24,7 +24,7 @@ export const ProfileFeedLikedByScreen = ({route}: Props) => {
return (
<View>
<ViewHeader title={_(msg`Liked by`)} />
<ViewHeader title={_(msg`Liked By`)} />
<PostLikedByComponent uri={uri} />
</View>
)