.subscribe({
next: () => {
this.notifier.success(
- prepareIcu($localize`{count, plural, =1 {Follow request} other {Follow requests}} sent!`)(
+ prepareIcu($localize`{count, plural, =1 {Follow request sent!} other {Follow requests sent!}}`)(
{ count: hostsOrHandles.length },
$localize`Follow request(s) sent!`
)
.subscribe({
next: () => {
this.notifier.success(
- prepareIcu($localize`{count, plural, =1 {1 comment} other {{count} comments}} deleted.`)(
+ prepareIcu($localize`{count, plural, =1 {1 comment deleted.} other {{count} comments deleted.}}`)(
{ count: commentArgs.length },
$localize`${commentArgs.length} comment(s) deleted.`
)
.subscribe({
next: () => {
this.notifier.success(
- prepareIcu($localize`{count, plural, =1 {1 user} other {{count} users}} unbanned.`)(
+ prepareIcu($localize`{count, plural, =1 {1 user unbanned.} other {{count} users unbanned.}}`)(
{ count: users.length },
$localize`${users.length} users unbanned.`
)
.subscribe({
next: () => {
this.notifier.success(
- prepareIcu($localize`{count, plural, =1 {1 user} other {{count} users}} deleted.`)(
+ prepareIcu($localize`{count, plural, =1 {1 user deleted.} other {{count} users deleted.}}`)(
{ count: users.length },
$localize`${users.length} users deleted.`
)
.subscribe({
next: () => {
this.notifier.success(
- prepareIcu($localize`{count, plural, =1 {1 user} other {{count} users}} email set as verified.`)(
+ prepareIcu($localize`{count, plural, =1 {1 user email set as verified.} other {{count} user emails set as verified.}}`)(
{ count: users.length },
$localize`${users.length} users email set as verified.`
)
let message: string
if (Array.isArray(this.usersToBan)) {
- message = prepareIcu($localize`{count, plural, =1 {1 user} other {{count} users}} banned.`)(
+ message = prepareIcu($localize`{count, plural, =1 {1 user banned.} other {{count} users banned.}}`)(
{ count: this.usersToBan.length },
$localize`${this.usersToBan.length} users banned.`
)
this.videoBlocklistService.blockVideo(options)
.subscribe({
next: () => {
- const message = prepareIcu($localize`{count, plural, =1 {Blocked {videoName}} other {Blocked {count} videos}}.`)(
+ const message = prepareIcu($localize`{count, plural, =1 {Blocked {videoName}.} other {Blocked {count} videos.}}`)(
{ count: this.videos.length, videoName: this.getSingleVideo().name },
$localize`Blocked ${this.videos.length} videos.`
)