aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/settings.html
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2022-10-05 10:13:54 +0800
committerJesús <heckyel@hyperbola.info>2022-10-05 10:14:06 +0800
commitc524eb16e5fbe30dcd217fa8ba2ccd7acaaa2cf4 (patch)
tree465e68a1ba25f31dea15a808c4e0a8fea70eef8f /youtube/templates/settings.html
parent6ba3959e40ca6077ea95bac65932bf18b8782410 (diff)
downloadyt-local-c524eb16e5fbe30dcd217fa8ba2ccd7acaaa2cf4.tar.lz
yt-local-c524eb16e5fbe30dcd217fa8ba2ccd7acaaa2cf4.tar.xz
yt-local-c524eb16e5fbe30dcd217fa8ba2ccd7acaaa2cf4.zip
Disable download by RIAA issues
Ref: https://torrentfreak.com/riaa-thwarts-youts-attempt-to-declare-youtube-ripping-legal-221002/ Archive: https://archive.ph/OZQbN
Diffstat (limited to 'youtube/templates/settings.html')
-rw-r--r--youtube/templates/settings.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube/templates/settings.html b/youtube/templates/settings.html
index 7a7ce9e..cb2b3cd 100644
--- a/youtube/templates/settings.html
+++ b/youtube/templates/settings.html
@@ -13,9 +13,9 @@
{% if not setting_info.get('hidden', false) %}
<li class="setting-item">
{% if 'label' is in(setting_info) %}
- <label for="{{ 'setting_' + setting_name }}">{{ setting_info['label'] }}</label>
+ <label for="{{ 'setting_' + setting_name }}" {% if 'comment' is in(setting_info) %}title="{{ setting_info['comment'] }}" {% endif %}>{{ setting_info['label'] }}</label>
{% else %}
- <label for="{{ 'setting_' + setting_name }}">{{ setting_name.replace('_', ' ')|capitalize }}</label>
+ <label for="{{ 'setting_' + setting_name }}" {% if 'comment' is in(setting_info) %}title="{{ setting_info['comment'] }}" {% endif %}>{{ setting_name.replace('_', ' ')|capitalize }}</label>
{% endif %}
{% if setting_info['type'].__name__ == 'bool' %}