This commit is contained in:
Eric Bailey
2024-08-29 17:29:28 -05:00
parent b2410c655f
commit 485036d65c
3 changed files with 11 additions and 3 deletions
+5 -1
View File
@@ -6,7 +6,11 @@ import {
TextStyle, TextStyle,
View, View,
} from 'react-native' } from 'react-native'
import {AppBskyEmbedRecord, ChatBskyConvoDefs, RichText as RichTextAPI} from '@atproto/api' import {
AppBskyEmbedRecord,
ChatBskyConvoDefs,
RichText as RichTextAPI,
} from '@atproto/api'
import {I18n} from '@lingui/core' import {I18n} from '@lingui/core'
import {msg} from '@lingui/macro' import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react' import {useLingui} from '@lingui/react'
@@ -225,7 +225,9 @@ function LandingScreenLoaded({
t.atoms.text_contrast_medium, t.atoms.text_contrast_medium,
]} ]}
numberOfLines={1}> numberOfLines={1}>
<Trans>{formatCount(i18n, JOINED_THIS_WEEK)} joined this week</Trans> <Trans>
{formatCount(i18n, JOINED_THIS_WEEK)} joined this week
</Trans>
</Text> </Text>
</View> </View>
</View> </View>
+3 -1
View File
@@ -723,7 +723,9 @@ function ExpandedPostDetails({
s.mt2, s.mt2,
s.mb10, s.mb10,
]}> ]}>
<Text style={[a.text_sm, pal.textLight]}>{niceDate(i18n, post.indexedAt)}</Text> <Text style={[a.text_sm, pal.textLight]}>
{niceDate(i18n, post.indexedAt)}
</Text>
{isRootPost && ( {isRootPost && (
<WhoCanReply post={post} isThreadAuthor={isThreadAuthor} /> <WhoCanReply post={post} isThreadAuthor={isThreadAuthor} />
)} )}