import { AlertTriangle, Clock, LocateIcon } from "lucide-react"; import React from "react"; import { useTranslation } from "react-i18next"; import { Sheet } from "react-modal-sheet"; interface StopHelpModalProps { isOpen: boolean; onClose: () => void; } export const StopHelpModal: React.FC = ({ isOpen, onClose, }) => { const { t } = useTranslation(); return (

{t("stop_help.title")}

{t("stop_help.realtime_ok")}

{t("stop_help.realtime_ok_desc")}

{t("stop_help.realtime_warning")}

{t("stop_help.realtime_warning_desc")}

{t("stop_help.scheduled")}

{t("stop_help.scheduled_desc")}

{t("stop_help.gps")}

{t("stop_help.gps_desc")}

{t("stop_help.punctuality")}

{t("stop_help.punctuality_ontime_label", "En hora")}

{t("stop_help.punctuality_ontime")}

{t("stop_help.punctuality_early_label", "Adelanto")}

{t("stop_help.punctuality_early")}

{t("stop_help.punctuality_late_label", "Retraso")}

{t("stop_help.punctuality_late")}

{t("stop_help.gps_quality")}

{t("stop_help.gps_reliable_label", "GPS fiable")}

{t("stop_help.gps_reliable")}

{t("stop_help.gps_imprecise_label", "GPS impreciso")}

{t("stop_help.gps_imprecise")}

); };