aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/settings.html
diff options
context:
space:
mode:
authorAstounds <kirito@disroot.org>2026-04-05 17:43:01 -0500
committerAstounds <kirito@disroot.org>2026-04-05 17:43:01 -0500
commit8403e30b3abe810d764fc6dc57c0a0386273356e (patch)
tree1649d78390d41fb2bf2ccf6819c260cd9ca7cd8b /youtube/templates/settings.html
parentf0649be5dec84ce06a3164a2d9ee90f5385ac92f (diff)
downloadyt-local-8403e30b3abe810d764fc6dc57c0a0386273356e.tar.lz
yt-local-8403e30b3abe810d764fc6dc57c0a0386273356e.tar.xz
yt-local-8403e30b3abe810d764fc6dc57c0a0386273356e.zip
Many fixes to i18n
Diffstat (limited to 'youtube/templates/settings.html')
-rw-r--r--youtube/templates/settings.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/youtube/templates/settings.html b/youtube/templates/settings.html
index a5bb1e4..940eeae 100644
--- a/youtube/templates/settings.html
+++ b/youtube/templates/settings.html
@@ -7,15 +7,15 @@
{% block main %}
<form method="POST" class="settings-form">
{% for categ in categories %}
- <h2>{{ categ|capitalize }}</h2>
+ <h2>{{ _(categ|capitalize) }}</h2>
<ul class="settings-list">
{% for setting_name, setting_info, value in settings_by_category[categ] %}
{% if not setting_info.get('hidden', false) %}
<li class="setting-item">
{% if 'label' is in(setting_info) %}
- <label for="{{ 'setting_' + setting_name }}" {% if 'comment' is in(setting_info) %}title="{{ setting_info['comment'] }}" {% endif %}>{{ 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 }}" {% if 'comment' is in(setting_info) %}title="{{ setting_info['comment'] }}" {% endif %}>{{ 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' %}
@@ -24,7 +24,7 @@
{% if 'options' is in(setting_info) %}
<select id="{{ 'setting_' + setting_name }}" name="{{ setting_name }}">
{% for option in setting_info['options'] %}
- <option value="{{ option[0] }}" {{ 'selected' if option[0] == value else '' }}>{{ option[1] }}</option>
+ <option value="{{ option[0] }}" {{ 'selected' if option[0] == value else '' }}>{{ _(option[1]) }}</option>
{% endfor %}
</select>
{% else %}
@@ -36,7 +36,7 @@
{% if 'options' is in(setting_info) %}
<select id="{{ 'setting_' + setting_name }}" name="{{ setting_name }}">
{% for option in setting_info['options'] %}
- <option value="{{ option[0] }}" {{ 'selected' if option[0] == value else '' }}>{{ option[1] }}</option>
+ <option value="{{ option[0] }}" {{ 'selected' if option[0] == value else '' }}>{{ _(option[1]) }}</option>
{% endfor %}
</select>
{% else %}
@@ -50,6 +50,6 @@
{% endfor %}
</ul>
{% endfor %}
- <input type="submit" value="Save settings">
+ <input type="submit" value="{{ _('Save settings') }}">
</form>
{% endblock main %}