diff --git a/web/public/locales/en/views/live.json b/web/public/locales/en/views/live.json index 356c896ae..92c4cfbd8 100644 --- a/web/public/locales/en/views/live.json +++ b/web/public/locales/en/views/live.json @@ -168,5 +168,10 @@ "label": "Edit Camera Group" }, "exitEdit": "Exit Editing" + }, + "noCameras": { + "title": "No Cameras Set Up", + "description": "Get started by connecting a camera.", + "buttonText": "Add Camera" } } diff --git a/web/src/views/live/LiveDashboardView.tsx b/web/src/views/live/LiveDashboardView.tsx index 4b7ef9730..1df5daa67 100644 --- a/web/src/views/live/LiveDashboardView.tsx +++ b/web/src/views/live/LiveDashboardView.tsx @@ -616,13 +616,15 @@ export default function LiveDashboardView({ } function NoCameraView() { + const { t } = useTranslation(["views/live"]); + return (