X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fheader%2Fheader.component.ts;h=92a7eded651eea650993ca6243ec7930cf433f34;hb=7cd1b12c19d0589d1d692ed0571ca0800f028aea;hp=c6e942e0e5c2368c024f661c3786c42bfd64da93;hpb=baeb429d06d101f69c677fdb70c3da2eb9d3823d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/header/header.component.ts b/client/src/app/header/header.component.ts index c6e942e0e..92a7eded6 100644 --- a/client/src/app/header/header.component.ts +++ b/client/src/app/header/header.component.ts @@ -2,8 +2,9 @@ import { filter, first, map, tap } from 'rxjs/operators' import { Component, OnInit } from '@angular/core' import { ActivatedRoute, NavigationEnd, Params, Router } from '@angular/router' import { getParameterByName } from '../shared/misc/utils' -import { AuthService } from '@app/core' +import { AuthService, Notifier, ServerService } from '@app/core' import { of } from 'rxjs' +import { I18n } from '@ngx-translate/i18n-polyfill' @Component({ selector: 'my-header', @@ -13,14 +14,21 @@ import { of } from 'rxjs' export class HeaderComponent implements OnInit { searchValue = '' + ariaLabelTextForSearch = '' constructor ( private router: Router, private route: ActivatedRoute, - private auth: AuthService + private auth: AuthService, + private serverService: ServerService, + private authService: AuthService, + private notifier: Notifier, + private i18n: I18n ) {} ngOnInit () { + this.ariaLabelTextForSearch = this.i18n('Search videos, channels') + this.router.events .pipe( filter(e => e instanceof NavigationEnd),