diff options
author | Chocobozzz <me@florianbigard.com> | 2019-08-22 09:49:22 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-08-22 09:49:22 +0200 |
commit | 6e44fb37634ce1280b5ff03e2d367f2eaa334272 (patch) | |
tree | 97b076b2177284904ddbd5ca3f0def39778240cb /client/src/app | |
parent | d1c0a964a214e861f1106e69c62b1aec1b3d55a9 (diff) | |
download | PeerTube-6e44fb37634ce1280b5ff03e2d367f2eaa334272.tar.gz PeerTube-6e44fb37634ce1280b5ff03e2d367f2eaa334272.tar.zst PeerTube-6e44fb37634ce1280b5ff03e2d367f2eaa334272.zip |
Replace "overview" by "discover" in client titles
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/app.component.ts | 2 | ||||
-rw-r--r-- | client/src/app/videos/videos-routing.module.ts | 2 |
2 files changed, 2 insertions, 2 deletions
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 { | |||
226 | new Hotkey('g o', (event: KeyboardEvent): boolean => { | 226 | new Hotkey('g o', (event: KeyboardEvent): boolean => { |
227 | this.router.navigate([ '/videos/overview' ]) | 227 | this.router.navigate([ '/videos/overview' ]) |
228 | return false | 228 | return false |
229 | }, undefined, this.i18n('Go to the videos overview page')), | 229 | }, undefined, this.i18n('Go to the videos discover page')), |
230 | new Hotkey('g t', (event: KeyboardEvent): boolean => { | 230 | new Hotkey('g t', (event: KeyboardEvent): boolean => { |
231 | this.router.navigate([ '/videos/trending' ]) | 231 | this.router.navigate([ '/videos/trending' ]) |
232 | return false | 232 | 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 = [ | |||
19 | component: VideoOverviewComponent, | 19 | component: VideoOverviewComponent, |
20 | data: { | 20 | data: { |
21 | meta: { | 21 | meta: { |
22 | title: 'Videos overview' | 22 | title: 'Discover videos' |
23 | } | 23 | } |
24 | } | 24 | } |
25 | }, | 25 | }, |