diff --git a/apps/planner/app/components/ElevationChart.tsx b/apps/planner/app/components/ElevationChart.tsx index 9fff833..75b0487 100644 --- a/apps/planner/app/components/ElevationChart.tsx +++ b/apps/planner/app/components/ElevationChart.tsx @@ -333,14 +333,31 @@ export function ElevationChart({ yjs, onHover, days }: ElevationChartProps) { return (
-
-

+

+

{colorMode === "grade" ? t("elevation.grade") : t("elevation.profile")}

+
+ {colorMode === "grade" && (<> + {"<3%"} + {"<6%"} + {"<10%"} + {"<15%"} + {"15%+"} + )} + {colorMode === "elevation" && (<> + {t("elevation.low")} + + {t("elevation.high")} + )} + {colorMode === "surface" && ( + {t("colorMode.surfaceLegend")} + )} +