2024-07-23 18:17:38 +00:00
|
|
|
<script lang="ts">
|
2024-07-10 23:35:53 +06:00
|
|
|
import { t } from "$lib/i18n/translations";
|
|
|
|
|
|
|
|
import SettingsToggle from "$components/buttons/SettingsToggle.svelte";
|
2024-09-06 16:18:30 +06:00
|
|
|
import ManageSettings from "$components/settings/ManageSettings.svelte";
|
2024-08-30 17:17:29 +06:00
|
|
|
import SettingsCategory from "$components/settings/SettingsCategory.svelte";
|
2024-07-10 23:35:53 +06:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<SettingsCategory sectionId="debug" title={$t("settings.advanced.debug")}>
|
|
|
|
<SettingsToggle
|
|
|
|
settingContext="advanced"
|
|
|
|
settingId="debug"
|
|
|
|
title={$t("settings.advanced.debug.title")}
|
|
|
|
description={$t("settings.advanced.debug.description")}
|
|
|
|
/>
|
|
|
|
</SettingsCategory>
|
2024-07-20 14:01:13 +00:00
|
|
|
|
2024-12-22 23:04:37 +06:00
|
|
|
<SettingsCategory sectionId="local-processing" title={$t("settings.advanced.duck")} beta>
|
|
|
|
<SettingsToggle
|
|
|
|
settingContext="advanced"
|
|
|
|
settingId="duck"
|
|
|
|
title={$t("settings.advanced.duck.title")}
|
|
|
|
description={$t("settings.advanced.duck.description")}
|
|
|
|
/>
|
|
|
|
</SettingsCategory>
|
|
|
|
|
2024-07-20 21:48:17 +06:00
|
|
|
<SettingsCategory sectionId="data" title={$t("settings.advanced.data")}>
|
2024-09-06 16:18:30 +06:00
|
|
|
<ManageSettings />
|
2024-07-20 21:48:17 +06:00
|
|
|
</SettingsCategory>
|