X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideo-channels%2Fvideo-channels.component.ts;h=ea8bda1cf7df5c22653d24e44438e338132d462f;hb=66357162f8e1227495f09bd4f68446aad7071c6d;hp=cae442ee7d82e739547741e7dab911d241887bca;hpb=8c360747995e17eb5520e22fc3d7bd4c3d26eeee;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+video-channels/video-channels.component.ts b/client/src/app/+video-channels/video-channels.component.ts index cae442ee7..ea8bda1cf 100644 --- a/client/src/app/+video-channels/video-channels.component.ts +++ b/client/src/app/+video-channels/video-channels.component.ts @@ -6,7 +6,6 @@ import { ActivatedRoute } from '@angular/router' import { AuthService, Notifier, RestExtractor, ScreenService } from '@app/core' import { ListOverflowItem, VideoChannel, VideoChannelService } from '@app/shared/shared-main' import { SubscribeButtonComponent } from '@app/shared/shared-user-subscription' -import { I18n } from '@ngx-translate/i18n-polyfill' @Component({ templateUrl: './video-channels.component.html', @@ -23,7 +22,6 @@ export class VideoChannelsComponent implements OnInit, OnDestroy { private routeSub: Subscription constructor ( - private i18n: I18n, private route: ActivatedRoute, private notifier: Notifier, private authService: AuthService, @@ -59,14 +57,14 @@ export class VideoChannelsComponent implements OnInit, OnDestroy { this.subscribeButton.unsubscribe() : this.subscribeButton.subscribe() return false - }, undefined, this.i18n('Subscribe to the account')) + }, undefined, $localize`Subscribe to the account`) ] if (this.isUserLoggedIn()) this.hotkeysService.add(this.hotkeys) this.links = [ - { label: this.i18n('VIDEOS'), routerLink: 'videos' }, - { label: this.i18n('VIDEO PLAYLISTS'), routerLink: 'video-playlists' }, - { label: this.i18n('ABOUT'), routerLink: 'about' } + { label: $localize`VIDEOS`, routerLink: 'videos' }, + { label: $localize`VIDEO PLAYLISTS`, routerLink: 'video-playlists' }, + { label: $localize`ABOUT`, routerLink: 'about' } ] } @@ -91,6 +89,6 @@ export class VideoChannelsComponent implements OnInit, OnDestroy { } activateCopiedMessage () { - this.notifier.success(this.i18n('Username copied')) + this.notifier.success($localize`Username copied`) } }