small wording tweaks

This commit is contained in:
Josh Hawkins 2026-02-04 21:54:37 -06:00
parent 3a6f8aa232
commit 1aec1eb87c
4 changed files with 18 additions and 18 deletions

View File

@ -1,8 +1,8 @@
{ {
"audio": { "audio": {
"global": { "global": {
"detection": "Detection", "detection": "Global Detection",
"sensitivity": "Sensitivity" "sensitivity": "Global Sensitivity"
}, },
"cameras": { "cameras": {
"detection": "Detection", "detection": "Detection",
@ -11,7 +11,7 @@
}, },
"timestamp_style": { "timestamp_style": {
"global": { "global": {
"appearance": "Appearance" "appearance": "Global Appearance"
}, },
"cameras": { "cameras": {
"appearance": "Appearance" "appearance": "Appearance"
@ -19,8 +19,8 @@
}, },
"motion": { "motion": {
"global": { "global": {
"sensitivity": "Sensitivity", "sensitivity": "Global Sensitivity",
"algorithm": "Algorithm" "algorithm": "Global Algorithm"
}, },
"cameras": { "cameras": {
"sensitivity": "Sensitivity", "sensitivity": "Sensitivity",
@ -29,7 +29,7 @@
}, },
"snapshots": { "snapshots": {
"global": { "global": {
"display": "Display" "display": "Global Display"
}, },
"cameras": { "cameras": {
"display": "Display" "display": "Display"
@ -37,18 +37,18 @@
}, },
"detect": { "detect": {
"global": { "global": {
"resolution": "Resolution", "resolution": "Global Resolution",
"tracking": "Tracking!!!" "tracking": "Global Tracking"
}, },
"cameras": { "cameras": {
"resolution": "Resolution", "resolution": "Resolution",
"tracking": "Tracking!!!" "tracking": "Tracking"
} }
}, },
"objects": { "objects": {
"global": { "global": {
"tracking": "Tracking", "tracking": "Global Tracking",
"filtering": "Filtering" "filtering": "Global Filtering"
}, },
"cameras": { "cameras": {
"tracking": "Tracking", "tracking": "Tracking",
@ -57,8 +57,8 @@
}, },
"record": { "record": {
"global": { "global": {
"retention": "Retention", "retention": "Global Retention",
"events": "Events" "events": "Global Events"
}, },
"cameras": { "cameras": {
"retention": "Retention", "retention": "Retention",

View File

@ -8,7 +8,7 @@
"masksAndZones": "Mask and Zone Editor - Frigate", "masksAndZones": "Mask and Zone Editor - Frigate",
"motionTuner": "Motion Tuner - Frigate", "motionTuner": "Motion Tuner - Frigate",
"object": "Debug - Frigate", "object": "Debug - Frigate",
"general": "UI Settings - Frigate", "general": "Profile Settings - Frigate",
"globalConfig": "Global Configuration - Frigate", "globalConfig": "Global Configuration - Frigate",
"cameraConfig": "Camera Configuration - Frigate", "cameraConfig": "Camera Configuration - Frigate",
"frigatePlus": "Frigate+ Settings - Frigate", "frigatePlus": "Frigate+ Settings - Frigate",
@ -96,7 +96,7 @@
"noCamera": "No Camera" "noCamera": "No Camera"
}, },
"general": { "general": {
"title": "UI Settings", "title": "Profile Settings",
"liveDashboard": { "liveDashboard": {
"title": "Live Dashboard", "title": "Live Dashboard",
"automaticLiveView": { "automaticLiveView": {

View File

@ -97,7 +97,6 @@ const ffmpeg: SectionConfigOverrides = {
], ],
advancedFields: [ advancedFields: [
"global_args", "global_args",
"hwaccel_args",
"input_args", "input_args",
"output_args", "output_args",
"retry_interval", "retry_interval",

View File

@ -9,6 +9,7 @@ import { getSectionConfig } from "@/utils/sectionConfigsUtils";
import { useDocDomain } from "@/hooks/use-doc-domain"; import { useDocDomain } from "@/hooks/use-doc-domain";
import { Link } from "react-router-dom"; import { Link } from "react-router-dom";
import { LuExternalLink } from "react-icons/lu"; import { LuExternalLink } from "react-icons/lu";
import Heading from "@/components/ui/heading";
export type SettingsPageProps = { export type SettingsPageProps = {
selectedCamera?: string; selectedCamera?: string;
@ -95,9 +96,9 @@ export function SingleSectionPage({
<div className="flex size-full flex-col lg:pr-2"> <div className="flex size-full flex-col lg:pr-2">
<div className="mb-5 flex items-center justify-between gap-4"> <div className="mb-5 flex items-center justify-between gap-4">
<div className="flex flex-col"> <div className="flex flex-col">
<div className="text-xl"> <Heading as="h4">
{t(`${sectionKey}.label`, { ns: sectionNamespace })} {t(`${sectionKey}.label`, { ns: sectionNamespace })}
</div> </Heading>
{i18n.exists(`${sectionKey}.description`, { {i18n.exists(`${sectionKey}.description`, {
ns: sectionNamespace, ns: sectionNamespace,
}) && ( }) && (