mirror of https://github.com/tooot-app/app
Add string for #631
This commit is contained in:
parent
7ccfdc7562
commit
f0734e52e7
|
@ -32,17 +32,19 @@ const HeaderSharedReplies: React.FC = () => {
|
|||
color: colors.secondary
|
||||
}}
|
||||
>
|
||||
Replies
|
||||
{excludeMentions.current.map((mention, index) => (
|
||||
<Fragment key={index}>
|
||||
{' '}
|
||||
<CustomText
|
||||
style={{ color: colors.blue, paddingLeft: StyleConstants.Spacing.S }}
|
||||
children={`@${mention.username}`}
|
||||
onPress={() => navigation.push('Tab-Shared-Account', { account: mention })}
|
||||
/>
|
||||
</Fragment>
|
||||
))}
|
||||
<>
|
||||
{t('shared.header.shared.replies')}
|
||||
{excludeMentions.current.map((mention, index) => (
|
||||
<Fragment key={index}>
|
||||
{' '}
|
||||
<CustomText
|
||||
style={{ color: colors.blue, paddingLeft: StyleConstants.Spacing.S }}
|
||||
children={`@${mention.username}`}
|
||||
onPress={() => navigation.push('Tab-Shared-Account', { account: mention })}
|
||||
/>
|
||||
</Fragment>
|
||||
))}
|
||||
</>
|
||||
</CustomText>
|
||||
) : null
|
||||
}
|
||||
|
|
|
@ -122,6 +122,7 @@
|
|||
"muted": {
|
||||
"accessibilityLabel": "Toot muted"
|
||||
},
|
||||
"replies": "Replies",
|
||||
"visibility": {
|
||||
"direct": {
|
||||
"accessibilityLabel": "Toot is a direct message"
|
||||
|
|
Loading…
Reference in New Issue