aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-06-16 17:05:24 +0200
committerChocobozzz <me@florianbigard.com>2022-06-16 17:07:50 +0200
commitbaf99fcc65b2118d794a8b6fd537055505630b34 (patch)
tree0a8db9afd6f6f70b6403377e49064fec3b6b3acf /client/src/app/shared
parent8fe45ea7be58e499ce105fa9594a5f1bf9f1dd72 (diff)
downloadPeerTube-baf99fcc65b2118d794a8b6fd537055505630b34.tar.gz
PeerTube-baf99fcc65b2118d794a8b6fd537055505630b34.tar.zst
PeerTube-baf99fcc65b2118d794a8b6fd537055505630b34.zip
Fix strings that cannot be merged by xlf-merge
Diffstat (limited to 'client/src/app/shared')
-rw-r--r--client/src/app/shared/shared-moderation/user-ban-modal.component.ts2
-rw-r--r--client/src/app/shared/shared-moderation/video-block.component.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/shared-moderation/user-ban-modal.component.ts b/client/src/app/shared/shared-moderation/user-ban-modal.component.ts
index 8b483499a..617408f2a 100644
--- a/client/src/app/shared/shared-moderation/user-ban-modal.component.ts
+++ b/client/src/app/shared/shared-moderation/user-ban-modal.component.ts
@@ -67,7 +67,7 @@ export class UserBanModalComponent extends FormReactive implements OnInit {
67 let message: string 67 let message: string
68 68
69 if (Array.isArray(this.usersToBan)) { 69 if (Array.isArray(this.usersToBan)) {
70 message = prepareIcu($localize`{count, plural, =1 {1 user} other {{count} users}} banned.`)( 70 message = prepareIcu($localize`{count, plural, =1 {1 user banned.} other {{count} users banned.}}`)(
71 { count: this.usersToBan.length }, 71 { count: this.usersToBan.length },
72 $localize`${this.usersToBan.length} users banned.` 72 $localize`${this.usersToBan.length} users banned.`
73 ) 73 )
diff --git a/client/src/app/shared/shared-moderation/video-block.component.ts b/client/src/app/shared/shared-moderation/video-block.component.ts
index e14473b89..f8b22a3f6 100644
--- a/client/src/app/shared/shared-moderation/video-block.component.ts
+++ b/client/src/app/shared/shared-moderation/video-block.component.ts
@@ -81,7 +81,7 @@ export class VideoBlockComponent extends FormReactive implements OnInit {
81 this.videoBlocklistService.blockVideo(options) 81 this.videoBlocklistService.blockVideo(options)
82 .subscribe({ 82 .subscribe({
83 next: () => { 83 next: () => {
84 const message = prepareIcu($localize`{count, plural, =1 {Blocked {videoName}} other {Blocked {count} videos}}.`)( 84 const message = prepareIcu($localize`{count, plural, =1 {Blocked {videoName}.} other {Blocked {count} videos.}}`)(
85 { count: this.videos.length, videoName: this.getSingleVideo().name }, 85 { count: this.videos.length, videoName: this.getSingleVideo().name },
86 $localize`Blocked ${this.videos.length} videos.` 86 $localize`Blocked ${this.videos.length} videos.`
87 ) 87 )