Untranslated strings
Included the memes as well per translator request. I've been excluding it since I wasn't sure if memes can be translated, but I guess they can change it to something equivalent in their language.
This commit is contained in:
parent
530bd14f4a
commit
f660267dc5
2 changed files with 9 additions and 4 deletions
|
@ -1180,6 +1180,7 @@
|
||||||
"Try out the app!": "Try out the app!",
|
"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.",
|
"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",
|
"Thumbnail source": "Thumbnail source",
|
||||||
"Cover source": "Cover source",
|
"Cover source": "Cover source",
|
||||||
"Your changes will be live in a few minutes": "Your changes will be live in a few minutes",
|
"Your changes will be live in a few minutes": "Your changes will be live in a few minutes",
|
||||||
|
@ -1390,6 +1391,7 @@
|
||||||
"Just press play on something. Anything at all. Yep, even that one. Everybody's doing it.": "Just press play on something. Anything at all. Yep, even that one. Everybody's doing it.",
|
"Just press play on something. Anything at all. Yep, even that one. Everybody's doing it.": "Just press play on something. Anything at all. Yep, even that one. Everybody's doing it.",
|
||||||
"Claim your channel! Create an identity used to securely publish content.": "Claim your channel! Create an identity used to securely publish content.",
|
"Claim your channel! Create an identity used to securely publish content.": "Claim your channel! Create an identity used to securely publish content.",
|
||||||
"Launch your own channel by sharing a video.": "Launch your own channel by sharing a video.",
|
"Launch your own channel by sharing a video.": "Launch your own channel by sharing a video.",
|
||||||
|
"Your First Credit:": "Your First Credit:",
|
||||||
"Return to the app 24-48 hours following your first use of the app. This reward will self destruct after that time span.": "Return to the app 24-48 hours following your first use of the app. This reward will self destruct after that time span.",
|
"Return to the app 24-48 hours following your first use of the app. This reward will self destruct after that time span.": "Return to the app 24-48 hours following your first use of the app. This reward will self destruct after that time span.",
|
||||||
"Watch content and earn more Credits for each level unlocked! 10 views required for level 1 (Current Score: 2). Only up to 10 views per day count.": "Watch content and earn more Credits for each level unlocked! 10 views required for level 1 (Current Score: 2). Only up to 10 views per day count.",
|
"Watch content and earn more Credits for each level unlocked! 10 views required for level 1 (Current Score: 2). Only up to 10 views per day count.": "Watch content and earn more Credits for each level unlocked! 10 views required for level 1 (Current Score: 2). Only up to 10 views per day count.",
|
||||||
"Follow your favorite creators and earn more Credits for each level unlocked! Follow 1 creators for level 1 (Current Score: 1).": "Follow your favorite creators and earn more Credits for each level unlocked! Follow 1 creators for level 1 (Current Score: 1).",
|
"Follow your favorite creators and earn more Credits for each level unlocked! Follow 1 creators for level 1 (Current Score: 1).": "Follow your favorite creators and earn more Credits for each level unlocked! Follow 1 creators for level 1 (Current Score: 1).",
|
||||||
|
@ -1572,5 +1574,8 @@
|
||||||
"%balance% available.": "%balance% available.",
|
"%balance% available.": "%balance% available.",
|
||||||
"Unlock all tips": "Unlock all tips",
|
"Unlock all tips": "Unlock all tips",
|
||||||
"Unlock All": "Unlock All",
|
"Unlock All": "Unlock All",
|
||||||
|
"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%",
|
||||||
"--end--": "--end--"
|
"--end--": "--end--"
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,9 +15,9 @@ type Props = {
|
||||||
onChannelSelect: (url: string) => void,
|
onChannelSelect: (url: string) => void,
|
||||||
hideAnon?: boolean,
|
hideAnon?: boolean,
|
||||||
activeChannelClaim: ?ChannelClaim,
|
activeChannelClaim: ?ChannelClaim,
|
||||||
doSetActiveChannel: string => void,
|
doSetActiveChannel: (string) => void,
|
||||||
incognito: boolean,
|
incognito: boolean,
|
||||||
doSetIncognito: boolean => void,
|
doSetIncognito: (boolean) => void,
|
||||||
};
|
};
|
||||||
|
|
||||||
type ListItemProps = {
|
type ListItemProps = {
|
||||||
|
@ -76,7 +76,7 @@ function ChannelSelector(props: Props) {
|
||||||
</MenuButton>
|
</MenuButton>
|
||||||
<MenuList className="menu__list channel__list">
|
<MenuList className="menu__list channel__list">
|
||||||
{channels &&
|
{channels &&
|
||||||
channels.map(channel => (
|
channels.map((channel) => (
|
||||||
<MenuItem key={channel.permanent_url} onSelect={() => handleChannelSelect(channel)}>
|
<MenuItem key={channel.permanent_url} onSelect={() => handleChannelSelect(channel)}>
|
||||||
<ChannelListItem uri={channel.permanent_url} />
|
<ChannelListItem uri={channel.permanent_url} />
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
|
@ -89,7 +89,7 @@ function ChannelSelector(props: Props) {
|
||||||
<MenuItem onSelect={() => push(`/$/${PAGES.CHANNEL_NEW}?redirect=${pathname}`)}>
|
<MenuItem onSelect={() => push(`/$/${PAGES.CHANNEL_NEW}?redirect=${pathname}`)}>
|
||||||
<div className="channel__list-item">
|
<div className="channel__list-item">
|
||||||
<Icon sectionIcon icon={ICONS.CHANNEL} />
|
<Icon sectionIcon icon={ICONS.CHANNEL} />
|
||||||
<h2 className="channel__list-text">Create a new channel</h2>
|
<h2 className="channel__list-text">{__('Create a new channel')}</h2>
|
||||||
</div>
|
</div>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
</MenuList>
|
</MenuList>
|
||||||
|
|
Loading…
Reference in a new issue