diff --git a/src/pages/schedule/schedule.component.ts b/src/pages/schedule/schedule.component.ts index a058a1c..0c2534c 100644 --- a/src/pages/schedule/schedule.component.ts +++ b/src/pages/schedule/schedule.component.ts @@ -165,7 +165,7 @@ export class ScheduleComponent { protected openDialog() { if (this.lastRequest == null) { - this.notify.error("It is not possible to make an import request because the table data has not been selected", "Import error"); + this.notify.error("Запрос на импорт невозможен, поскольку данные таблицы не были выбраны", "Ошибка импорта"); return; } const dialogRef = this.dialog.open(ConfirmDialogComponent); @@ -185,7 +185,7 @@ export class ScheduleComponent { }, error: _ => { this.excelImportLoader = false; - this.notify.error("Failed to import Excel file"); + this.notify.error("Не удалось импортировать файл Excel"); } }); }