diff --git a/pod/locale/fr/LC_MESSAGES/django.mo b/pod/locale/fr/LC_MESSAGES/django.mo index c67673fe72..cec142cab2 100644 Binary files a/pod/locale/fr/LC_MESSAGES/django.mo and b/pod/locale/fr/LC_MESSAGES/django.mo differ diff --git a/pod/locale/fr/LC_MESSAGES/django.po b/pod/locale/fr/LC_MESSAGES/django.po index 07583daeeb..3605122d2e 100644 --- a/pod/locale/fr/LC_MESSAGES/django.po +++ b/pod/locale/fr/LC_MESSAGES/django.po @@ -8209,9 +8209,8 @@ msgid "No video found" msgstr "Aucune vidéo trouvée" #: pod/video/templates/videos/dashboard.html:138 -#: pod/video/templates/videos/my_videos.html:28 msgid "" -"You have not uploaded any videos yet, please use the \"Add a new video\" " +"You have not uploaded any videos yet, please use the ”Add a new video” " "button to add one" msgstr "" "Vous n’avez pas encore mis en ligne de vidéos, veuillez utiliser le bouton " diff --git a/pod/video/templates/videos/dashboard.html b/pod/video/templates/videos/dashboard.html index 70036e3c69..684de5ac55 100644 --- a/pod/video/templates/videos/dashboard.html +++ b/pod/video/templates/videos/dashboard.html @@ -135,7 +135,7 @@
{% if videos.paginator.count == 0 %}

{% trans "No video found"%}

-

{% trans 'You have not uploaded any videos yet, please use the "Add a new video" button to add one'%}

+

{% trans 'You have not uploaded any videos yet, please use the ”Add a new video” button to add one'%}

{% else %}

{% blocktrans count counter=count_videos %}{{ counter }} video found{% plural %}{{ counter }} videos found{% endblocktrans %}

diff --git a/pod/video/templates/videos/my_videos.html b/pod/video/templates/videos/my_videos.html deleted file mode 100644 index be0768c1cb..0000000000 --- a/pod/video/templates/videos/my_videos.html +++ /dev/null @@ -1,77 +0,0 @@ -{% extends 'base.html' %} -{% load i18n %} -{% load static %} - -{% block more_style %} - {% if use_category %} - - {% endif %} -{% endblock more_style %} - -{% block breadcrumbs %}{{ block.super }} {% endblock %} - -{% block page_content %} - {% comment %} -

- "types": request.GET.getlist('type'), - "owners": request.GET.getlist('owner'), - "disciplines": request.GET.getlist('discipline'), - "tags_slug": request.GET.getlist('tag'), -

- {% endcomment %} - {% if use_category %} - {% include "videos/category_modal.html" %} - {% endif %} -
- {% if videos.paginator.count == 0 %} -

{% trans 'You have not uploaded any videos yet, please use the "Add a new video" button to add one'%}

- {% else %} -

{% trans "Please use the thumbnails toolbar which is located under the video on which you want to work with." %}

- {% endif %} -

{% blocktrans count counter=count_videos %}{{ counter }} video found{% plural %}{{ counter }} videos found{% endblocktrans %}

- {% if count_videos > 1 %} -
- {% include "videos/video_sort_select.html" %} -
- {% endif %} -
- {% include 'loader.html' %} - {% include "videos/video_list.html" %} -{% endblock page_content %} - -{% block page_aside %} - {% include 'videos/filter_aside.html' %} -{% endblock page_aside %} - -{% block more_script %} - - - - -{% if use_category %} - - -{% endif %} -{% endblock more_script %}