diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-11-12 21:09:17 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-11-12 21:09:28 +0100 |
commit | dc5bb5cea5bf7e906caa6d9c5468e6de36e605de (patch) | |
tree | 9176c9f6d2f508a11ea444cef8105840486960c6 /client/src/app/shared/shared-moderation | |
parent | 501af82d999a79e277f87794f6296d0e3495775c (diff) | |
download | PeerTube-dc5bb5cea5bf7e906caa6d9c5468e6de36e605de.tar.gz PeerTube-dc5bb5cea5bf7e906caa6d9c5468e6de36e605de.tar.zst PeerTube-dc5bb5cea5bf7e906caa6d9c5468e6de36e605de.zip |
reword unclear sentences, check for grammar
fixes #3222
Diffstat (limited to 'client/src/app/shared/shared-moderation')
-rw-r--r-- | client/src/app/shared/shared-moderation/user-moderation-dropdown.component.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/shared/shared-moderation/user-moderation-dropdown.component.ts b/client/src/app/shared/shared-moderation/user-moderation-dropdown.component.ts index 44aefa853..f59910d1c 100644 --- a/client/src/app/shared/shared-moderation/user-moderation-dropdown.component.ts +++ b/client/src/app/shared/shared-moderation/user-moderation-dropdown.component.ts | |||
@@ -295,7 +295,7 @@ export class UserModerationDropdownComponent implements OnInit, OnChanges { | |||
295 | this.userActions.push([ | 295 | this.userActions.push([ |
296 | { | 296 | { |
297 | label: $localize`Mute this account`, | 297 | label: $localize`Mute this account`, |
298 | description: $localize`Hide any content from that user for you.`, | 298 | description: $localize`Hide any content from that user from you.`, |
299 | isDisplayed: ({ account }) => account.mutedByUser === false, | 299 | isDisplayed: ({ account }) => account.mutedByUser === false, |
300 | handler: ({ account }) => this.blockAccountByUser(account) | 300 | handler: ({ account }) => this.blockAccountByUser(account) |
301 | }, | 301 | }, |
@@ -319,7 +319,7 @@ export class UserModerationDropdownComponent implements OnInit, OnChanges { | |||
319 | }, | 319 | }, |
320 | { | 320 | { |
321 | label: $localize`Remove comments from your videos`, | 321 | label: $localize`Remove comments from your videos`, |
322 | description: $localize`Remove comments of this account from your videos.`, | 322 | description: $localize`Remove comments made by this account on your videos.`, |
323 | handler: ({ account }) => this.bulkRemoveCommentsOf({ accountName: account.nameWithHost, scope: 'my-videos' }) | 323 | handler: ({ account }) => this.bulkRemoveCommentsOf({ accountName: account.nameWithHost, scope: 'my-videos' }) |
324 | } | 324 | } |
325 | ]) | 325 | ]) |
@@ -331,13 +331,13 @@ export class UserModerationDropdownComponent implements OnInit, OnChanges { | |||
331 | instanceActions = instanceActions.concat([ | 331 | instanceActions = instanceActions.concat([ |
332 | { | 332 | { |
333 | label: $localize`Mute this account by your instance`, | 333 | label: $localize`Mute this account by your instance`, |
334 | description: $localize`Hide any content from that user for you, your instance and its users.`, | 334 | description: $localize`Hide any content from that user from you, your instance and its users.`, |
335 | isDisplayed: ({ account }) => account.mutedByInstance === false, | 335 | isDisplayed: ({ account }) => account.mutedByInstance === false, |
336 | handler: ({ account }) => this.blockAccountByInstance(account) | 336 | handler: ({ account }) => this.blockAccountByInstance(account) |
337 | }, | 337 | }, |
338 | { | 338 | { |
339 | label: $localize`Unmute this account by your instance`, | 339 | label: $localize`Unmute this account by your instance`, |
340 | description: $localize`Show back content from that user for you, your instance and its users.`, | 340 | description: $localize`Show this user's content to the users of this instance again.`, |
341 | isDisplayed: ({ account }) => account.mutedByInstance === true, | 341 | isDisplayed: ({ account }) => account.mutedByInstance === true, |
342 | handler: ({ account }) => this.unblockAccountByInstance(account) | 342 | handler: ({ account }) => this.unblockAccountByInstance(account) |
343 | } | 343 | } |
@@ -349,7 +349,7 @@ export class UserModerationDropdownComponent implements OnInit, OnChanges { | |||
349 | instanceActions = instanceActions.concat([ | 349 | instanceActions = instanceActions.concat([ |
350 | { | 350 | { |
351 | label: $localize`Mute the instance by your instance`, | 351 | label: $localize`Mute the instance by your instance`, |
352 | description: $localize`Hide any content from that instance for you, your instance and its users.`, | 352 | description: $localize`Hide any content from that instance from you, your instance and its users.`, |
353 | isDisplayed: ({ account }) => !account.userId && account.mutedServerByInstance === false, | 353 | isDisplayed: ({ account }) => !account.userId && account.mutedServerByInstance === false, |
354 | handler: ({ account }) => this.blockServerByInstance(account.host) | 354 | handler: ({ account }) => this.blockServerByInstance(account.host) |
355 | }, | 355 | }, |
@@ -366,7 +366,7 @@ export class UserModerationDropdownComponent implements OnInit, OnChanges { | |||
366 | instanceActions = instanceActions.concat([ | 366 | instanceActions = instanceActions.concat([ |
367 | { | 367 | { |
368 | label: $localize`Remove comments from your instance`, | 368 | label: $localize`Remove comments from your instance`, |
369 | description: $localize`Remove comments of this account from your instance.`, | 369 | description: $localize`Remove comments made by this account from your instance.`, |
370 | handler: ({ account }) => this.bulkRemoveCommentsOf({ accountName: account.nameWithHost, scope: 'instance' }) | 370 | handler: ({ account }) => this.bulkRemoveCommentsOf({ accountName: account.nameWithHost, scope: 'instance' }) |
371 | } | 371 | } |
372 | ]) | 372 | ]) |