Fix strings that cannot be merged by xlf-merge
This commit is contained in:
parent
8fe45ea7be
commit
baf99fcc65
|
@ -62,7 +62,7 @@ export class FollowModalComponent extends FormReactive implements OnInit {
|
||||||
.subscribe({
|
.subscribe({
|
||||||
next: () => {
|
next: () => {
|
||||||
this.notifier.success(
|
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 },
|
{ count: hostsOrHandles.length },
|
||||||
$localize`Follow request(s) sent!`
|
$localize`Follow request(s) sent!`
|
||||||
)
|
)
|
||||||
|
|
|
@ -147,7 +147,7 @@ export class VideoCommentListComponent extends RestTable implements OnInit {
|
||||||
.subscribe({
|
.subscribe({
|
||||||
next: () => {
|
next: () => {
|
||||||
this.notifier.success(
|
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 },
|
{ count: commentArgs.length },
|
||||||
$localize`${commentArgs.length} comment(s) deleted.`
|
$localize`${commentArgs.length} comment(s) deleted.`
|
||||||
)
|
)
|
||||||
|
|
|
@ -224,7 +224,7 @@ export class UserListComponent extends RestTable implements OnInit {
|
||||||
.subscribe({
|
.subscribe({
|
||||||
next: () => {
|
next: () => {
|
||||||
this.notifier.success(
|
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 },
|
{ count: users.length },
|
||||||
$localize`${users.length} users unbanned.`
|
$localize`${users.length} users unbanned.`
|
||||||
)
|
)
|
||||||
|
@ -253,7 +253,7 @@ export class UserListComponent extends RestTable implements OnInit {
|
||||||
.subscribe({
|
.subscribe({
|
||||||
next: () => {
|
next: () => {
|
||||||
this.notifier.success(
|
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 },
|
{ count: users.length },
|
||||||
$localize`${users.length} users deleted.`
|
$localize`${users.length} users deleted.`
|
||||||
)
|
)
|
||||||
|
@ -271,7 +271,7 @@ export class UserListComponent extends RestTable implements OnInit {
|
||||||
.subscribe({
|
.subscribe({
|
||||||
next: () => {
|
next: () => {
|
||||||
this.notifier.success(
|
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 },
|
{ count: users.length },
|
||||||
$localize`${users.length} users email set as verified.`
|
$localize`${users.length} users email set as verified.`
|
||||||
)
|
)
|
||||||
|
|
|
@ -67,7 +67,7 @@ export class UserBanModalComponent extends FormReactive implements OnInit {
|
||||||
let message: string
|
let message: string
|
||||||
|
|
||||||
if (Array.isArray(this.usersToBan)) {
|
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 },
|
{ count: this.usersToBan.length },
|
||||||
$localize`${this.usersToBan.length} users banned.`
|
$localize`${this.usersToBan.length} users banned.`
|
||||||
)
|
)
|
||||||
|
|
|
@ -81,7 +81,7 @@ export class VideoBlockComponent extends FormReactive implements OnInit {
|
||||||
this.videoBlocklistService.blockVideo(options)
|
this.videoBlocklistService.blockVideo(options)
|
||||||
.subscribe({
|
.subscribe({
|
||||||
next: () => {
|
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 },
|
{ count: this.videos.length, videoName: this.getSingleVideo().name },
|
||||||
$localize`Blocked ${this.videos.length} videos.`
|
$localize`Blocked ${this.videos.length} videos.`
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue