Fix strings that cannot be merged by xlf-merge

This commit is contained in:
Chocobozzz 2022-06-16 17:05:24 +02:00
parent 8fe45ea7be
commit baf99fcc65
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
5 changed files with 7 additions and 7 deletions

View File

@ -62,7 +62,7 @@ export class FollowModalComponent extends FormReactive implements OnInit {
.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!`
)

View File

@ -147,7 +147,7 @@ export class VideoCommentListComponent extends RestTable implements OnInit {
.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.`
)

View File

@ -224,7 +224,7 @@ export class UserListComponent extends RestTable implements OnInit {
.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.`
)
@ -253,7 +253,7 @@ export class UserListComponent extends RestTable implements OnInit {
.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.`
)
@ -271,7 +271,7 @@ export class UserListComponent extends RestTable implements OnInit {
.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.`
)

View File

@ -67,7 +67,7 @@ export class UserBanModalComponent extends FormReactive implements OnInit {
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.`
)

View File

@ -81,7 +81,7 @@ export class VideoBlockComponent extends FormReactive implements OnInit {
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.`
)