diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2019-12-21 09:25:02 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2019-12-21 09:25:02 +0100 |
commit | 5def76ebba937594c77070dba14aff8f168ced24 (patch) | |
tree | 79371616329666272936a151d2c27eccd9f5d35b /client/src/app/shared/user-subscription | |
parent | 3921166d78540a08d329793c9c2f952135c6fd67 (diff) | |
download | PeerTube-5def76ebba937594c77070dba14aff8f168ced24.tar.gz PeerTube-5def76ebba937594c77070dba14aff8f168ced24.tar.zst PeerTube-5def76ebba937594c77070dba14aff8f168ced24.zip |
Add autoplay tooltip, use of flex-wrap in video-info and other-videos
Diffstat (limited to 'client/src/app/shared/user-subscription')
-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 | }, |