X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bmy-account%2Fmy-account-history%2Fmy-account-history.component.ts;h=3298c56c737da60debf6b08e01b3cf8e32f5b4ff;hb=66357162f8e1227495f09bd4f68446aad7071c6d;hp=73340d21aee1133b5a72804fc71f7203c46e7a09;hpb=97567dd81f508dd6295ac4d73d849aa2ce0a6549;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+my-account/my-account-history/my-account-history.component.ts b/client/src/app/+my-account/my-account-history/my-account-history.component.ts index 73340d21a..3298c56c7 100644 --- a/client/src/app/+my-account/my-account-history/my-account-history.component.ts +++ b/client/src/app/+my-account/my-account-history/my-account-history.component.ts @@ -1,16 +1,18 @@ import { Component, OnDestroy, OnInit } from '@angular/core' import { ActivatedRoute, Router } from '@angular/router' -import { immutableAssign } from '@app/shared/misc/utils' -import { ComponentPagination } from '@app/shared/rest/component-pagination.model' -import { AuthService } from '../../core/auth' -import { ConfirmService } from '../../core/confirm' -import { AbstractVideoList } from '../../shared/video/abstract-video-list' -import { VideoService } from '../../shared/video/video.service' -import { I18n } from '@ngx-translate/i18n-polyfill' -import { ScreenService } from '@app/shared/misc/screen.service' -import { UserHistoryService } from '@app/shared/users/user-history.service' -import { UserService } from '@app/shared' -import { Notifier, ServerService } from '@app/core' +import { + AuthService, + ComponentPagination, + ConfirmService, + LocalStorageService, + Notifier, + ScreenService, + ServerService, + UserService +} from '@app/core' +import { immutableAssign } from '@app/helpers' +import { UserHistoryService } from '@app/shared/shared-main' +import { AbstractVideoList } from '@app/shared/shared-video-miniature' @Component({ selector: 'my-account-history', @@ -34,14 +36,13 @@ export class MyAccountHistoryComponent extends AbstractVideoList implements OnIn protected userService: UserService, protected notifier: Notifier, protected screenService: ScreenService, - protected i18n: I18n, + protected storageService: LocalStorageService, private confirmService: ConfirmService, - private videoService: VideoService, private userHistoryService: UserHistoryService ) { super() - this.titlePage = this.i18n('My videos history') + this.titlePage = $localize`My videos history` } ngOnInit () { @@ -69,8 +70,8 @@ export class MyAccountHistoryComponent extends AbstractVideoList implements OnIn .subscribe( () => { const message = this.videosHistoryEnabled === true ? - this.i18n('Videos history is enabled') : - this.i18n('Videos history is disabled') + $localize`Videos history is enabled` : + $localize`Videos history is disabled` this.notifier.success(message) @@ -82,8 +83,8 @@ export class MyAccountHistoryComponent extends AbstractVideoList implements OnIn } async deleteHistory () { - const title = this.i18n('Delete videos history') - const message = this.i18n('Are you sure you want to delete all your videos history?') + const title = $localize`Delete videos history` + const message = $localize`Are you sure you want to delete all your videos history?` const res = await this.confirmService.confirm(message, title) if (res !== true) return @@ -91,7 +92,7 @@ export class MyAccountHistoryComponent extends AbstractVideoList implements OnIn this.userHistoryService.deleteUserVideosHistory() .subscribe( () => { - this.notifier.success(this.i18n('Videos history deleted')) + this.notifier.success($localize`Videos history deleted`) this.reloadVideos() },