mirror of
https://github.com/wukko/cobalt.git
synced 2025-04-29 22:14:26 +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.haptics": "haptics",
|
||||
"accessibility.behavior": "behavior",
|
||||
|
||||
"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.motion.title": "reduce motion",
|
||||
"accessibility.motion.description": "animations and transitions will be disabled whenever possible.",
|
||||
"accessibility.haptics.title": "disable haptics",
|
||||
"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.auto.title": "automatic selection",
|
||||
|
@ -24,6 +24,18 @@
|
||||
/>
|
||||
</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}
|
||||
<SettingsCategory
|
||||
sectionId="haptics"
|
||||
|
Loading…
x
Reference in New Issue
Block a user