diff options
author | Marian Moravcik <[email protected]> | 2021-09-21 15:11:15 +0200 |
---|---|---|
committer | Marian Moravcik <[email protected]> | 2021-09-21 15:11:15 +0200 |
commit | 8d698fa7e4972f86c09b6d3fda1c3bb4f5787e8c (patch) | |
tree | c627bc15f00f193d61138a9eca7b98c3f136fef1 | |
parent | 36a2309bcaa2d7ea6ba015b6c6a39884ca2a947f (diff) | |
download | bazarr-8d698fa7e4972f86c09b6d3fda1c3bb4f5787e8c.tar.gz bazarr-8d698fa7e4972f86c09b6d3fda1c3bb4f5787e8c.zip |
Add titulky.com provider to the UI
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | bazarr/config.py | 4 | ||||
-rw-r--r-- | frontend/src/Settings/Providers/list.ts | 11 |
3 files changed, 15 insertions, 1 deletions
@@ -72,6 +72,7 @@ If you need something that is not already part of Bazarr, feel free to create a * Supersubtitles * Titlovi * Titrari.ro +* Titulky.com * TuSubtitulo * TVSubtitles * Wizdom diff --git a/bazarr/config.py b/bazarr/config.py index 78a8a6066..a4b200f30 100644 --- a/bazarr/config.py +++ b/bazarr/config.py @@ -180,6 +180,10 @@ defaults = { 'username': '', 'password': '' }, + 'titulky': { + 'username': '', + 'password': '' + }, 'subsync': { 'use_subsync': 'False', 'use_subsync_threshold': 'False', diff --git a/frontend/src/Settings/Providers/list.ts b/frontend/src/Settings/Providers/list.ts index 0f249f9c1..1cb4ba177 100644 --- a/frontend/src/Settings/Providers/list.ts +++ b/frontend/src/Settings/Providers/list.ts @@ -76,7 +76,7 @@ export const ProviderList: Readonly<ProviderInfo[]> = [ description: "Hebrew Subtitles Provider", defaultKey: { email: "", - hashed_password: "" + hashed_password: "", }, keyNameOverride: { hashed_password: "Hashed Password", @@ -203,6 +203,15 @@ export const ProviderList: Readonly<ProviderInfo[]> = [ description: "LATAM Spanish / Spanish / English Subtitles Provider for TV Shows", }, + { + key: "titulky", + name: "Titulky.com", + description: "CZ/SK Subtitles Provider. Available only with VIP", + defaultKey: { + username: "", + password: "", + }, + }, { key: "tvsubtitles", name: "TVSubtitles" }, { key: "wizdom", description: "Wizdom.xyz Subtitles Provider." }, { |