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

View File

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

View File

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

View File

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