String corrections

- "The publisher has chosen to" -- Fix incomplete string, probably broken by linter.
- Fix hardcoded email in invite snackbar.
- Fix 'Upload Settings' to new lower-case style.
- Add few more missing ones.
- Consolidated "Claim xxx" strings together.
- Removed duplicate "Confirming..." due to branch merging.
This commit is contained in:
infiinte-persistence 2020-10-03 12:34:51 +08:00 committed by Sean Yesmunt
parent eb84a366d2
commit ae191afeec
2 changed files with 14 additions and 7 deletions

View file

@ -82,7 +82,9 @@
"You have": "You have",
"Claim Rewards": "Claim Rewards",
"Invite a Friend": "Invite a Friend",
"Log in to %SITE_NAME% to earn rewards From Inviting Your Friends": "Log in to %SITE_NAME% to earn rewards From Inviting Your Friends",
"Checking your invite status": "Checking your invite status",
"Failed to retrieve invite status.": "Failed to retrieve invite status.",
"View Rewards": "View Rewards",
"Find New Channels": "Find New Channels",
"Discover New Channels": "Discover New Channels",
@ -189,7 +191,7 @@
"View": "View",
"Edit": "Edit",
"Copied": "Copied",
"The publisher has chosen to charge %lbc% to view this content. Your balance is currently too low to view it.": " Check out %reward_link% for free %lbc% or send more %lbc% to your wallet. You can also %buy_link% more %lbc%.",
"The publisher has chosen to charge %lbc% to view this content. Your balance is currently too low to view it. Check out %reward_link% for free %lbc% or send more %lbc% to your wallet. You can also %buy_link% more %lbc%.": "The publisher has chosen to charge %lbc% to view this content. Your balance is currently too low to view it. Check out %reward_link% for free %lbc% or send more %lbc% to your wallet. You can also %buy_link% more %lbc%.",
"Connecting...": "Connecting...",
"Comments": "Comments",
"Comment": "Comment",
@ -407,6 +409,7 @@
"Reward": "Reward",
"Not Accepted": "Not Accepted",
"Unclaimable": "Unclaimable",
"Claimed": "Claimed",
"Enter reward code": "Enter reward code",
"Redeem": "Redeem",
"Code": "Code",
@ -463,7 +466,6 @@
"Max Connections": "Max Connections",
"For users with good bandwidth, try a higher value to improve streaming and download speeds. Low bandwidth users may benefit from a lower setting. Default is 4.": "For users with good bandwidth, try a higher value to improve streaming and download speeds. Low bandwidth users may benefit from a lower setting. Default is 4.",
"Show All": "Show All",
"Claim ???": "Claim ???",
"LBRY names cannot contain spaces or reserved symbols": "LBRY names cannot contain spaces or reserved symbols",
"Creating channel...": "Creating channel...",
"Remember Password": "Remember Password",
@ -699,6 +701,8 @@
"Claim %amount% LBC": "Claim %amount% LBC",
"Claim %range% LBC": "Claim %range% LBC",
"Claim ??? LBC": "Claim ??? LBC",
"Claim ???": "Claim ???",
"Claim %lbc%": "Claim %lbc%",
"Did something go wrong? Have a look in your log file, or send it to %support_link%.": "Did something go wrong? Have a look in your log file, or send it to %support_link%.",
"%amount% fee": "%amount% fee",
"Thumbnail": "Thumbnail",
@ -748,7 +752,11 @@
"Your invite link": "Your invite link",
"Customize link": "Customize link",
"rewards": "rewards",
"Invite by Email": "Invite by Email",
"Invite by email": "Invite by email",
"Invite someone you know by email and earn %lbc% when they join %SITE_NAME%.": "Invite someone you know by email and earn %lbc% when they join %SITE_NAME%.",
"Invite sent to %email_address%": "Invite sent to %email_address%",
"Woah, you have a lot of friends! You've claimed the maximum amount of invite rewards. Email %email% if you'd like to be whitelisted for more invites.": "Woah, you have a lot of friends! You've claimed the maximum amount of invite rewards. Email %email% if you'd like to be whitelisted for more invites.",
"Earn %lbc% for inviting a friend, an enemy, a frenemy, or an enefriend. Everyone needs content freedom.": "Earn %lbc% for inviting a friend, an enemy, a frenemy, or an enefriend. Everyone needs content freedom.",
"This content requires LBRY Desktop to display.": "This content requires LBRY Desktop to display.",
"Get the App": "Get the App",
"Get The App": "Get The App",
@ -955,7 +963,7 @@
"You deposited %amount% LBRY Credits as a support!": "You deposited %amount% LBRY Credits as a support!",
"You sent %amount% LBRY Credits as a tip, Mahalo!": "You sent %amount% LBRY Credits as a tip, Mahalo!",
"You sent %amount% LBRY Credits": "You sent %amount% LBRY Credits",
"No Stats Found": "No Stats Found",
"No stats found": "No stats found",
"Sorry about that. Try refreshing or something else.": "Sorry about that. Try refreshing or something else.",
"You are not able to see this channel's stats. Make sure you are signed in with the correct email and have data sharing turned on.": "You are not able to see this channel's stats. Make sure you are signed in with the correct email and have data sharing turned on.",
"%follower_count% followers": "%follower_count% followers",
@ -1278,7 +1286,6 @@
"Invite": "Invite",
"Remove File": "Remove File",
"Not Yet": "Not Yet",
"Confirming...": "Confirming...",
"Preparing...": "Preparing...",
"Confirm Upload": "Confirm Upload",
"Confirm Edit": "Confirm Edit",
@ -1287,7 +1294,7 @@
"Estimated transaction fee:": "Estimated transaction fee:",
"Est. transaction fee:": "Est. transaction fee:",
"Skip preview and confirmation": "Skip preview and confirmation",
"Upload Settings": "Upload Settings",
"Upload settings": "Upload settings",
"Enable Sync": "Enable Sync",
"Disable Sync": "Disable Sync",
"Getting your profiles...": "Getting your profiles...",

View file

@ -610,7 +610,7 @@ export function doUserInviteNew(email) {
dispatch(
doToast({
message: __(`Invite sent to ${email}`),
message: __('Invite sent to %email_address%', { email_address: email }),
})
);