diff --git a/client/src/locales/data-de.json b/client/src/locales/data-de.json index dfc8ede..548d70e 100644 --- a/client/src/locales/data-de.json +++ b/client/src/locales/data-de.json @@ -480,6 +480,13 @@ { "index": 6, "label": "Modus 7" }, { "index": 7, "label": "Modus 8" } ] + }, + "uacVer": { + "label": "UAC-Version", + "options": [ + { "index": 0, "label": "UAC 2.0" }, + { "index": 1, "label": "UAC 1.0" } + ] } }, "settings": { diff --git a/client/src/locales/data-en.json b/client/src/locales/data-en.json index d5d351c..1852b8f 100644 --- a/client/src/locales/data-en.json +++ b/client/src/locales/data-en.json @@ -480,6 +480,13 @@ { "index": 6, "label": "mode 7" }, { "index": 7, "label": "mode 8" } ] + }, + "uacVer": { + "label": "UAC Version", + "options": [ + { "index": 0, "label": "UAC 2.0" }, + { "index": 1, "label": "UAC 1.0" } + ] } }, "settings": { diff --git a/client/src/locales/data-es.json b/client/src/locales/data-es.json index dc827f9..041dea4 100644 --- a/client/src/locales/data-es.json +++ b/client/src/locales/data-es.json @@ -480,6 +480,13 @@ { "index": 6, "label": "Modo 7" }, { "index": 7, "label": "Modo 8" } ] + }, + "uacVer": { + "label": "Versión UAC", + "options": [ + { "index": 0, "label": "UAC 2.0" }, + { "index": 1, "label": "UAC 1.0" } + ] } }, "settings": { diff --git a/client/src/locales/data-fr.json b/client/src/locales/data-fr.json index 782e77a..b94ae01 100644 --- a/client/src/locales/data-fr.json +++ b/client/src/locales/data-fr.json @@ -480,6 +480,13 @@ { "index": 6, "label": "Mode 7" }, { "index": 7, "label": "Mode 8" } ] + }, + "uacVer": { + "label": "Version UAC", + "options": [ + { "index": 0, "label": "UAC 2.0" }, + { "index": 1, "label": "UAC 1.0" } + ] } }, "settings": { diff --git a/client/src/locales/data-zh-HK.json b/client/src/locales/data-zh-HK.json index e931bab..14336f9 100644 --- a/client/src/locales/data-zh-HK.json +++ b/client/src/locales/data-zh-HK.json @@ -474,6 +474,13 @@ { "index": 6, "label": "模式7" }, { "index": 7, "label": "模式8" } ] + }, + "uacVer": { + "label": "UAC版本", + "options": [ + { "index": 0, "label": "UAC 2.0" }, + { "index": 1, "label": "UAC 1.0" } + ] } }, "settings": { diff --git a/client/src/locales/data-zh.json b/client/src/locales/data-zh.json index c98d916..3699bea 100644 --- a/client/src/locales/data-zh.json +++ b/client/src/locales/data-zh.json @@ -474,6 +474,13 @@ { "index": 6, "label": "模式7" }, { "index": 7, "label": "模式8" } ] + }, + "uacVer": { + "label": "UAC版本", + "options": [ + { "index": 0, "label": "UAC 2.0" }, + { "index": 1, "label": "UAC 1.0" } + ] } }, "settings": { diff --git a/client/src/pages/AudioPage.tsx b/client/src/pages/AudioPage.tsx index 1662fad..a67bfbc 100644 --- a/client/src/pages/AudioPage.tsx +++ b/client/src/pages/AudioPage.tsx @@ -62,6 +62,9 @@ function CyanSlider({ value, min, max, step = 1, onChange, onRelease }: { ); } +/** 功能开关:是否显示「滤波特性」和「ARC模式」入口(代码保留,改为 true 可恢复显示) */ +const SHOW_FILTER_AND_ARC = false; + function SectionHeader({ title }: { title: string }) { return (