diff --git a/web/public/locales/en/views/live.json b/web/public/locales/en/views/live.json index 2534c3957..085aa0a49 100644 --- a/web/public/locales/en/views/live.json +++ b/web/public/locales/en/views/live.json @@ -175,8 +175,8 @@ "exitEdit": "Exit Editing" }, "noCameras": { - "title": "No Cameras Set Up", - "description": "Get started by connecting a camera.", + "title": "No Cameras Configured", + "description": "Get started by connecting a camera to Frigate.", "buttonText": "Add Camera" } } diff --git a/web/src/components/card/EmptyCard.tsx b/web/src/components/card/EmptyCard.tsx index 671262994..de934482f 100644 --- a/web/src/components/card/EmptyCard.tsx +++ b/web/src/components/card/EmptyCard.tsx @@ -1,27 +1,30 @@ import React from "react"; import { Button } from "../ui/button"; import Heading from "../ui/heading"; +import { Link } from "react-router-dom"; type EmptyCardProps = { icon: React.ReactNode; title: string; description: string; buttonText?: string; + link?: string; }; export function EmptyCard({ icon, title, description, buttonText, + link, }: EmptyCardProps) { return (