refactor: translate error to russia

This commit is contained in:
Polianin Nikita 2024-12-23 05:15:54 +03:00
parent f26d74aae5
commit 6e914caabc

View File

@ -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");
}
});
}