From: Chocobozzz Date: Thu, 22 Aug 2019 07:49:22 +0000 (+0200) Subject: Replace "overview" by "discover" in client titles X-Git-Tag: v1.4.0~19 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6e44fb37634ce1280b5ff03e2d367f2eaa334272;p=oweals%2Fpeertube.git Replace "overview" by "discover" in client titles --- 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' } } },