From 11c797fa0cfcfb5d3c7794f6e77791a95640c747 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 27 Aug 2020 14:50:43 -0400 Subject: [PATCH] Get x LBC => Claim x LBC --- static/app-strings.json | 6 +++--- ui/component/rewardLink/view.jsx | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/static/app-strings.json b/static/app-strings.json index 7f6226eab..5e34df9a3 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -473,7 +473,7 @@ "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", - "Get ??? LBC": "Get ??? LBC", + "Claim ??? LBC": "Claim ??? LBC", "LBRY names cannot contain spaces or reserved symbols": "LBRY names cannot contain spaces or reserved symbols", "Creating channel...": "Creating channel...", "Remember Password": "Remember Password", @@ -708,8 +708,8 @@ "Your deposit must be higher": "Your deposit must be higher", "%view_count% views": "%view_count% views", "1 view": "1 view", - "Get %amount% LBC": "Get %amount% LBC", - "Get %range% LBC": "Get %range% LBC", + "Claim %amount% LBC": "Claim %amount% LBC", + "Claim %range% LBC": "Claim %range% 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% LBC": "%amount% LBC", "%amount% fee": "%amount% fee", diff --git a/ui/component/rewardLink/view.jsx b/ui/component/rewardLink/view.jsx index 7edb4cc63..cc5b849a8 100644 --- a/ui/component/rewardLink/view.jsx +++ b/ui/component/rewardLink/view.jsx @@ -23,11 +23,11 @@ const RewardLink = (props: Props) => { } else if (label) { displayLabel = label; } else if (reward && reward.reward_range && reward.reward_range.includes('-')) { - displayLabel = __('Get %range% LBC', { range: reward.reward_range }); + displayLabel = __('Claim %range% LBC', { range: reward.reward_range }); } else if (reward && reward.reward_amount > 0) { - displayLabel = __('Get %amount% LBC', { amount: reward.reward_amount }); + displayLabel = __('Claim %amount% LBC', { amount: reward.reward_amount }); } else { - displayLabel = __('Get ??? LBC'); + displayLabel = __('Claim ??? LBC'); } return !reward ? null : (