Translator-found missing strings

This commit is contained in:
infiinte-persistence 2020-09-05 23:24:03 +08:00 committed by Sean Yesmunt
parent 202269ebeb
commit dd73e4a164
2 changed files with 7 additions and 3 deletions

View file

@ -611,6 +611,7 @@
"This will prevent others from resolving and accessing the content you published. It will return the LBC to your spendable balance, less a small transaction fee.": "This will prevent others from resolving and accessing the content you published. It will return the LBC to your spendable balance, less a small transaction fee.", "This will prevent others from resolving and accessing the content you published. It will return the LBC to your spendable balance, less a small transaction fee.": "This will prevent others from resolving and accessing the content you published. It will return the LBC to your spendable balance, less a small transaction fee.",
"No results for %query%": "No results for %query%", "No results for %query%": "No results for %query%",
"You haven't downloaded anything from LBRY yet": "You haven't downloaded anything from LBRY yet", "You haven't downloaded anything from LBRY yet": "You haven't downloaded anything from LBRY yet",
"You haven't purchased anything yet": "You haven't purchased anything yet",
"Explore new content": "Explore new content", "Explore new content": "Explore new content",
"Explore New Content": "Explore New Content", "Explore New Content": "Explore New Content",
"Use this address to receive LBC.": "Use this address to receive LBC.", "Use this address to receive LBC.": "Use this address to receive LBC.",
@ -1279,5 +1280,6 @@
"%view_count% views - %view_count_change% this week": "%view_count% views - %view_count_change% this week", "%view_count% views - %view_count_change% this week": "%view_count% views - %view_count_change% this week",
"Most Commented Recent Content": "Most Commented Recent Content", "Most Commented Recent Content": "Most Commented Recent Content",
"%comment_count% comments - %comment_count_change% this week": "%comment_count% comments - %comment_count_change% this week", "%comment_count% comments - %comment_count_change% this week": "%comment_count% comments - %comment_count_change% this week",
"Invite": "Invite",
"--end--": "--end--" "--end--": "--end--"
} }

View file

@ -80,7 +80,7 @@ function InviteNew(props: Props) {
<SelectChannel <SelectChannel
channel={referralSource} channel={referralSource}
onChannelChange={channel => handleReferralChange(channel)} onChannelChange={channel => handleReferralChange(channel)}
label={'Customize link'} label={__('Customize link')}
hideAnon hideAnon
injected={[referralCode]} injected={[referralCode]}
/> />
@ -107,12 +107,14 @@ function InviteNew(props: Props) {
<Form onSubmit={handleSubmit}> <Form onSubmit={handleSubmit}>
<FormField <FormField
type="text" type="text"
label="Email" label={__('Email')}
placeholder="youremail@example.org" placeholder="youremail@example.org"
name="email" name="email"
value={email} value={email}
error={errorMessage} error={errorMessage}
inputButton={<Button button="secondary" type="submit" label="Invite" disabled={isPending || !email} />} inputButton={
<Button button="secondary" type="submit" label={__('Invite')} disabled={isPending || !email} />
}
onChange={event => { onChange={event => {
handleEmailChanged(event); handleEmailChanged(event);
}} }}