Temp use the old translation key for hotfix

This commit is contained in:
Amelia 2025-04-18 10:19:25 +02:00
parent 727b8b353f
commit c527932f6e
No known key found for this signature in database
GPG key ID: D6D0ECE365407EAA

View file

@ -473,7 +473,8 @@ export class ActionService {
}
async deleteMultipleVolumes(volumes: Array<Volume>, callback?: BooleanActionCallback) {
if (!await this.confirmService.confirm(translate('toasts.confirm-delete-multiple-volumes', {count: volumes.length}))) return;
// TODO: Change translation key back to "toasts.confirm-delete-multiple-volumes"
if (!await this.confirmService.confirm(translate('toasts.confirm-delete-multiple-chapters', {count: volumes.length}))) return;
this.volumeService.deleteMultipleVolumes(volumes.map(v => v.id)).subscribe((success) => {
if (callback) {