mirror of
https://github.com/wukko/cobalt.git
synced 2025-05-01 06:44:24 +02:00
web/settings/accessibility: add toggle for disabling auto opening queue
This commit is contained in:
parent
1b0be14175
commit
a5172b8fb4
@ -90,12 +90,16 @@
|
|||||||
|
|
||||||
"accessibility.visual": "visual",
|
"accessibility.visual": "visual",
|
||||||
"accessibility.haptics": "haptics",
|
"accessibility.haptics": "haptics",
|
||||||
|
"accessibility.behavior": "behavior",
|
||||||
|
|
||||||
"accessibility.transparency.title": "reduce visual transparency",
|
"accessibility.transparency.title": "reduce visual transparency",
|
||||||
"accessibility.transparency.description": "transparency of surfaces will be reduced and all blur effects will be disabled. may also improve ui performance on less powerful devices.",
|
"accessibility.transparency.description": "transparency of surfaces will be reduced and all blur effects will be disabled. may also improve ui performance on less powerful devices.",
|
||||||
"accessibility.motion.title": "reduce motion",
|
"accessibility.motion.title": "reduce motion",
|
||||||
"accessibility.motion.description": "animations and transitions will be disabled whenever possible.",
|
"accessibility.motion.description": "animations and transitions will be disabled whenever possible.",
|
||||||
"accessibility.haptics.title": "disable haptics",
|
"accessibility.haptics.title": "disable haptics",
|
||||||
"accessibility.haptics.description": "all haptic effects will be disabled.",
|
"accessibility.haptics.description": "all haptic effects will be disabled.",
|
||||||
|
"accessibility.auto_queue.title": "don't open the queue automatically",
|
||||||
|
"accessibility.auto_queue.description": "the processing queue will not be opened automatically whenever a new item is added to it. progress will still be displayed and you will still be able to open it manually.",
|
||||||
|
|
||||||
"language": "language",
|
"language": "language",
|
||||||
"language.auto.title": "automatic selection",
|
"language.auto.title": "automatic selection",
|
||||||
|
@ -24,6 +24,18 @@
|
|||||||
/>
|
/>
|
||||||
</SettingsCategory>
|
</SettingsCategory>
|
||||||
|
|
||||||
|
<SettingsCategory
|
||||||
|
sectionId="behavior"
|
||||||
|
title={$t("settings.accessibility.behavior")}
|
||||||
|
>
|
||||||
|
<SettingsToggle
|
||||||
|
settingContext="accessibility"
|
||||||
|
settingId="dontAutoOpenQueue"
|
||||||
|
title={$t("settings.accessibility.auto_queue.title")}
|
||||||
|
description={$t("settings.accessibility.auto_queue.description")}
|
||||||
|
/>
|
||||||
|
</SettingsCategory>
|
||||||
|
|
||||||
{#if device.supports.haptics}
|
{#if device.supports.haptics}
|
||||||
<SettingsCategory
|
<SettingsCategory
|
||||||
sectionId="haptics"
|
sectionId="haptics"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user