diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index db1f91f8c..83a751dd6 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts @@ -226,7 +226,7 @@ export class AppComponent implements OnInit { new Hotkey('g o', (event: KeyboardEvent): boolean => { this.router.navigate([ '/videos/overview' ]) return false - }, undefined, this.i18n('Go to the videos overview page')), + }, undefined, this.i18n('Go to the videos discover page')), new Hotkey('g t', (event: KeyboardEvent): boolean => { this.router.navigate([ '/videos/trending' ]) return false diff --git a/client/src/app/videos/videos-routing.module.ts b/client/src/app/videos/videos-routing.module.ts index 4eaae93cb..f0049d8c4 100644 --- a/client/src/app/videos/videos-routing.module.ts +++ b/client/src/app/videos/videos-routing.module.ts @@ -19,7 +19,7 @@ const videosRoutes: Routes = [ component: VideoOverviewComponent, data: { meta: { - title: 'Videos overview' + title: 'Discover videos' } } },