missing premium updated message

This commit is contained in:
Kyle Spearrin 2018-06-28 23:11:47 -04:00
parent 4a2b3d6293
commit dec6b17aa4
2 changed files with 4 additions and 1 deletions

View File

@ -55,7 +55,7 @@ export class PremiumComponent {
private async finalizePremium() { private async finalizePremium() {
await this.apiService.refreshIdentityToken(); await this.apiService.refreshIdentityToken();
this.analytics.eventTrack.next({ action: 'Signed Up Premium' }); this.analytics.eventTrack.next({ action: 'Signed Up Premium' });
this.toasterService.popAsync('success', null, this.i18nService.t('accountUpdated')); this.toasterService.popAsync('success', null, this.i18nService.t('premiumUpdated'));
this.onPremiumPurchased.emit(); this.onPremiumPurchased.emit();
} }
} }

View File

@ -1202,6 +1202,9 @@
"message": "Go Premium", "message": "Go Premium",
"description": "Another way of saying \"Get a premium membership\"" "description": "Another way of saying \"Get a premium membership\""
}, },
"premiumUpdated": {
"message": "You've upgraded to premium."
},
"premiumSignUpAndGet": { "premiumSignUpAndGet": {
"message": "Sign up for a premium membership and get:" "message": "Sign up for a premium membership and get:"
}, },