aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/video-list/video-most-liked.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+videos/video-list/video-most-liked.component.ts')
-rw-r--r--client/src/app/+videos/video-list/video-most-liked.component.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/client/src/app/+videos/video-list/video-most-liked.component.ts b/client/src/app/+videos/video-list/video-most-liked.component.ts
index ca14851bb..e5f7bd152 100644
--- a/client/src/app/+videos/video-list/video-most-liked.component.ts
+++ b/client/src/app/+videos/video-list/video-most-liked.component.ts
@@ -5,7 +5,6 @@ import { HooksService } from '@app/core/plugins/hooks.service'
5import { immutableAssign } from '@app/helpers' 5import { immutableAssign } from '@app/helpers'
6import { VideoService } from '@app/shared/shared-main' 6import { VideoService } from '@app/shared/shared-main'
7import { AbstractVideoList } from '@app/shared/shared-video-miniature' 7import { AbstractVideoList } from '@app/shared/shared-video-miniature'
8import { I18n } from '@ngx-translate/i18n-polyfill'
9import { VideoSortField } from '@shared/models' 8import { VideoSortField } from '@shared/models'
10 9
11@Component({ 10@Component({
@@ -20,7 +19,6 @@ export class VideoMostLikedComponent extends AbstractVideoList implements OnInit
20 useUserVideoPreferences = true 19 useUserVideoPreferences = true
21 20
22 constructor ( 21 constructor (
23 protected i18n: I18n,
24 protected router: Router, 22 protected router: Router,
25 protected serverService: ServerService, 23 protected serverService: ServerService,
26 protected route: ActivatedRoute, 24 protected route: ActivatedRoute,
@@ -40,8 +38,8 @@ export class VideoMostLikedComponent extends AbstractVideoList implements OnInit
40 38
41 this.generateSyndicationList() 39 this.generateSyndicationList()
42 40
43 this.titlePage = this.i18n('Most liked videos') 41 this.titlePage = $localize`Most liked videos`
44 this.titleTooltip = this.i18n('Videos that have the higher number of likes.') 42 this.titleTooltip = $localize`Videos that have the higher number of likes.`
45 } 43 }
46 44
47 getVideosObservable (page: number) { 45 getVideosObservable (page: number) {