diff --git a/static/app-strings.json b/static/app-strings.json index ec911b610..b1b490cbc 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -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...", diff --git a/ui/redux/actions/user.js b/ui/redux/actions/user.js index e3fdd6756..5e47d476d 100644 --- a/ui/redux/actions/user.js +++ b/ui/redux/actions/user.js @@ -610,7 +610,7 @@ export function doUserInviteNew(email) { dispatch( doToast({ - message: __(`Invite sent to ${email}`), + message: __('Invite sent to %email_address%', { email_address: email }), }) );