]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Replace "overview" by "discover" in client titles
authorChocobozzz <me@florianbigard.com>
Thu, 22 Aug 2019 07:49:22 +0000 (09:49 +0200)
committerChocobozzz <me@florianbigard.com>
Thu, 22 Aug 2019 08:33:57 +0000 (10:33 +0200)
client/src/app/app.component.ts
client/src/app/videos/videos-routing.module.ts

index db1f91f8caac4eb2e9a3fc7c48dea540da651f46..83a751dd6003f7ef59b7c8ec080b94393456277d 100644 (file)
@@ -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
index 4eaae93cbce4e36aafae2d43d39875a3b96a74c8..f0049d8c4e01e26ac4d2cde06611e75c4a0a9516 100644 (file)
@@ -19,7 +19,7 @@ const videosRoutes: Routes = [
         component: VideoOverviewComponent,
         data: {
           meta: {
-            title: 'Videos overview'
+            title: 'Discover videos'
           }
         }
       },