diff options
| author | Astounds <kirito@disroot.org> | 2026-04-05 17:43:01 -0500 |
|---|---|---|
| committer | Astounds <kirito@disroot.org> | 2026-04-05 17:43:01 -0500 |
| commit | 8403e30b3abe810d764fc6dc57c0a0386273356e (patch) | |
| tree | 1649d78390d41fb2bf2ccf6819c260cd9ca7cd8b /youtube/templates | |
| parent | f0649be5dec84ce06a3164a2d9ee90f5385ac92f (diff) | |
| download | yt-local-8403e30b3abe810d764fc6dc57c0a0386273356e.tar.lz yt-local-8403e30b3abe810d764fc6dc57c0a0386273356e.tar.xz yt-local-8403e30b3abe810d764fc6dc57c0a0386273356e.zip | |
Many fixes to i18n
Diffstat (limited to 'youtube/templates')
| -rw-r--r-- | youtube/templates/comments.html | 2 | ||||
| -rw-r--r-- | youtube/templates/settings.html | 12 | ||||
| -rw-r--r-- | youtube/templates/watch.html | 16 |
3 files changed, 15 insertions, 15 deletions
diff --git a/youtube/templates/comments.html b/youtube/templates/comments.html index 4728a0a..dac0d23 100644 --- a/youtube/templates/comments.html +++ b/youtube/templates/comments.html @@ -58,7 +58,7 @@ {% endfor %} </div> {% if 'more_comments_url' is in comments_info %} - <a class="page-button more-comments" href="{{ comments_info['more_comments_url'] }}">More comments</a> + <a class="page-button more-comments" href="{{ comments_info['more_comments_url'] }}">{{ _('More comments') }}</a> {% endif %} {% endif %} 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 %} diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html index 2a6c823..fe12d18 100644 --- a/youtube/templates/watch.html +++ b/youtube/templates/watch.html @@ -97,11 +97,11 @@ </div> <input class="v-checkbox" name="video_info_list" value="{{ video_info }}" form="playlist-edit" type="checkbox"> - <span class="v-direct-link"><a href="https://youtu.be/{{ video_id }}" rel="noopener noreferrer" target="_blank">Direct Link</a></span> + <span class="v-direct-link"><a href="https://youtu.be/{{ video_id }}" rel="noopener noreferrer" target="_blank">{{ _('Direct Link') }}</a></span> {% if settings.use_video_download != 0 %} <details class="v-download"> - <summary class="download-dropdown-label">Download</summary> + <summary class="download-dropdown-label">{{ _('Download') }}</summary> <ul class="download-dropdown-content"> {% for format in download_formats %} <li class="download-format"> @@ -149,7 +149,7 @@ {% endif %} </div> <details class="v-more-info"> - <summary>More info</summary> + <summary>{{ _('More info') }}</summary> <div class="more-info-content"> <p>Tor exit node: {{ ip_address }}</p> {% if invidious_used %} @@ -173,7 +173,7 @@ <div class="playlist-header"> <a href="{{ playlist['url'] }}" title="{{ playlist['title'] }}"><h3>{{ playlist['title'] }}</h3></a> <ul class="playlist-metadata"> - <li><label for="playlist-autoplay-toggle">Autoplay: </label><input id="playlist-autoplay-toggle" type="checkbox" class="autoplay-toggle"></li> + <li><label for="playlist-autoplay-toggle">{{ _('AutoNext') }}: </label><input id="playlist-autoplay-toggle" type="checkbox" class="autoplay-toggle"></li> {% if playlist['current_index'] is none %} <li>[Error!]/{{ playlist['video_count'] }}</li> {% else %} @@ -200,7 +200,7 @@ </nav> </div> {% elif settings.related_videos_mode != 0 %} - <div class="related-autoplay"><label for="related-autoplay-toggle">Autoplay: </label><input id="related-autoplay-toggle" type="checkbox" class="autoplay-toggle"></div> + <div class="related-autoplay"><label for="related-autoplay-toggle">{{ _('AutoNext') }}: </label><input id="related-autoplay-toggle" type="checkbox" class="autoplay-toggle"></div> {% endif %} {% if subtitle_sources %} @@ -222,7 +222,7 @@ {% if settings.related_videos_mode != 0 %} <details class="related-videos-outer" {{'open' if settings.related_videos_mode == 1 else ''}}> - <summary>Related Videos</summary> + <summary>{{ _('Related Videos') }}</summary> <nav class="related-videos-inner"> {% for info in related %} {{ common_elements.item(info, include_badges=false) }} @@ -236,10 +236,10 @@ <!-- comments --> {% if settings.comments_mode != 0 %} {% if comments_disabled %} - <div class="comments-area-outer comments-disabled">Comments disabled</div> + <div class="comments-area-outer comments-disabled">{{ _('Comments disabled') }}</div> {% else %} <details class="comments-area-outer" {{'open' if settings.comments_mode == 1 else ''}}> - <summary>{{ comment_count|commatize }} comment{{'s' if comment_count != '1' else ''}}</summary> + <summary>{{ comment_count|commatize }} {{ _('Comment') }}{{'s' if comment_count != '1' else ''}}</summary> <div class="comments-area-inner comments-area"> {% if comments_info %} {{ comments.video_comments(comments_info) }} |
