diff --git a/static/app-strings.json b/static/app-strings.json index d56d79474..9229c2196 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -2043,5 +2043,8 @@ "Trending for #Art": "Trending for #Art", "Trending for #Education": "Trending for #Education", "Trending for #Technology": "Trending for #Technology", + "Watch content and earn more Credits for each level unlocked! 10 views required for level 1 (Current Score: 0). 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: 0). 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: 0).": "Follow your favorite creators and earn more Credits for each level unlocked! Follow 1 creators for level 1 (Current Score: 0).", + "Gain a following to earn this reward. 1 validated followers needed for level 1 (Current Score: 0). This amount may not match your total followers.": "Gain a following to earn this reward. 1 validated followers needed for level 1 (Current Score: 0). This amount may not match your total followers.", "--end--": "--end--" } diff --git a/ui/component/rewardLink/view.jsx b/ui/component/rewardLink/view.jsx index 79491b0a9..fba7f1758 100644 --- a/ui/component/rewardLink/view.jsx +++ b/ui/component/rewardLink/view.jsx @@ -13,7 +13,7 @@ type Props = { label: ?string, reward: Reward, button: ?boolean, - claimReward: Reward => void, + claimReward: (Reward) => void, }; const RewardLink = (props: Props) => { @@ -36,6 +36,7 @@ const RewardLink = (props: Props) => { button={button ? 'primary' : 'link'} disabled={isPending} label={{displayLabel}} + aria-label={displayLabel} onClick={() => { claimReward(reward); }}