From 4ce4da37b916b15e906fcf4cc914d082c689e093 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Wed, 29 Nov 2017 22:04:07 -0500 Subject: [PATCH] add referral message type Also fixed many downloads text --- src/renderer/js/rewards.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/renderer/js/rewards.js b/src/renderer/js/rewards.js index 2a30be2d3..1482fc1ca 100644 --- a/src/renderer/js/rewards.js +++ b/src/renderer/js/rewards.js @@ -22,7 +22,7 @@ function rewardMessage(type, amount) { amount ), many_downloads: __( - "You earned %s LBC for downloading some of the things.", + "You earned %s LBC for downloading a bunch of things.", amount ), first_publish: __( @@ -33,6 +33,10 @@ function rewardMessage(type, amount) { "You earned %s LBC for watching a featured download.", amount ), + referral: __( + "You earned %s LBC for referring someone.", + amount + ), }[type]; } -- 2.45.3