i18n: Livestream strings

This commit is contained in:
infinite-persistence 2021-03-23 09:06:51 +08:00 committed by infinite-persistence
parent a36a8023c7
commit 43965ddf72
2 changed files with 6 additions and 1 deletions

View file

@ -1677,5 +1677,10 @@
"Create A LiveStream": "Create A LiveStream",
"%channel% isn't live right now, but the chat is! Check back later to watch the stream.": "%channel% isn't live right now, but the chat is! Check back later to watch the stream.",
"Right now": "Right now",
"%viewer_count% currently watching": "%viewer_count% currently watching",
"Slowmode is on. You can comment again in %time% seconds.": "Slowmode is on. You can comment again in %time% seconds.",
"Live stream in progress": "Live stream in progress",
"Live discussion": "Live discussion",
"Livestream": "Livestream",
"--end--": "--end--"
}

View file

@ -65,7 +65,7 @@ export default function LivestreamLink(props: Props) {
return (
<Card
className="livestream__channel-link"
title="Live stream in progress"
title={__('Live stream in progress')}
actions={<ClaimPreview uri={livestreamClaim.canonical_url} livestream type="inline" />}
/>
);