diff options
author | morpheus65535 <[email protected]> | 2024-01-10 23:07:42 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-10 23:07:42 -0500 |
commit | 0e648b5588c7d8675238b1ceb2e04a29e23d8fb1 (patch) | |
tree | 51349958a9620210fe3502254d3243526ca7bbb1 /frontend/src/pages/Settings/Providers/options.ts | |
parent | 0807bd99b956ee3abf18acc3bec43a87fc8b1530 (diff) | |
download | bazarr-0e648b5588c7d8675238b1ceb2e04a29e23d8fb1.tar.gz bazarr-0e648b5588c7d8675238b1ceb2e04a29e23d8fb1.zip |
Improved subtitles synchronisation settings and added a manual sync modalv1.4.1-beta.14
Diffstat (limited to 'frontend/src/pages/Settings/Providers/options.ts')
-rw-r--r-- | frontend/src/pages/Settings/Providers/options.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/pages/Settings/Providers/options.ts b/frontend/src/pages/Settings/Providers/options.ts new file mode 100644 index 000000000..63227ca76 --- /dev/null +++ b/frontend/src/pages/Settings/Providers/options.ts @@ -0,0 +1,12 @@ +import { SelectorOption } from "@/components"; + +export const antiCaptchaOption: SelectorOption<string>[] = [ + { + label: "Anti-Captcha", + value: "anti-captcha", + }, + { + label: "Death by Captcha", + value: "death-by-captcha", + }, +]; |