diff --git a/app.py b/app.py index e949244..65407e8 100644 --- a/app.py +++ b/app.py @@ -507,10 +507,10 @@ def scheduled_auto_backup(): db.session.add(b) db.session.commit() notify(s, f"Auto-export dla routera {r.name} OK", True) - log_operation(f"Automatyczny eksport dla routera {r.name} wykonany pomyślnie at {datetime.utcnow()}.") + log_operation(f"Automatyczny export dla routera {r.name} wykonany pomyślnie at {datetime.utcnow()}.") except Exception as e: notify(s, f"Auto-export dla routera {r.name} FAILED: {e}", False) - log_operation(f"Automatyczny eksport dla routera {r.name} FAILED at {datetime.utcnow()}: {e}") + log_operation(f"Automatyczny export dla routera {r.name} FAILED at {datetime.utcnow()}: {e}") def scheduled_auto_binary_backup(): with app.app_context(): @@ -875,8 +875,8 @@ def router_export(router_id): notify(get_settings(), f"Export {router.name} OK", True) log_operation(f"Export wykonany dla routera {router.name} at {datetime.utcnow()}") if request.headers.get("X-Requested-With") == "XMLHttpRequest": - return {"status": "success", "message": "Eksport zakończony."} - flash("Eksport zakończony.") + return {"status": "success", "message": "export zakończony."} + flash("Export zakończony.") except Exception as e: notify(get_settings(), f"Export {router.name} FAIL: {e}", False) log_operation(f"Export dla routera {router.name} FAILED: {e}") @@ -1058,7 +1058,7 @@ def view_export(backup_id): flash("Brak dostępu do backupu.") return redirect(url_for('all_files')) if b.backup_type != 'export': - flash("Wybrany backup nie jest plikiem eksportu.") + flash("Wybrany backup nie jest plikiem exportu.") return redirect(url_for('all_files')) try: with open(b.file_path, 'r', encoding='utf-8') as f: @@ -1082,10 +1082,10 @@ def send_export_email(backup_id): flash("Nie skonfigurowano ustawień SMTP w panelu.") return redirect(url_for('settings_view')) subject = f"RouterOS Export: {os.path.basename(b.file_path)}" - body = f"Przesyłam eksport {os.path.basename(b.file_path)} z routera {b.router.name}." + body = f"Przesyłam export {os.path.basename(b.file_path)} z routera {b.router.name}." if send_mail_with_attachment(s.smtp_host, s.smtp_port, s.smtp_login, s.smtp_password, s.smtp_login, subject, body, b.file_path): - flash("Wysłano eksport mailem.") + flash("Wysłano export mailem.") else: flash("Błąd wysyłki mailowej.") #return redirect(url_for('router_details', router_id=b.router_id)) diff --git a/templates/advanced_schedule.html b/templates/advanced_schedule.html index 0de9b1c..69797c4 100644 --- a/templates/advanced_schedule.html +++ b/templates/advanced_schedule.html @@ -42,7 +42,7 @@