Skip to content

Commit

Permalink
Add missing translations
Browse files Browse the repository at this point in the history
  • Loading branch information
AymericJak committed Sep 21, 2023
1 parent b62ada3 commit 22cf74e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions pod/locale/fr/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Pod\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-09-21 12:05+0000\n"
"POT-Creation-Date: 2023-09-21 12:16+0000\n"
"PO-Revision-Date: \n"
"Last-Translator: AymericJak <[email protected]>\n"
"Language-Team: Pod Team [email protected]\n"
Expand Down Expand Up @@ -7317,6 +7317,11 @@ msgstr "Souscrire au flux vidéo"
msgid "Subscribe to the audio feed"
msgstr "Souscrire au flux audio"

#: pod/video/templates/channel/channel.html
#: pod/video/templates/videos/videos.html
msgid "Audio"
msgstr "Audio"

#: pod/video/templates/channel/channel.html
#: pod/video/templates/channel/my_channels.html
#: pod/video/templates/channel/theme_edit.html
Expand Down Expand Up @@ -7357,11 +7362,6 @@ msgstr[1] "%(counter)s vidéos trouvées sans thème"
msgid "Load more videos"
msgstr "Charger plus de vidéos"

#: pod/video/templates/channel/channel.html
#: pod/video/templates/videos/videos.html
msgid "Audio"
msgstr "Audio"

#: pod/video/templates/channel/channel.html
msgid "Show view statistics for all videos in this channel"
msgstr "Les utilisateurs peuvent uniquement ajouter des vidéos à cette chaîne"
Expand Down
2 changes: 1 addition & 1 deletion pod/locale/fr/LC_MESSAGES/djangojs.po
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Esup-Pod\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-09-21 12:05+0000\n"
"POT-Creation-Date: 2023-09-21 12:16+0000\n"
"PO-Revision-Date: \n"
"Last-Translator: AymericJak <[email protected]>\n"
"Language-Team: \n"
Expand Down
12 changes: 6 additions & 6 deletions pod/locale/nl/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Pod\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-09-21 12:05+0000\n"
"POT-Creation-Date: 2023-09-21 12:16+0000\n"
"PO-Revision-Date: 2023-06-08 14:37+0200\n"
"Last-Translator: obado <[email protected]>\n"
"Language-Team: \n"
Expand Down Expand Up @@ -6865,6 +6865,11 @@ msgstr ""
msgid "Subscribe to the audio feed"
msgstr ""

#: pod/video/templates/channel/channel.html
#: pod/video/templates/videos/videos.html
msgid "Audio"
msgstr ""

#: pod/video/templates/channel/channel.html
#: pod/video/templates/channel/my_channels.html
#: pod/video/templates/channel/theme_edit.html
Expand Down Expand Up @@ -6904,11 +6909,6 @@ msgstr[1] ""
msgid "Load more videos"
msgstr ""

#: pod/video/templates/channel/channel.html
#: pod/video/templates/videos/videos.html
msgid "Audio"
msgstr ""

#: pod/video/templates/channel/channel.html
msgid "Show view statistics for all videos in this channel"
msgstr ""
Expand Down
2 changes: 1 addition & 1 deletion pod/locale/nl/LC_MESSAGES/djangojs.po
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Esup-Pod\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-09-21 12:05+0000\n"
"POT-Creation-Date: 2023-09-21 12:16+0000\n"
"PO-Revision-Date: 2023-02-08 15:22+0100\n"
"Last-Translator: obado <[email protected]>\n"
"Language-Team: \n"
Expand Down
8 changes: 4 additions & 4 deletions pod/video/templates/channel/channel.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,17 @@ <h1 class="page_title">
{% endif %}
{% if theme %}
<a href="feed://{{ request.META.HTTP_HOST }}{% url 'rss-video:rss-video' slug_c=channel.slug slug_t=theme.slug %}" title="{% trans 'Subscribe to the video feed'%}" target="_blank" class="btn btn-outline-primary btn-sm" data-bs-toggle="tooltip" data-bs-placement="bottom">
<i class="bi bi-rss" aria-hidden="true"></i>&nbsp;Video
<i class="bi bi-rss" aria-hidden="true"></i>&nbsp;{% trans "Video" %}
</a>
<a href="feed://{{ request.META.HTTP_HOST }}{% url 'rss-video:rss-audio' slug_c=channel.slug slug_t=theme.slug%}" title="{% trans 'Subscribe to the audio feed'%}" target="_blank" class="btn btn-outline-primary btn-sm" data-bs-toggle="tooltip" data-bs-placement="bottom">
<i class="bi bi-rss" aria-hidden="true"></i>&nbsp;Audio
<i class="bi bi-rss" aria-hidden="true"></i>&nbsp;{% trans "Audio" %}
</a>
{% else %}
<a href="feed://{{ request.META.HTTP_HOST }}{% url 'rss-video:rss-video' slug_c=channel.slug %}" title="{% trans 'Subscribe to the video feed'%}" target="_blank" class="btn btn-outline-primary btn-sm" data-bs-toggle="tooltip" data-bs-placement="bottom">
<i class="bi bi-rss" aria-hidden="true"></i>&nbsp;Video
<i class="bi bi-rss" aria-hidden="true"></i>&nbsp;{% trans "Video" %}
</a>
<a href="feed://{{ request.META.HTTP_HOST }}{% url 'rss-video:rss-audio' slug_c=channel.slug %}" title="{% trans 'Subscribe to the audio feed'%}" target="_blank" class="btn btn-outline-primary btn-sm" data-bs-toggle="tooltip" data-bs-placement="bottom">
<i class="bi bi-rss" aria-hidden="true"></i>&nbsp;Audio
<i class="bi bi-rss" aria-hidden="true"></i>&nbsp;{% trans "Audio" %}
</a>
{% endif %}
{% if request.user in channel.owners.all %}
Expand Down

0 comments on commit 22cf74e

Please sign in to comment.