import { SelectorOption } from "@/components"; import { FunctionComponent, useMemo } from "react"; import { Check, CollapseBox, Layout, Message, Section, Selector, } from "../components"; import { backupOptions, dayOptions, diskUpdateOptions, moviesSyncOptions, seriesSyncOptions, upgradeOptions, } from "./options"; const SettingsSchedulerView: FunctionComponent = () => { const timeOptions = useMemo(() => { return Array(24) .fill(null) .map>((_, idx) => ({ label: `${idx}:00`, value: idx, })); }, []); return (
If enabled, only series with a monitored status in Sonarr will be synced. If you make changes to a specific unmonitored Sonarr series and you want Bazarr to know about those changes, simply toggle the monitored status back on in Sonarr and Bazarr will sync any changes. If enabled, only episodes with a monitored status in Sonarr will be synced. If you make changes to a specific unmonitored Sonarr episode (or season) and you want Bazarr to know about those changes, simply toggle the monitored status back on in Sonarr and Bazarr will sync any changes. This setting is especially helpful for long running TV series with many seasons and many episodes, but that are still actively producing new episodes (e.g. Saturday Night Live). If enabled, only movies with a monitored status in Radarr will be synced. If you make changes to a specific unmonitored Radarr movie and you want Bazarr to know about those changes, simply toggle the monitored status back on in Radarr and Bazarr will sync any changes.
k === "Weekly"} > k === "Daily" || k === "Weekly"} > If disabled, Bazarr will use the embedded subtitles parser to index episodes file properties on each run. This will result in higher disk I/O. k === "Weekly"} > k === "Daily" || k === "Weekly"} > If disabled, Bazarr will use embedded subtitles parser to index movies file properties on each run. This will result in higher disk I/O.
k === "Weekly"} > k === "Daily" || k === "Weekly"} >
); }; export default SettingsSchedulerView;