From d3bb7994feda8833791d3e609ad7ffdc87efdec6 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 3 Sep 2020 16:09:22 +0200 Subject: [PATCH] Improve report labels --- client/src/app/+accounts/accounts.component.ts | 2 +- .../app/+videos/+video-watch/comment/video-comment.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/app/+accounts/accounts.component.ts b/client/src/app/+accounts/accounts.component.ts index bbce62c35..dbc7c8887 100644 --- a/client/src/app/+accounts/accounts.component.ts +++ b/client/src/app/+accounts/accounts.component.ts @@ -112,7 +112,7 @@ export class AccountsComponent implements OnInit, OnDestroy { if (!this.isAccountManageable) { this.prependModerationActions = [ { - label: $localize`Report account`, + label: $localize`Report this account`, handler: () => this.showReportModal() } ] diff --git a/client/src/app/+videos/+video-watch/comment/video-comment.component.ts b/client/src/app/+videos/+video-watch/comment/video-comment.component.ts index 2d8b9eefe..ac2a71aa6 100644 --- a/client/src/app/+videos/+video-watch/comment/video-comment.component.ts +++ b/client/src/app/+videos/+video-watch/comment/video-comment.component.ts @@ -168,7 +168,7 @@ export class VideoCommentComponent implements OnInit, OnChanges { if (this.isReportableByUser()) { this.prependModerationActions.push({ - label: $localize`Report`, + label: $localize`Report this comment`, iconName: 'flag', handler: () => this.showReportModal() })