i18n update: Creator Tools

This commit is contained in:
infinite-persistence 2021-02-23 10:45:55 +08:00 committed by Sean Yesmunt
parent 68d13f9ff3
commit c52ddb9e03
2 changed files with 10 additions and 4 deletions

View file

@ -890,6 +890,8 @@
"Change Inviter": "Change Inviter",
"You haven't uploaded anything yet. This is where you can find them when you do!": "You haven't uploaded anything yet. This is where you can find them when you do!",
"You haven't uploaded anything with this channel yet!": "You haven't uploaded anything with this channel yet!",
"You haven't uploaded anything": "You haven't uploaded anything",
"Upload something to start tracking your stats!": "Upload something to start tracking your stats!",
"You haven't created a channel yet, let's fix that!": "You haven't created a channel yet, let's fix that!",
"Upload Something": "Upload Something",
"Amount cannot be zero": "Amount cannot be zero",
@ -1181,7 +1183,7 @@
"Try out the app!": "Try out the app!",
"Download the app to track files you've viewed and downloaded.": "Download the app to track files you've viewed and downloaded.",
"Create a New Channel": "Create a New Channel",
"Create a new channel": "Create a new channel",
"Create a new channel": "Create a new channel",
"Thumbnail source": "Thumbnail source",
"Cover source": "Cover source",
"Your changes will be live in a few minutes": "Your changes will be live in a few minutes",
@ -1577,5 +1579,7 @@
"Yeah, well, that's just, like, your opinion, man.": "Yeah, well, that's just, like, your opinion, man.",
"Moon cheese is an acquired taste": "Moon cheese is an acquired taste",
"Level %current_level%": "Level %current_level%",
"Creator tools": "Creator tools",
"Interacting as %channelName%": "Interacting as %channelName%",
"--end--": "--end--"
}

View file

@ -16,8 +16,8 @@ type Props = {
linkedComment?: any,
isPinned: boolean,
pinComment: (string, boolean) => Promise<any>,
blockChannel: string => void,
fetchComments: string => void,
blockChannel: (string) => void,
fetchComments: (string) => void,
handleEditComment: () => void,
contentChannelPermanentUrl: any,
activeChannelClaim: ?ChannelClaim,
@ -139,7 +139,9 @@ function CommentMenuList(props: Props) {
{activeChannelClaim && (
<div className="comment__menu-active">
<ChannelThumbnail uri={activeChannelClaim.permanent_url} />
<div className="comment__menu-channel">Interacting as {activeChannelClaim.name}</div>
<div className="comment__menu-channel">
{__('Interacting as %channelName%', { channelName: activeChannelClaim.name })}
</div>
</div>
)}
</MenuList>