diff options
Diffstat (limited to 'client/src/app/shared/shared-user-subscription/subscribe-button.component.html')
-rw-r--r-- | client/src/app/shared/shared-user-subscription/subscribe-button.component.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/client/src/app/shared/shared-user-subscription/subscribe-button.component.html b/client/src/app/shared/shared-user-subscription/subscribe-button.component.html index 341b83a04..d1d551c18 100644 --- a/client/src/app/shared/shared-user-subscription/subscribe-button.component.html +++ b/client/src/app/shared/shared-user-subscription/subscribe-button.component.html | |||
@@ -5,15 +5,16 @@ | |||
5 | 5 | ||
6 | <ng-template #userLoggedOut> | 6 | <ng-template #userLoggedOut> |
7 | <span [ngClass]="{ 'extra-text': isAtLeastOneChannelSubscribed }"> | 7 | <span [ngClass]="{ 'extra-text': isAtLeastOneChannelSubscribed }"> |
8 | <ng-container *ngIf="account; then multiple; else single"></ng-container> | 8 | <ng-container i18n *ngIf="isSingleSubscribe">Subscribe</ng-container> |
9 | <ng-template i18n #single>Subscribe</ng-template> | 9 | |
10 | <ng-template #multiple> | 10 | <ng-container *ngIf="!isSingleSubscribe"> |
11 | <span i18n>Subscribe to all channels</span> | 11 | <span i18n>Subscribe to all channels</span> |
12 | <span *ngIf="isAtLeastOneChannelSubscribed">{{ subscribeStatus(true).length }}/{{ subscribed.size }} | 12 | <span *ngIf="isAtLeastOneChannelSubscribed">{{ subscribeStatus(true).length }}/{{ subscribed.size }} |
13 | <ng-container i18n>channels subscribed</ng-container> | 13 | <ng-container i18n>channels subscribed</ng-container> |
14 | </span> | 14 | </span> |
15 | </ng-template> | 15 | </ng-container> |
16 | </span> | 16 | </span> |
17 | |||
17 | <span *ngIf="!isBigButton && displayFollowers && videoChannels.length > 1 && videoChannel.followersCount !== 0" class="followers-count"> | 18 | <span *ngIf="!isBigButton && displayFollowers && videoChannels.length > 1 && videoChannel.followersCount !== 0" class="followers-count"> |
18 | {{ videoChannels[0].followersCount | myNumberFormatter }} | 19 | {{ videoChannels[0].followersCount | myNumberFormatter }} |
19 | </span> | 20 | </span> |