web/settings/accessibility: add toggle for disabling auto opening queue

This commit is contained in:
wukko 2025-03-07 21:47:02 +06:00
parent 1b0be14175
commit a5172b8fb4
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2
2 changed files with 16 additions and 0 deletions

View File

@ -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",

View File

@ -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"