diff options
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/user-subscription/subscribe-button.component.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/app/shared/user-subscription/subscribe-button.component.ts b/client/src/app/shared/user-subscription/subscribe-button.component.ts index b04e230f0..7180400b5 100644 --- a/client/src/app/shared/user-subscription/subscribe-button.component.ts +++ b/client/src/app/shared/user-subscription/subscribe-button.component.ts | |||
@@ -70,7 +70,11 @@ export class SubscribeButtonComponent implements OnInit { | |||
70 | this.subscribed = true | 70 | this.subscribed = true |
71 | 71 | ||
72 | this.notifier.success( | 72 | this.notifier.success( |
73 | this.i18n('Subscribed to {{nameWithHost}}', { nameWithHost: this.videoChannel.displayName }), | 73 | this.i18n( |
74 | 'Subscribed to {{nameWithHost}}. ' + | ||
75 | 'You will be notified of all their new videos.', | ||
76 | { nameWithHost: this.videoChannel.displayName } | ||
77 | ), | ||
74 | this.i18n('Subscribed') | 78 | this.i18n('Subscribed') |
75 | ) | 79 | ) |
76 | }, | 80 | }, |