diff options
author | Ajay Ramachandran <[email protected]> | 2021-04-08 18:42:13 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2021-06-18 00:05:21 -0400 |
commit | 7451963ad6202d183da79cfd27b905034edfb01b (patch) | |
tree | 931e8a7d6a53f0ce2847617c14c575633e98814f /public | |
parent | 861ba4869e64a4652303e407eed8e5df4ece9e78 (diff) | |
download | SponsorBlock-7451963ad6202d183da79cfd27b905034edfb01b.tar.gz SponsorBlock-7451963ad6202d183da79cfd27b905034edfb01b.zip |
Support CloudTube
(cherry picked from commit 4020cdc4f2b20c5b5adb3a2f53925f5eb07d1994)
Diffstat (limited to 'public')
-rw-r--r-- | public/_locales/en/messages.json | 15 | ||||
-rw-r--r-- | public/options/options.html | 5 |
2 files changed, 12 insertions, 8 deletions
diff --git a/public/_locales/en/messages.json b/public/_locales/en/messages.json index 19438a47..a3906346 100644 --- a/public/_locales/en/messages.json +++ b/public/_locales/en/messages.json @@ -350,20 +350,23 @@ "keybindCurrentlySet": { "message": ". It is currently set to:" }, - "supportInvidious": { - "message": "Support Invidious" + "supportOtherSites": { + "message": "Support 3rd Party YouTube-Sites" }, - "supportInvidiousDescription": { - "message": "Invidious (invidio.us) is a third party YouTube client. To enable support, you must accept the extra permissions. This does NOT work in incognito on Chrome and other Chromium variants." + "supportOtherSitesDescription": { + "message": "Support third party party YouTube clients. To enable support, you must accept the extra permissions. This does NOT work in incognito on Chrome and other Chromium variants." + }, + "supportedSites": { + "message": "Supported Sites: " }, "optionsInfo": { "message": "Enable Invidious support, disable autoskip, hide buttons and more." }, "addInvidiousInstance": { - "message": "Add Invidious Instance" + "message": "Add 3rd-Party Client Instance" }, "addInvidiousInstanceDescription": { - "message": "Add a custom instance of Invidious. This must be formatted with JUST the domain. Example: invidious.ajay.app" + "message": "Add a custom instance. This must be formatted with JUST the domain. Example: invidious.ajay.app" }, "add": { "message": "Add" diff --git a/public/options/options.html b/public/options/options.html index 6b5bb717..1dd358e5 100644 --- a/public/options/options.html +++ b/public/options/options.html @@ -33,7 +33,7 @@ <br/> <div id="support-invidious" option-type="toggle" sync-option="supportInvidious"> - <label class="switch-container" label-name="__MSG_supportInvidious__"> + <label class="switch-container" label-name="__MSG_supportOtherSites__"> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> @@ -43,7 +43,8 @@ <br/> <br/> - <div class="small-description">__MSG_supportInvidiousDescription__</div> + <div class="small-description">(__MSG_supportedSites__ Invidious, CloudTube)</div> + <div class="small-description">__MSG_supportOtherSitesDescription__ </div> </div> <br/> |