1
0
Fork 0

Replace "overview" by "discover" in client titles

This commit is contained in:
Chocobozzz 2019-08-22 09:49:22 +02:00
parent 485b2fb2cc
commit eddd920987
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 2 additions and 2 deletions

View 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

View File

@ -19,7 +19,7 @@ const videosRoutes: Routes = [
component: VideoOverviewComponent,
data: {
meta: {
title: 'Videos overview'
title: 'Discover videos'
}
}
},