aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/channel/avatar.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/channel/avatar.component.ts')
-rw-r--r--client/src/app/shared/channel/avatar.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/channel/avatar.component.ts b/client/src/app/shared/channel/avatar.component.ts
index 2c8eeb4b2..31f39c200 100644
--- a/client/src/app/shared/channel/avatar.component.ts
+++ b/client/src/app/shared/channel/avatar.component.ts
@@ -20,11 +20,11 @@ export class AvatarComponent implements OnInit {
20 20
21 ngOnInit () { 21 ngOnInit () {
22 this.channelLinkTitle = this.i18n( 22 this.channelLinkTitle = this.i18n(
23 'Go to the channel page of {{name}} ({{handle}})', 23 '{{name}} (channel page)',
24 { name: this.video.channel.name, handle: this.video.byVideoChannel } 24 { name: this.video.channel.name, handle: this.video.byVideoChannel }
25 ) 25 )
26 this.accountLinkTitle = this.i18n( 26 this.accountLinkTitle = this.i18n(
27 'Go to the account page of {{name}} ({{handle}})', 27 '{{name}} (account page)',
28 { name: this.video.account.name, handle: this.video.byAccount } 28 { name: this.video.account.name, handle: this.video.byAccount }
29 ) 29 )
30 } 30 }