Better plural localization support

pull/6562/head
Chocobozzz 2024-08-12 17:01:52 +02:00
parent 9819887668
commit 66b2d7d0f5
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 14 additions and 2 deletions

View File

@ -130,7 +130,13 @@ export class RunnerJobListComponent extends RestTable <RunnerJob> implements OnI
.subscribe({
next: () => {
this.reloadData()
this.notifier.success($localize`Job(s) cancelled.`)
this.notifier.success(
formatICU(
$localize`{count, plural, =1 {Job cancelled} other {{count} jobs cancelled}}`,
{ count: jobs.length }
)
)
},
error: err => this.notifier.error(err.message)
@ -151,7 +157,13 @@ export class RunnerJobListComponent extends RestTable <RunnerJob> implements OnI
.subscribe({
next: () => {
this.reloadData()
this.notifier.success($localize`Job(s) removed.`)
this.notifier.success(
formatICU(
$localize`{count, plural, =1 {Job removed} other {{count} jobs removed}}`,
{ count: jobs.length }
)
)
},
error: err => this.notifier.error(err.message)