i18n update: Creator Tools
This commit is contained in:
parent
68d13f9ff3
commit
c52ddb9e03
2 changed files with 10 additions and 4 deletions
|
@ -890,6 +890,8 @@
|
||||||
"Change Inviter": "Change Inviter",
|
"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 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 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!",
|
"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",
|
"Upload Something": "Upload Something",
|
||||||
"Amount cannot be zero": "Amount cannot be zero",
|
"Amount cannot be zero": "Amount cannot be zero",
|
||||||
|
@ -1577,5 +1579,7 @@
|
||||||
"Yeah, well, that's just, like, your opinion, man.": "Yeah, well, that's just, like, your opinion, man.",
|
"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",
|
"Moon cheese is an acquired taste": "Moon cheese is an acquired taste",
|
||||||
"Level %current_level%": "Level %current_level%",
|
"Level %current_level%": "Level %current_level%",
|
||||||
|
"Creator tools": "Creator tools",
|
||||||
|
"Interacting as %channelName%": "Interacting as %channelName%",
|
||||||
"--end--": "--end--"
|
"--end--": "--end--"
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,8 +16,8 @@ type Props = {
|
||||||
linkedComment?: any,
|
linkedComment?: any,
|
||||||
isPinned: boolean,
|
isPinned: boolean,
|
||||||
pinComment: (string, boolean) => Promise<any>,
|
pinComment: (string, boolean) => Promise<any>,
|
||||||
blockChannel: string => void,
|
blockChannel: (string) => void,
|
||||||
fetchComments: string => void,
|
fetchComments: (string) => void,
|
||||||
handleEditComment: () => void,
|
handleEditComment: () => void,
|
||||||
contentChannelPermanentUrl: any,
|
contentChannelPermanentUrl: any,
|
||||||
activeChannelClaim: ?ChannelClaim,
|
activeChannelClaim: ?ChannelClaim,
|
||||||
|
@ -139,7 +139,9 @@ function CommentMenuList(props: Props) {
|
||||||
{activeChannelClaim && (
|
{activeChannelClaim && (
|
||||||
<div className="comment__menu-active">
|
<div className="comment__menu-active">
|
||||||
<ChannelThumbnail uri={activeChannelClaim.permanent_url} />
|
<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>
|
</div>
|
||||||
)}
|
)}
|
||||||
</MenuList>
|
</MenuList>
|
||||||
|
|
Loading…
Reference in a new issue