diff options
Diffstat (limited to 'client/src/app/+video-channels')
-rw-r--r-- | client/src/app/+video-channels/video-channel-about/video-channel-about.component.html | 6 | ||||
-rw-r--r-- | client/src/app/+video-channels/video-channels.component.ts | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/+video-channels/video-channel-about/video-channel-about.component.html b/client/src/app/+video-channels/video-channel-about/video-channel-about.component.html index 9655668d7..c02213ebb 100644 --- a/client/src/app/+video-channels/video-channel-about/video-channel-about.component.html +++ b/client/src/app/+video-channels/video-channel-about/video-channel-about.component.html | |||
@@ -1,19 +1,19 @@ | |||
1 | <div *ngIf="videoChannel" class="row"> | 1 | <div *ngIf="videoChannel" class="row"> |
2 | <div class="description col-md-6 col-sm-12"> | 2 | <div class="description col-md-6 col-sm-12"> |
3 | <div class="block"> | 3 | <div class="block"> |
4 | <div i18n class="small-title">Description</div> | 4 | <div i18n class="small-title">DESCRIPTION</div> |
5 | <div class="content" [innerHtml]="getVideoChannelDescription()"></div> | 5 | <div class="content" [innerHtml]="getVideoChannelDescription()"></div> |
6 | </div> | 6 | </div> |
7 | 7 | ||
8 | <div class="block" *ngIf="supportHTML"> | 8 | <div class="block" *ngIf="supportHTML"> |
9 | <div i18n class="small-title">Support this channel</div> | 9 | <div i18n class="small-title">SUPPORT THIS CHANNEL</div> |
10 | <div class="content" [innerHtml]="supportHTML"></div> | 10 | <div class="content" [innerHtml]="supportHTML"></div> |
11 | </div> | 11 | </div> |
12 | </div> | 12 | </div> |
13 | 13 | ||
14 | <div class="stats col-md-6 col-sm-12"> | 14 | <div class="stats col-md-6 col-sm-12"> |
15 | <div class="block"> | 15 | <div class="block"> |
16 | <div i18n class="small-title">Stats</div> | 16 | <div i18n class="small-title">STATS</div> |
17 | <div i18n class="content">Created {{ videoChannel.createdAt | date }}</div> | 17 | <div i18n class="content">Created {{ videoChannel.createdAt | date }}</div> |
18 | </div> | 18 | </div> |
19 | </div> | 19 | </div> |
diff --git a/client/src/app/+video-channels/video-channels.component.ts b/client/src/app/+video-channels/video-channels.component.ts index 0889ca854..00b9938d9 100644 --- a/client/src/app/+video-channels/video-channels.component.ts +++ b/client/src/app/+video-channels/video-channels.component.ts | |||
@@ -66,9 +66,9 @@ export class VideoChannelsComponent implements OnInit, OnDestroy { | |||
66 | if (this.isUserLoggedIn()) this.hotkeysService.add(this.hotkeys) | 66 | if (this.isUserLoggedIn()) this.hotkeysService.add(this.hotkeys) |
67 | 67 | ||
68 | this.links = [ | 68 | this.links = [ |
69 | { label: this.i18n('Videos'), routerLink: 'videos' }, | 69 | { label: this.i18n('VIDEOS'), routerLink: 'videos' }, |
70 | { label: this.i18n('Video playlists'), routerLink: 'video-playlists' }, | 70 | { label: this.i18n('VIDEO PLAYLISTS'), routerLink: 'video-playlists' }, |
71 | { label: this.i18n('About'), routerLink: 'about' } | 71 | { label: this.i18n('ABOUT'), routerLink: 'about' } |
72 | ] | 72 | ] |
73 | } | 73 | } |
74 | 74 | ||