diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-04 16:21:17 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-05 08:43:01 +0200 |
commit | b1d40cff89f7cff565a98cdbcea9a624196a169a (patch) | |
tree | d24746c1cc69f50471a9eba0dfb1c1bae06a1870 /client/src/app/+video-channels/video-channels.component.html | |
parent | 989e526abf0c0dd7958deb630df009608561bb67 (diff) | |
download | PeerTube-b1d40cff89f7cff565a98cdbcea9a624196a169a.tar.gz PeerTube-b1d40cff89f7cff565a98cdbcea9a624196a169a.tar.zst PeerTube-b1d40cff89f7cff565a98cdbcea9a624196a169a.zip |
Add i18n attributes
Diffstat (limited to 'client/src/app/+video-channels/video-channels.component.html')
-rw-r--r-- | client/src/app/+video-channels/video-channels.component.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/client/src/app/+video-channels/video-channels.component.html b/client/src/app/+video-channels/video-channels.component.html index 6b25d16ab..a52894cac 100644 --- a/client/src/app/+video-channels/video-channels.component.html +++ b/client/src/app/+video-channels/video-channels.component.html | |||
@@ -8,19 +8,19 @@ | |||
8 | <div class="actor-names"> | 8 | <div class="actor-names"> |
9 | <div class="actor-display-name">{{ videoChannel.displayName }}</div> | 9 | <div class="actor-display-name">{{ videoChannel.displayName }}</div> |
10 | </div> | 10 | </div> |
11 | <div class="actor-followers">{{ videoChannel.followersCount }} subscribers</div> | 11 | <div i18n class="actor-followers">{{ videoChannel.followersCount }} subscribers</div> |
12 | 12 | ||
13 | <a [routerLink]="[ '/accounts', videoChannel.ownerBy ]" title="Go the owner account page" class="actor-owner"> | 13 | <a [routerLink]="[ '/accounts', videoChannel.ownerBy ]" i18n-title title="Go the owner account page" class="actor-owner"> |
14 | <span>Created by {{ videoChannel.ownerBy }}</span> | 14 | <span i18n>Created by {{ videoChannel.ownerBy }}</span> |
15 | <img [src]="videoChannel.ownerAvatarUrl" alt="Owner account avatar" /> | 15 | <img [src]="videoChannel.ownerAvatarUrl" alt="Owner account avatar" /> |
16 | </a> | 16 | </a> |
17 | </div> | 17 | </div> |
18 | </div> | 18 | </div> |
19 | 19 | ||
20 | <div class="links"> | 20 | <div class="links"> |
21 | <a routerLink="videos" routerLinkActive="active" class="title-page">Videos</a> | 21 | <a i18n routerLink="videos" routerLinkActive="active" class="title-page">Videos</a> |
22 | 22 | ||
23 | <a routerLink="about" routerLinkActive="active" class="title-page">About</a> | 23 | <a i18n routerLink="about" routerLinkActive="active" class="title-page">About</a> |
24 | </div> | 24 | </div> |
25 | </div> | 25 | </div> |
26 | 26 | ||