]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+video-channels/video-channels.component.html
Add i18n attributes
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.component.html
1 <div *ngIf="videoChannel" class="row">
2 <div class="sub-menu">
3
4 <div class="actor">
5 <img [src]="videoChannel.avatarUrl" alt="Avatar" />
6
7 <div class="actor-info">
8 <div class="actor-names">
9 <div class="actor-display-name">{{ videoChannel.displayName }}</div>
10 </div>
11 <div i18n class="actor-followers">{{ videoChannel.followersCount }} subscribers</div>
12
13 <a [routerLink]="[ '/accounts', videoChannel.ownerBy ]" i18n-title title="Go the owner account page" class="actor-owner">
14 <span i18n>Created by {{ videoChannel.ownerBy }}</span>
15 <img [src]="videoChannel.ownerAvatarUrl" alt="Owner account avatar" />
16 </a>
17 </div>
18 </div>
19
20 <div class="links">
21 <a i18n routerLink="videos" routerLinkActive="active" class="title-page">Videos</a>
22
23 <a i18n routerLink="about" routerLinkActive="active" class="title-page">About</a>
24 </div>
25 </div>
26
27 <div class="margin-content">
28 <router-outlet></router-outlet>
29 </div>
30 </div>