From d614f0237980cf265f4d703ccb015c7b4a7a07c7 Mon Sep 17 00:00:00 2001 From: Joshua Baubry Date: Tue, 16 Feb 2021 17:24:59 +0100 Subject: [PATCH 01/21] command to unrachive video --- .../management/commands/unarchive_video.py | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pod/video/management/commands/unarchive_video.py diff --git a/pod/video/management/commands/unarchive_video.py b/pod/video/management/commands/unarchive_video.py new file mode 100644 index 0000000000..5a3271fd6d --- /dev/null +++ b/pod/video/management/commands/unarchive_video.py @@ -0,0 +1,33 @@ +from django.core.management.base import BaseCommand +from pod.video.models import Video +from django.contrib.auth.models import User +from django.core.exceptions import ObjectDoesNotExist + + +class Command(BaseCommand): + help = 'Unarchive a video' + + def add_arguments(self, parser): + parser.add_argument('video_id', type=int, help='Video id') + parser.add_argument('user_id', type=int, help='Video id') + + def handle(self, *args, **options): + video = 1 + user = 1 + try: + video = Video.objects.get(id=options['video_id']) + except ObjectDoesNotExist: + self.stdout.write(self.style.ERROR( + 'Video not found "%s"' % options['video_id'])) + return + try: + user = User.objects.get(id=options['user_id']) + except ObjectDoesNotExist: + self.stdout.write(self.style.ERROR( + 'User not found "%s"' % options['user_id'])) + return + + video.owner = user + video.save() + self.stdout.write(self.style.SUCCESS( + 'Video "%s" has been unarchived' % video.id)) From ee6f9ba469929535597e2c45a0d5390061dd5184 Mon Sep 17 00:00:00 2001 From: Joshua Baubry Date: Tue, 16 Feb 2021 17:43:36 +0100 Subject: [PATCH 02/21] unarchive command, change title --- pod/video/management/commands/unarchive_video.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pod/video/management/commands/unarchive_video.py b/pod/video/management/commands/unarchive_video.py index 5a3271fd6d..28cb53aa6f 100644 --- a/pod/video/management/commands/unarchive_video.py +++ b/pod/video/management/commands/unarchive_video.py @@ -2,6 +2,10 @@ from pod.video.models import Video from django.contrib.auth.models import User from django.core.exceptions import ObjectDoesNotExist +from django.utils.translation import gettext as _ +from django.conf import settings + +ARCHIVE_OWNER_USERNAME = getattr(settings, 'ARCHIVE_OWNER_USERNAME', 'archive') class Command(BaseCommand): @@ -14,8 +18,14 @@ def add_arguments(self, parser): def handle(self, *args, **options): video = 1 user = 1 + to_remove = len(_('Archived') + " 0000-00-00") + try: video = Video.objects.get(id=options['video_id']) + if(video.owner.username != ARCHIVE_OWNER_USERNAME): + self.stdout.write(self.style.ERROR( + 'Error : Video not archived "%s"' % options['video_id'])) + return except ObjectDoesNotExist: self.stdout.write(self.style.ERROR( 'Video not found "%s"' % options['video_id'])) @@ -28,6 +38,7 @@ def handle(self, *args, **options): return video.owner = user + video.title = video.title[to_remove:] video.save() self.stdout.write(self.style.SUCCESS( 'Video "%s" has been unarchived' % video.id)) From 5794c60c8f81a17691fbcfa91430e078694843dd Mon Sep 17 00:00:00 2001 From: Joshua Baubry Date: Tue, 16 Feb 2021 17:44:27 +0100 Subject: [PATCH 03/21] fix flake8 --- pod/video/management/commands/unarchive_video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pod/video/management/commands/unarchive_video.py b/pod/video/management/commands/unarchive_video.py index 28cb53aa6f..4a0915865d 100644 --- a/pod/video/management/commands/unarchive_video.py +++ b/pod/video/management/commands/unarchive_video.py @@ -19,7 +19,7 @@ def handle(self, *args, **options): video = 1 user = 1 to_remove = len(_('Archived') + " 0000-00-00") - + try: video = Video.objects.get(id=options['video_id']) if(video.owner.username != ARCHIVE_OWNER_USERNAME): From 91010b2525d680da6503d1a2ff6912515d0b3461 Mon Sep 17 00:00:00 2001 From: Joshua Baubry Date: Tue, 16 Feb 2021 17:58:29 +0100 Subject: [PATCH 04/21] fix translation --- pod/video/management/commands/unarchive_video.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pod/video/management/commands/unarchive_video.py b/pod/video/management/commands/unarchive_video.py index 4a0915865d..5ffd330934 100644 --- a/pod/video/management/commands/unarchive_video.py +++ b/pod/video/management/commands/unarchive_video.py @@ -4,8 +4,10 @@ from django.core.exceptions import ObjectDoesNotExist from django.utils.translation import gettext as _ from django.conf import settings +from django.utils.translation import activate ARCHIVE_OWNER_USERNAME = getattr(settings, 'ARCHIVE_OWNER_USERNAME', 'archive') +LANGUAGE_CODE = getattr(settings, "LANGUAGE_CODE", 'fr') class Command(BaseCommand): @@ -16,9 +18,10 @@ def add_arguments(self, parser): parser.add_argument('user_id', type=int, help='Video id') def handle(self, *args, **options): + activate(LANGUAGE_CODE) video = 1 user = 1 - to_remove = len(_('Archived') + " 0000-00-00") + to_remove = len(_('Archived') + " 0000-00-00 ") try: video = Video.objects.get(id=options['video_id']) From 690addd51c1670a0e08f40f2bf4d7214906b3337 Mon Sep 17 00:00:00 2001 From: Ptitloup Date: Wed, 17 Feb 2021 11:33:04 +0100 Subject: [PATCH 05/21] Update unarchive video command Update date delete to default date delete Change user id argument hlep text --- pod/video/management/commands/unarchive_video.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pod/video/management/commands/unarchive_video.py b/pod/video/management/commands/unarchive_video.py index 5ffd330934..016a694955 100644 --- a/pod/video/management/commands/unarchive_video.py +++ b/pod/video/management/commands/unarchive_video.py @@ -1,5 +1,5 @@ from django.core.management.base import BaseCommand -from pod.video.models import Video +from pod.video.models import Video, default_date_delete from django.contrib.auth.models import User from django.core.exceptions import ObjectDoesNotExist from django.utils.translation import gettext as _ @@ -15,7 +15,7 @@ class Command(BaseCommand): def add_arguments(self, parser): parser.add_argument('video_id', type=int, help='Video id') - parser.add_argument('user_id', type=int, help='Video id') + parser.add_argument('user_id', type=int, help='User id') def handle(self, *args, **options): activate(LANGUAGE_CODE) @@ -42,6 +42,7 @@ def handle(self, *args, **options): video.owner = user video.title = video.title[to_remove:] + video.date_delete = default_date_delete() video.save() self.stdout.write(self.style.SUCCESS( 'Video "%s" has been unarchived' % video.id)) From bce9f01c7098ed35720cde41d77e3252b6d34095 Mon Sep 17 00:00:00 2001 From: ptitloup Date: Wed, 17 Feb 2021 11:44:50 +0100 Subject: [PATCH 06/21] add datepicker for date delete in video edit form --- pod/video/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pod/video/forms.py b/pod/video/forms.py index 36ead6e5ad..6e4f27efd6 100644 --- a/pod/video/forms.py +++ b/pod/video/forms.py @@ -521,7 +521,7 @@ def set_nostaff_config(self): self.fields[ "date_delete"].widget = forms.DateInput( format=('%Y-%m-%d'), - attrs={"placeholder": "Select a date"}) + attrs={"placeholder": "Select a date", "type": "date"}) def hide_default_language(self): if self.fields.get('description_%s' % settings.LANGUAGE_CODE): From 9f86238455e15a5dfed17f564d9b63debb8c33f8 Mon Sep 17 00:00:00 2001 From: Ptitloup Date: Wed, 17 Feb 2021 13:48:57 +0100 Subject: [PATCH 07/21] Update encode.py --- pod/video/encode.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pod/video/encode.py b/pod/video/encode.py index 3ebfb10201..d041a8f168 100755 --- a/pod/video/encode.py +++ b/pod/video/encode.py @@ -878,7 +878,8 @@ def create_overview_image( ): """Create image overview for video navigation.""" msg = "\ncreate overview image file" - + cmd_ffmpegthumbnailer = "" + cmd_montage = "" for i in range(0, nb_img): stamp = "%s" % i if nb_img == 99: @@ -937,6 +938,8 @@ def create_overview_image( + "\n%s" % overviewimagefilename msg += "\nthumbnailer command: \n- %s\n" % cmd_ffmpegthumbnailer msg += "\nmontage command: \n- %s\n" % cmd_montage + msg += "\nduration %s - nb_img %s - image_width %s \n" % ( + duration, nb_img, image_width) add_encoding_log(video_id, msg) change_encoding_step(video_id, -1, msg) From 05fa29de57438d3eaa3f21834dd6a09238bb2e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Sen=C3=A9?= Date: Wed, 17 Feb 2021 17:07:13 +0100 Subject: [PATCH 08/21] add channel(s) list to video info page + translation update for it --- pod/locale/fr/LC_MESSAGES/django.mo | Bin 97367 -> 97423 bytes pod/locale/fr/LC_MESSAGES/django.po | 10 ++++++++-- pod/video/templates/videos/video-info.html | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pod/locale/fr/LC_MESSAGES/django.mo b/pod/locale/fr/LC_MESSAGES/django.mo index 6e6b28c026f339e0c4f06a5c332065348971c44e..dbc15eaa38e9cc816a7a0bf44a9464c21173f307 100755 GIT binary patch delta 24414 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 F{{!CievSYD delta 24372 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 diff --git a/pod/locale/fr/LC_MESSAGES/django.po b/pod/locale/fr/LC_MESSAGES/django.po index edc096a231..d03ef2e1b4 100755 --- a/pod/locale/fr/LC_MESSAGES/django.po +++ b/pod/locale/fr/LC_MESSAGES/django.po @@ -5031,14 +5031,20 @@ msgid "Duration:" msgstr "Durée :" #: pod/video/templates/videos/video-info.html:80 +msgid "Channel:" +msgid_plural "Channels:" +msgstr[0] "Chaîne :" +msgstr[1] "Chaînes :" + +#: pod/video/templates/videos/video-info.html:81 msgid "Number of view:" msgstr "Nombre de vues :" -#: pod/video/templates/videos/video-info.html:80 +#: pod/video/templates/videos/video-info.html:81 msgid "Show details of view statistics" msgstr "Afficher les details des statistiques de visualisation" -#: pod/video/templates/videos/video-info.html:80 +#: pod/video/templates/videos/video-info.html:81 msgid "Show details views" msgstr "Afficher les details de visualisation" diff --git a/pod/video/templates/videos/video-info.html b/pod/video/templates/videos/video-info.html index 43a9bc1c04..af0b882b62 100644 --- a/pod/video/templates/videos/video-info.html +++ b/pod/video/templates/videos/video-info.html @@ -77,6 +77,7 @@
 {% trans 'Infos' %}

{% trans 'Updated on:' %}
{{ video.date_added }}

{% trans 'Duration:' %}
{{ video.duration_in_time }}

+ {% if video.channel.all %}

{% blocktrans count counter=video.channel.all|length %}Channel:{% plural %} Channels:{% endblocktrans %}
{% for channel in video.channel.all %}{{ channel.title }}
{% endfor %}

{%endif%}

{% trans 'Number of view:' %}
{{ video.get_viewcount }}{% if USE_STATS_VIEW %} ({% trans 'Show details views' %})

{% endif %}
From ae963d54e6d69a2301ec8cc4dbef367aa28a6da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Sen=C3=A9?= Date: Thu, 18 Feb 2021 09:13:22 +0100 Subject: [PATCH 09/21] NL translation update --- pod/locale/nl/LC_MESSAGES/django.mo | Bin 743 -> 746 bytes pod/locale/nl/LC_MESSAGES/django.po | 10 ++++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/pod/locale/nl/LC_MESSAGES/django.mo b/pod/locale/nl/LC_MESSAGES/django.mo index 64753a5d34a804da28f18e7ca0d9b92b0235e624..6cd02ab317594541c6aaf61e4124fde5b132832c 100644 GIT binary patch delta 119 zcmaFP`igZzNvJI&149%LvoSC*%wS?*-~iI|fix$OUIC=pf%GOQe;1TK0;HLN;^(0J sOF$Z=?hcS<1=3F@o?OZtke@O+k1?NJHzYMN*GggX6~+ydr!WNr04Sst)&Kwi delta 123 zcmaFG`kZw_NvIVg149%LvoSC*Ol4wV-~iHdfHWtNUJ9hyf%JMPe>;>u2&9>T;-{hf w^FSJ;?k13C1=0^Eo?JS)kTHMq2gc?6K8bnhrHSdOx*@5FxmF63r!j>90F-wZ)Bpeg diff --git a/pod/locale/nl/LC_MESSAGES/django.po b/pod/locale/nl/LC_MESSAGES/django.po index 98fc98338d..cfeae98282 100644 --- a/pod/locale/nl/LC_MESSAGES/django.po +++ b/pod/locale/nl/LC_MESSAGES/django.po @@ -4773,14 +4773,20 @@ msgid "Duration:" msgstr "" #: pod/video/templates/videos/video-info.html:80 +msgid "Channel:" +msgid_plural "Channels:" +msgstr[0] "" +msgstr[1] "" + +#: pod/video/templates/videos/video-info.html:81 msgid "Number of view:" msgstr "" -#: pod/video/templates/videos/video-info.html:80 +#: pod/video/templates/videos/video-info.html:81 msgid "Show details of view statistics" msgstr "" -#: pod/video/templates/videos/video-info.html:80 +#: pod/video/templates/videos/video-info.html:81 msgid "Show details views" msgstr "" From 87113f57f23cc9ece6bd5a585634c6059f823330 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Sen=C3=A9?= Date: Thu, 18 Feb 2021 09:48:47 +0100 Subject: [PATCH 10/21] update translations --- pod/locale/fr/LC_MESSAGES/django.mo | Bin 97423 -> 97230 bytes pod/locale/fr/LC_MESSAGES/django.po | 926 ++++++++++++++------------ pod/locale/nl/LC_MESSAGES/django.po | 905 +++++++++++++------------ pod/locale/nl/LC_MESSAGES/djangojs.mo | Bin 369 -> 377 bytes 4 files changed, 967 insertions(+), 864 deletions(-) mode change 100755 => 100644 pod/locale/fr/LC_MESSAGES/django.mo mode change 100644 => 100755 pod/locale/nl/LC_MESSAGES/django.po diff --git a/pod/locale/fr/LC_MESSAGES/django.mo b/pod/locale/fr/LC_MESSAGES/django.mo old mode 100755 new mode 100644 index dbc15eaa38e9cc816a7a0bf44a9464c21173f307..d38c5e09bd4edb431ce0f2493b30063f163a012d GIT binary patch delta 24371 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 delta 24498 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 diff --git a/pod/locale/fr/LC_MESSAGES/django.po b/pod/locale/fr/LC_MESSAGES/django.po index d03ef2e1b4..26a948de95 100755 --- a/pod/locale/fr/LC_MESSAGES/django.po +++ b/pod/locale/fr/LC_MESSAGES/django.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Pod\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-29 14:49+0000\n" +"POT-Creation-Date: 2021-02-18 09:38+0100\n" "PO-Revision-Date: \n" "Last-Translator: obado \n" "Language-Team: \n" @@ -26,10 +26,11 @@ msgid "Establishment" msgstr "Etablissement" #: pod/authentication/forms.py:60 pod/authentication/forms.py:61 -#: pod/bbb/models.py:141 pod/main/templates/navbar.html:22 -#: pod/main/templates/navbar_collapse.html:76 pod/podfile/models.py:37 -#: pod/video/forms.py:234 pod/video/forms.py:578 pod/video/forms.py:582 -#: pod/video/models.py:248 pod/video/templates/videos/filter_aside.html:13 +#: pod/bbb/models.py:141 pod/custom/templates/navbar.html:22 +#: pod/main/templates/navbar.html:22 pod/main/templates/navbar_collapse.html:76 +#: pod/podfile/models.py:37 pod/video/forms.py:236 pod/video/forms.py:589 +#: pod/video/forms.py:593 pod/video/models.py:248 +#: pod/video/templates/videos/filter_aside.html:13 msgid "Users" msgstr "Utilisateurs" @@ -114,7 +115,7 @@ msgstr "Authentification locale" #: pod/authentication/templates/registration/login.html:9 #: pod/authentication/templates/registration/login.html:12 #: pod/authentication/templates/registration/login.html:63 -#: pod/main/templates/navbar.html:117 +#: pod/custom/templates/navbar.html:111 pod/main/templates/navbar.html:117 msgid "Log in" msgstr "Connexion" @@ -140,7 +141,7 @@ msgid "Forgotten your password or username?" msgstr "Mot de passe ou identifiant perdu ?" #: pod/authentication/templates/userpicture/userpicture.html:7 -#: pod/main/templates/navbar.html:88 +#: pod/custom/templates/navbar.html:85 pod/main/templates/navbar.html:88 msgid "Change your picture" msgstr "Changer votre image de profil" @@ -501,6 +502,8 @@ msgid "Chapter" msgstr "Chapitre" #: pod/chapter/models.py:31 pod/chapter/templates/video_chapter.html:67 +#: pod/enrichment/templates/enrichment/video_enrichment-iframe.html:36 +#: pod/enrichment/templates/enrichment/video_enrichment.html:43 #: pod/video/templates/videos/video-element.html:38 msgid "Chapters" msgstr "Chapitres" @@ -591,7 +594,7 @@ msgstr "Éditer le chapitre" #: pod/completion/templates/track/list_track.html:23 #: pod/completion/templates/track/list_track.html:42 #: pod/enrichment/templates/enrichment/list_enrichment.html:30 -#: pod/podfile/templates/podfile/list_folder_files.html:106 +#: pod/podfile/templates/podfile/list_folder_files.html:251 #: pod/video/templates/channel/list_theme.html:27 msgid "Modify" msgstr "Modifier" @@ -603,8 +606,8 @@ msgstr "Supprimer le chapitre" #: pod/chapter/templates/chapter/list_chapter.html:32 #: pod/enrichment/templates/enrichment/list_enrichment.html:38 #: pod/playlist/templates/playlist.html:68 -#: pod/podfile/templates/podfile/list_folder_files.html:39 -#: pod/podfile/templates/podfile/list_folder_files.html:127 +#: pod/podfile/templates/podfile/list_folder_files.html:104 +#: pod/podfile/templates/podfile/list_folder_files.html:299 #: pod/recorder/templates/recorder/record_delete.html:9 #: pod/video/templates/channel/list_theme.html:35 #: pod/video/templates/videos/category_modal.html:66 @@ -620,6 +623,7 @@ msgstr "Chapitre vidéo" #: pod/chapter/templates/video_chapter.html:16 #: pod/completion/templates/video_caption_maker.html:13 #: pod/completion/templates/video_completion.html:13 +#: pod/custom/templates/navbar.html:91 #: pod/enrichment/templates/enrichment/group_enrichment.html:10 #: pod/interactive/templates/interactive/group_interactive.html:10 #: pod/main/templates/navbar.html:94 @@ -657,7 +661,7 @@ msgstr "Ajouter un nouveau chapitre" #: pod/enrichment/templates/enrichment/group_enrichment.html:71 #: pod/interactive/templates/interactive/edit_interactive.html:128 #: pod/interactive/templates/interactive/group_interactive.html:71 -#: pod/video/templates/videos/video.html:250 +#: pod/video/templates/videos/video.html:251 #: pod/video/templates/videos/video_edit.html:143 msgid "Manage video" msgstr "Gérer la vidéo" @@ -816,7 +820,7 @@ msgstr "Vidéo" #: pod/completion/models.py:125 pod/completion/models.py:129 #: pod/completion/templates/document/list_document.html:10 #: pod/enrichment/models.py:147 -#: pod/enrichment/templates/enrichment/video_enrichment.html:126 +#: pod/enrichment/templates/enrichment/video_enrichment.html:142 #: pod/podfile/models.py:164 msgid "Document" msgstr "Document" @@ -1359,14 +1363,367 @@ msgid "The file has not been saved." msgstr "Le fichier n’a pas été enregistré." #: pod/completion/views.py:237 pod/completion/views.py:413 -#: pod/completion/views.py:814 pod/podfile/views.py:468 -#: pod/podfile/views.py:518 pod/video/views.py:349 pod/video/views.py:1384 +#: pod/completion/views.py:814 pod/podfile/views.py:470 +#: pod/podfile/views.py:520 pod/video/views.py:349 pod/video/views.py:1384 msgid "Please correct errors" msgstr "Veuillez corriger les erreurs" -#: pod/custom/settings_local.py:76 -msgid "Dutch (Netherlands)" -msgstr "Néerlandais (Pays-Bas)" +#: pod/custom/templates/base.html:71 pod/main/templates/base.html:71 +msgid "Home" +msgstr "Accueil" + +#: pod/custom/templates/footer.html:27 pod/main/templates/footer.html:30 +msgid "Pod Project" +msgstr "Projet Pod" + +#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 +#: pod/video/feeds.py:107 +msgid "video platform of" +msgstr "plateforme vidéos de" + +#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 +msgid "Release" +msgstr "Version" + +#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 +msgid "videos availables" +msgstr "vidéos disponibles" + +#: pod/custom/templates/navbar.html:17 pod/main/templates/navbar.html:17 +#: pod/recorder/models.py:194 pod/video/forms.py:172 pod/video/models.py:261 +#: pod/video/models.py:529 +msgid "Channels" +msgstr "Chaînes" + +#: pod/custom/templates/navbar.html:27 pod/main/templates/navbar.html:27 +#: pod/video/models.py:419 pod/video/templates/videos/filter_aside.html:34 +msgid "Types" +msgstr "Types" + +#: pod/custom/templates/navbar.html:32 pod/live/templates/live/building.html:11 +#: pod/live/templates/live/live.html:20 pod/live/templates/live/live.html:24 +#: pod/live/templates/live/lives.html:15 pod/live/templates/live/lives.html:18 +#: pod/live/templates/live/lives.html:21 pod/main/templates/navbar.html:32 +msgid "Lives" +msgstr "Directs" + +#: pod/custom/templates/navbar.html:53 pod/custom/templates/navbar.html:55 +#: pod/main/templates/navbar.html:53 pod/main/templates/navbar.html:55 +#: pod/main/templates/navbar_collapse.html:85 +#: pod/main/templates/navbar_collapse.html:86 +#: pod/video/templates/videos/filter_aside.html:15 +#: pod/video/templates/videos/filter_aside_category.html:24 +#: pod/video_search/forms.py:8 pod/video_search/templates/search/search.html:8 +#: pod/video_search/templates/search/search.html:17 +#: pod/video_search/templates/search/search.html:38 +msgid "Search" +msgstr "Rechercher" + +#: pod/custom/templates/navbar.html:60 pod/custom/templates/navbar.html:62 +#: pod/main/templates/navbar.html:63 pod/main/templates/navbar.html:65 +msgid "Add a video" +msgstr "Ajouter une vidéo" + +#: pod/custom/templates/navbar.html:88 pod/main/templates/navbar.html:91 +msgid "Add your picture" +msgstr "Ajouter votre image de profil" + +#: pod/custom/templates/navbar.html:93 pod/main/templates/navbar.html:96 +#: pod/video/templates/channel/channel_edit.html:17 +#: pod/video/templates/channel/my_channels.html:6 +#: pod/video/templates/channel/my_channels.html:9 +#: pod/video/templates/channel/theme_edit.html:18 +msgid "My channels" +msgstr "Mes chaînes" + +#: pod/custom/templates/navbar.html:95 +#: pod/enrichment/templates/enrichment/video_enrichment.html:106 +#: pod/interactive/templates/interactive/video_interactive.html:101 +#: pod/main/templates/navbar.html:98 +#: pod/playlist/templates/my_playlists.html:10 +#: pod/playlist/templates/my_playlists.html:17 +#: pod/playlist/templates/playlist.html:14 +#: pod/video/templates/videos/video.html:218 +msgid "My playlists" +msgstr "Mes listes de lecture" + +#: pod/custom/templates/navbar.html:97 pod/main/templates/navbar.html:100 +#: pod/podfile/templates/podfile/home.html:6 +#: pod/podfile/templates/podfile/home.html:10 +msgid "My files" +msgstr "Mes fichiers" + +#: pod/custom/templates/navbar.html:100 pod/main/templates/navbar.html:103 +#: pod/recorder/templates/recorder/claim_record.html:11 +#: pod/recorder/templates/recorder/record_delete.html:8 +#: pod/recorder/templates/recorder/record_delete.html:20 +msgid "Claim a record" +msgstr "Revendiquer un enregistrement" + +#: pod/custom/templates/navbar.html:104 pod/custom/templates/navbar.html:105 +#: pod/main/templates/navbar.html:110 pod/main/templates/navbar.html:111 +msgid "Log out" +msgstr "Déconnexion" + +#: pod/custom/templates/videos/video-info.html:9 +#: pod/enrichment/templates/enrichment/video_enrichment.html:69 +#: pod/enrichment/templates/enrichment/video_enrichment.html:70 +#: pod/interactive/templates/interactive/video_interactive.html:56 +#: pod/interactive/templates/interactive/video_interactive.html:57 +#: pod/video/templates/videos/video-info.html:9 +#: pod/video/templates/videos/video.html:168 +#: pod/video/templates/videos/video.html:169 +msgid "Summary" +msgstr "Description" + +#: pod/custom/templates/videos/video-info.html:10 +#: pod/video/templates/videos/video-info.html:10 +msgid "" +"This is a 360 degree video. To look around click and drag your mouse on the " +"video." +msgstr "" +"C'est une vidéo 360. Pour déplacer la vue, cliquer et faites glisser la " +"souris sur la vidéo." + +#: pod/custom/templates/videos/video-info.html:15 +#: pod/video/templates/videos/video-info.html:15 +msgid "Tags:" +msgstr "Mots clés :" + +#: pod/custom/templates/videos/video-info.html:24 +#: pod/video/templates/videos/video-info.html:24 +msgid "No information available" +msgstr "Aucune information disponible" + +#: pod/custom/templates/videos/video-info.html:33 +#: pod/enrichment/templates/enrichment/video_enrichment.html:74 +#: pod/enrichment/templates/enrichment/video_enrichment.html:75 +#: pod/interactive/templates/interactive/video_interactive.html:61 +#: pod/interactive/templates/interactive/video_interactive.html:62 +#: pod/video/templates/videos/video-info.html:33 +#: pod/video/templates/videos/video.html:175 +#: pod/video/templates/videos/video.html:177 +#: pod/video/templates/videos/video.html:179 +msgid "Infos" +msgstr "Informations" + +#: pod/custom/templates/videos/video-info.html:36 +#: pod/video/templates/videos/video-info.html:36 +msgid "Added by:" +msgstr "Ajouté par :" + +#: pod/custom/templates/videos/video-info.html:46 +#: pod/video/templates/videos/video-info.html:46 +msgid "Additional owners:" +msgstr "Propriétaires additionels :" + +#: pod/custom/templates/videos/video-info.html:59 +#: pod/video/templates/videos/video-info.html:59 +msgid "Contributors:" +msgstr "Contributeurs :" + +#: pod/custom/templates/videos/video-info.html:63 +#: pod/video/templates/videos/video-info.html:63 +msgid "send an email" +msgstr "envoyer un courriel" + +#: pod/custom/templates/videos/video-info.html:68 +#: pod/video/templates/videos/video-info.html:68 +msgid "contributor web link" +msgstr "lien du contributeur" + +#: pod/custom/templates/videos/video-info.html:78 +#: pod/video/templates/videos/video-info.html:78 +msgid "Updated on:" +msgstr "Mis à jour le :" + +#: pod/custom/templates/videos/video-info.html:79 +#: pod/video/templates/videos/video-info.html:79 +msgid "Duration:" +msgstr "Durée :" + +#: pod/custom/templates/videos/video-info.html:82 +#, fuzzy +#| msgid "Channel:" +#| msgid_plural "Channels:" +msgid "Channel:" +msgid_plural " Channels:" +msgstr[0] "Chaîne :" +msgstr[1] "Chaînes :" + +#: pod/custom/templates/videos/video-info.html:83 +#: pod/video/templates/videos/video-info.html:80 +msgid "Number of view:" +msgstr "Nombre de vues :" + +#: pod/custom/templates/videos/video-info.html:83 +#: pod/video/templates/videos/video-info.html:80 +msgid "Show details of view statistics" +msgstr "Afficher les details des statistiques de visualisation" + +#: pod/custom/templates/videos/video-info.html:83 +#: pod/video/templates/videos/video-info.html:80 +msgid "Show details views" +msgstr "Afficher les details de visualisation" + +#: pod/custom/templates/videos/video-info.html:87 +#: pod/video/templates/videos/video-info.html:84 +msgid "Type:" +msgstr "Type :" + +#: pod/custom/templates/videos/video-info.html:88 +#: pod/video/templates/videos/video-info.html:85 +msgid "Main language:" +msgstr "Langue principale :" + +#: pod/custom/templates/videos/video-info.html:90 +#: pod/video/templates/videos/video-info.html:87 +msgid "Audience:" +msgstr "Public :" + +#: pod/custom/templates/videos/video-info.html:94 +#: pod/video/templates/videos/video-info.html:91 +msgid "Disciplines:" +msgstr "Disciplines :" + +#: pod/custom/templates/videos/video-info.html:103 +#: pod/video/templates/videos/video-info.html:100 +msgid "Licence:" +msgstr "Licence :" + +#: pod/custom/templates/videos/video-info.html:111 +#: pod/enrichment/templates/enrichment/video_enrichment.html:80 +#: pod/enrichment/templates/enrichment/video_enrichment.html:81 +#: pod/interactive/templates/interactive/video_interactive.html:67 +#: pod/interactive/templates/interactive/video_interactive.html:68 +#: pod/video/templates/videos/video-info.html:108 +#: pod/video/templates/videos/video.html:184 +#: pod/video/templates/videos/video.html:185 +msgid "Downloads" +msgstr "Téléchargements" + +#: pod/custom/templates/videos/video-info.html:115 +#: pod/video/templates/videos/video-info.html:112 +msgid "Video file(s):" +msgstr "Fichiers vidéos :" + +#: pod/custom/templates/videos/video-info.html:129 +#: pod/video/templates/videos/video-info.html:126 +msgid "Audio file:" +msgstr "Fichier audio :" + +#: pod/custom/templates/videos/video-info.html:141 +#: pod/video/templates/videos/video-info.html:138 +msgid "Document:" +msgstr "Document :" + +#: pod/custom/templates/videos/video-info.html:157 +#: pod/video/templates/videos/video-info.html:154 +#: pod/video/templates/videos/video_edit.html:161 +msgid "Embed/Share (Draft Mode)" +msgstr "Intégrer/Partager (Mode brouillon)" + +#: pod/custom/templates/videos/video-info.html:157 +#: pod/enrichment/templates/enrichment/video_enrichment.html:86 +#: pod/enrichment/templates/enrichment/video_enrichment.html:87 +#: pod/interactive/templates/interactive/video_interactive.html:73 +#: pod/interactive/templates/interactive/video_interactive.html:74 +#: pod/video/templates/videos/video-info.html:154 +#: pod/video/templates/videos/video.html:191 +#: pod/video/templates/videos/video.html:192 +msgid "Embed/Share" +msgstr "Intégrer/Partager" + +#: pod/custom/templates/videos/video-info.html:160 +#: pod/video/templates/videos/video-info.html:157 +msgid "Social Networks" +msgstr "Réseaux sociaux" + +#: pod/custom/templates/videos/video-info.html:161 +#: pod/custom/templates/videos/video-info.html:162 +#: pod/custom/templates/videos/video-info.html:163 +#: pod/main/templates/aside.html:11 pod/main/templates/aside.html:12 +#: pod/main/templates/aside.html:13 +#: pod/video/templates/videos/video-info.html:158 +#: pod/video/templates/videos/video-info.html:159 +#: pod/video/templates/videos/video-info.html:160 +msgid "Share on" +msgstr "Partager sur" + +#: pod/custom/templates/videos/video-info.html:170 +#: pod/video/templates/videos/video-info.html:167 +msgid "" +"Please note that your video is in draft mode.
The following links " +"contain a key allowing access. Anyone with this links can access it." +msgstr "" +"Veuillez noter que votre vidéo est en mode brouillon.
Les liens " +"suivants contiennent une clé permettant l’accès. Toute personne disposant de " +"ces liens peut y accéder." + +#: pod/custom/templates/videos/video-info.html:176 +#: pod/video/templates/videos/video-info.html:173 +msgid "Options" +msgstr "Options" + +#: pod/custom/templates/videos/video-info.html:179 +#: pod/video/templates/videos/video-info.html:176 +msgid "Autoplay" +msgstr "Lecture automatique" + +#: pod/custom/templates/videos/video-info.html:180 +#: pod/video/templates/videos/video-info.html:177 +msgid "Check the box to autoplay the video." +msgstr "Cocher cette case pour lancer la lecture automatiquement." + +#: pod/custom/templates/videos/video-info.html:185 +#: pod/video/templates/videos/video-info.html:182 +msgid "Loop" +msgstr "Boucle" + +#: pod/custom/templates/videos/video-info.html:186 +#: pod/video/templates/videos/video-info.html:183 +msgid "Check the box to loop the video." +msgstr "Cocher cette case pour lire la vidéo en boucle." + +#: pod/custom/templates/videos/video-info.html:192 +#: pod/video/templates/videos/video-info.html:189 +msgid "Start video" +msgstr "Début de la vidéo" + +#: pod/custom/templates/videos/video-info.html:193 +#: pod/video/templates/videos/video-info.html:190 +msgid "Start at" +msgstr "Démarrer à" + +#: pod/custom/templates/videos/video-info.html:196 +#: pod/video/templates/videos/video-info.html:193 +msgid "Check the box to indicate the beginning of playing desired." +msgstr "Cocher la case pour indiquer le début de lecture souhaité." + +#: pod/custom/templates/videos/video-info.html:201 +#: pod/video/templates/videos/video-info.html:198 +msgid "Embed in a web page" +msgstr "Intégrer dans une page web" + +#: pod/custom/templates/videos/video-info.html:203 +#: pod/video/templates/videos/video-info.html:200 +msgid "Copy the content of this text box and paste it in the page:" +msgstr "Copier le contenu de cette boite de texte et coller le sur la page :" + +#: pod/custom/templates/videos/video-info.html:208 +#: pod/video/templates/videos/video-info.html:205 +msgid "Share the link" +msgstr "Partager le lien" + +#: pod/custom/templates/videos/video-info.html:210 +#: pod/video/templates/videos/video-info.html:207 +msgid "Use this link to share the video:" +msgstr "Utiliser ce lien pour partager la vidéo :" + +#: pod/custom/templates/videos/video-info.html:214 +#: pod/video/templates/videos/video-info.html:211 +msgid "QR code for this link:" +msgstr "QR code pour le lien :" #: pod/enrichment/apps.py:7 msgid "Enrichment version" @@ -1430,13 +1787,13 @@ msgstr "Temps de fin de l'affichage de l'enrichissement en secondes." #: pod/enrichment/models.py:137 #: pod/enrichment/templates/enrichment/list_enrichment.html:11 -#: pod/video/forms.py:101 pod/video/models.py:418 pod/video/models.py:473 +#: pod/video/forms.py:103 pod/video/models.py:418 pod/video/models.py:473 #: pod/video/views.py:1332 pod/video_search/templates/search/search.html:77 msgid "Type" msgstr "Type" #: pod/enrichment/models.py:144 -#: pod/enrichment/templates/enrichment/video_enrichment.html:125 +#: pod/enrichment/templates/enrichment/video_enrichment.html:141 #: pod/main/models.py:42 pod/main/models.py:73 pod/podfile/models.py:200 msgid "Image" msgstr "Image" @@ -1446,12 +1803,12 @@ msgid "Integrate an document (PDF, text, html)" msgstr "Intégrer un document (PDF, text, html)" #: pod/enrichment/models.py:151 -#: pod/enrichment/templates/enrichment/video_enrichment.html:127 +#: pod/enrichment/templates/enrichment/video_enrichment.html:143 msgid "Richtext" msgstr "Texte riche" #: pod/enrichment/models.py:155 -#: pod/enrichment/templates/enrichment/video_enrichment.html:129 +#: pod/enrichment/templates/enrichment/video_enrichment.html:145 msgid "Embed" msgstr "Intégrer" @@ -1546,7 +1903,7 @@ msgid "See the enrich video" msgstr "Voir la vidéo enrichie" #: pod/enrichment/templates/enrichment/edit_enrichment.html:81 -#: pod/enrichment/templates/enrichment/video_enrichment.html:119 +#: pod/enrichment/templates/enrichment/video_enrichment.html:135 #: pod/interactive/templates/interactive/edit_interactive.html:113 msgid "Informations" msgstr "Informations" @@ -1592,7 +1949,7 @@ msgstr "Spécifier les groupes qui peuvent enrichir la vidéo" #: pod/enrichment/templates/enrichment/group_enrichment.html:34 #: pod/interactive/templates/interactive/group_interactive.html:34 -#: pod/video/templates/videos/video.html:124 +#: pod/video/templates/videos/video.html:125 #: pod/video/templates/videos/video_edit.html:77 msgid "The video is currently being encoded." msgstr "La vidéo est en cours d'encodage." @@ -1610,101 +1967,50 @@ msgid "Delete the enrichment" msgstr "Supprimer l'enrichissement" #: pod/enrichment/templates/enrichment/video_enrichment-iframe.html:11 -#: pod/enrichment/templates/enrichment/video_enrichment.html:15 +#: pod/enrichment/templates/enrichment/video_enrichment.html:14 msgid "Enriched" msgstr "Enrichi" -#: pod/enrichment/templates/enrichment/video_enrichment.html:44 -#: pod/interactive/templates/interactive/video_interactive.html:47 -#: pod/video/templates/videos/video.html:152 -msgid "Report the video" -msgstr "Signaler la vidéo" - -#: pod/enrichment/templates/enrichment/video_enrichment.html:53 -#: pod/enrichment/templates/enrichment/video_enrichment.html:54 -#: pod/interactive/templates/interactive/video_interactive.html:56 -#: pod/interactive/templates/interactive/video_interactive.html:57 -#: pod/video/templates/videos/video-info.html:9 -#: pod/video/templates/videos/video.html:167 -#: pod/video/templates/videos/video.html:168 -msgid "Summary" -msgstr "Description" - -#: pod/enrichment/templates/enrichment/video_enrichment.html:58 -#: pod/enrichment/templates/enrichment/video_enrichment.html:59 -#: pod/interactive/templates/interactive/video_interactive.html:61 -#: pod/interactive/templates/interactive/video_interactive.html:62 -#: pod/video/templates/videos/video-info.html:33 -#: pod/video/templates/videos/video.html:174 -#: pod/video/templates/videos/video.html:176 -#: pod/video/templates/videos/video.html:178 -msgid "Infos" -msgstr "Informations" - -#: pod/enrichment/templates/enrichment/video_enrichment.html:64 -#: pod/enrichment/templates/enrichment/video_enrichment.html:65 -#: pod/interactive/templates/interactive/video_interactive.html:67 -#: pod/interactive/templates/interactive/video_interactive.html:68 -#: pod/video/templates/videos/video-info.html:108 -#: pod/video/templates/videos/video.html:183 -#: pod/video/templates/videos/video.html:184 -msgid "Downloads" -msgstr "Téléchargements" - -#: pod/enrichment/templates/enrichment/video_enrichment.html:70 -#: pod/enrichment/templates/enrichment/video_enrichment.html:71 -#: pod/interactive/templates/interactive/video_interactive.html:73 -#: pod/interactive/templates/interactive/video_interactive.html:74 -#: pod/video/templates/videos/video-info.html:154 -#: pod/video/templates/videos/video.html:190 -#: pod/video/templates/videos/video.html:191 -msgid "Embed/Share" -msgstr "Intégrer/Partager" +#: pod/enrichment/templates/enrichment/video_enrichment.html:60 +#: pod/interactive/templates/interactive/video_interactive.html:47 +#: pod/video/templates/videos/video.html:153 +msgid "Report the video" +msgstr "Signaler la vidéo" -#: pod/enrichment/templates/enrichment/video_enrichment.html:76 -#: pod/enrichment/templates/enrichment/video_enrichment.html:77 +#: pod/enrichment/templates/enrichment/video_enrichment.html:92 +#: pod/enrichment/templates/enrichment/video_enrichment.html:93 #: pod/interactive/templates/interactive/video_interactive.html:85 #: pod/interactive/templates/interactive/video_interactive.html:86 -#: pod/video/templates/videos/video.html:198 #: pod/video/templates/videos/video.html:199 +#: pod/video/templates/videos/video.html:200 msgid "Other versions" msgstr "Autre version" -#: pod/enrichment/templates/enrichment/video_enrichment.html:81 -#: pod/enrichment/templates/enrichment/video_enrichment.html:83 +#: pod/enrichment/templates/enrichment/video_enrichment.html:97 +#: pod/enrichment/templates/enrichment/video_enrichment.html:99 #: pod/interactive/templates/interactive/video_interactive.html:90 #: pod/interactive/templates/interactive/video_interactive.html:92 #: pod/video/templates/videos/link_video.html:35 msgid "Original version" msgstr "Version originale" -#: pod/enrichment/templates/enrichment/video_enrichment.html:89 +#: pod/enrichment/templates/enrichment/video_enrichment.html:105 #: pod/interactive/templates/interactive/video_interactive.html:100 -#: pod/video/templates/videos/video.html:216 +#: pod/video/templates/videos/video.html:217 msgid "Add the video to a playlist" msgstr "Ajouter une vidéo à une liste de lecture" -#: pod/enrichment/templates/enrichment/video_enrichment.html:90 -#: pod/interactive/templates/interactive/video_interactive.html:101 -#: pod/main/templates/navbar.html:98 -#: pod/playlist/templates/my_playlists.html:10 -#: pod/playlist/templates/my_playlists.html:17 -#: pod/playlist/templates/playlist.html:14 -#: pod/video/templates/videos/video.html:217 -msgid "My playlists" -msgstr "Mes listes de lecture" - -#: pod/enrichment/templates/enrichment/video_enrichment.html:122 +#: pod/enrichment/templates/enrichment/video_enrichment.html:138 msgid "To help you, the different types of enrichments have specific colors" msgstr "" "Pour vous aider, les différents types d'enrichissements ont des couleurs " "spécifiques" -#: pod/enrichment/templates/enrichment/video_enrichment.html:128 +#: pod/enrichment/templates/enrichment/video_enrichment.html:144 msgid "Weblink" msgstr "Lien web" -#: pod/enrichment/templates/enrichment/video_enrichment.html:132 +#: pod/enrichment/templates/enrichment/video_enrichment.html:148 msgid "They are visible on the video playback bar." msgstr "Ils sont visibles sur la barre de lecture de la vidéo." @@ -1870,7 +2176,7 @@ msgstr "Vous regardez cette vidéo en tant qu'utilisateur anonyme" msgid "You cannot add interactivity to this video." msgstr "Vous ne pouvez éditer cette vidéo interactive." -#: pod/live/forms.py:51 pod/video/forms.py:188 pod/video/forms.py:706 +#: pod/live/forms.py:51 pod/video/forms.py:190 pod/video/forms.py:717 msgid "Password" msgstr "Mot de passe" @@ -1883,8 +2189,8 @@ msgstr "nom" #: pod/video/templates/channel/channel.html:79 #: pod/video/templates/channel/channel.html:90 #: pod/video/templates/channel/channel_edit.html:38 -#: pod/video/templates/videos/video.html:99 -#: pod/video/templates/videos/video.html:108 +#: pod/video/templates/videos/video.html:100 +#: pod/video/templates/videos/video.html:109 msgid "Headband" msgstr "Bannière" @@ -1949,7 +2255,7 @@ msgstr "Activer le compteur de spectateurs" msgid "Enable viewers count on live." msgstr "Active le compteur de spectateurs sur le direct." -#: pod/live/models.py:102 pod/recorder/models.py:155 pod/video/forms.py:184 +#: pod/live/models.py:102 pod/recorder/models.py:155 pod/video/forms.py:186 #: pod/video/models.py:551 msgid "Restricted access" msgstr "Accès restreint" @@ -2010,13 +2316,6 @@ msgstr "Signal" msgid "Heartbeats" msgstr "Signaux" -#: pod/live/templates/live/building.html:11 -#: pod/live/templates/live/live.html:20 pod/live/templates/live/live.html:24 -#: pod/live/templates/live/lives.html:15 pod/live/templates/live/lives.html:18 -#: pod/live/templates/live/lives.html:21 pod/main/templates/navbar.html:32 -msgid "Lives" -msgstr "Directs" - #: pod/live/templates/live/building.html:39 #: pod/live/templates/live/live.html:104 pod/live/templates/live/lives.html:37 msgid "Sorry, no lives found" @@ -2147,7 +2446,7 @@ msgid "Please choose a subjects related your request" msgstr "Veuillez choisir un sujet en lien avec votre requête" #: pod/main/forms.py:60 pod/main/models.py:142 pod/playlist/models.py:22 -#: pod/video/forms.py:111 pod/video/forms.py:225 pod/video/forms.py:251 +#: pod/video/forms.py:113 pod/video/forms.py:227 pod/video/forms.py:253 #: pod/video/models.py:228 pod/video/models.py:312 pod/video/models.py:494 msgid "Description" msgstr "Description" @@ -2841,22 +3140,14 @@ msgstr "Administration de Pod" msgid "Share" msgstr "Partager" -#: pod/main/templates/aside.html:11 pod/main/templates/aside.html:12 -#: pod/main/templates/aside.html:13 -#: pod/video/templates/videos/video-info.html:158 -#: pod/video/templates/videos/video-info.html:159 -#: pod/video/templates/videos/video-info.html:160 -msgid "Share on" -msgstr "Partager sur" - #: pod/main/templates/aside.html:21 pod/main/templates/aside.html:27 -#: pod/recorder/models.py:188 pod/video/forms.py:134 pod/video/models.py:445 +#: pod/recorder/models.py:188 pod/video/forms.py:136 pod/video/models.py:445 #: pod/video/models.py:523 pod/video/templates/videos/filter_aside.html:56 msgid "Disciplines" msgstr "Disciplines" #: pod/main/templates/aside.html:40 pod/recorder/models.py:184 -#: pod/video/forms.py:130 pod/video/models.py:519 +#: pod/video/forms.py:132 pod/video/models.py:519 #: pod/video/templates/videos/filter_aside.html:78 #: pod/video_search/templates/search/search.html:89 msgid "Tags" @@ -2866,10 +3157,6 @@ msgstr "Mots clés" msgid "Breadcrumb" msgstr "Fil d’Ariane" -#: pod/main/templates/base.html:71 -msgid "Home" -msgstr "Accueil" - #: pod/main/templates/base.html:76 msgid "Toggle side Menu" msgstr "Afficher/masquer le menu latéral" @@ -2909,22 +3196,6 @@ msgstr "" msgid "Esup Portal" msgstr "ESUP-Portail" -#: pod/main/templates/footer.html:30 -msgid "Pod Project" -msgstr "Projet Pod" - -#: pod/main/templates/footer.html:34 pod/video/feeds.py:107 -msgid "video platform of" -msgstr "plateforme vidéos de" - -#: pod/main/templates/footer.html:34 -msgid "Release" -msgstr "Version" - -#: pod/main/templates/footer.html:34 -msgid "videos availables" -msgstr "vidéos disponibles" - #: pod/main/templates/mail/mail.html:2 pod/main/templates/mail/mail.txt:2 #: pod/main/templates/mail/mail_sender.html:2 #: pod/main/templates/mail/mail_sender.txt:2 @@ -2969,63 +3240,10 @@ msgstr "Vous venez d'envoyer un message depuis" msgid "Return to homepage" msgstr "Revenir à la page d'accueil" -#: pod/main/templates/navbar.html:17 pod/recorder/models.py:194 -#: pod/video/forms.py:170 pod/video/models.py:261 pod/video/models.py:529 -msgid "Channels" -msgstr "Chaînes" - -#: pod/main/templates/navbar.html:27 pod/video/models.py:419 -#: pod/video/templates/videos/filter_aside.html:34 -msgid "Types" -msgstr "Types" - -#: pod/main/templates/navbar.html:53 pod/main/templates/navbar.html:55 -#: pod/main/templates/navbar_collapse.html:85 -#: pod/main/templates/navbar_collapse.html:86 -#: pod/video/templates/videos/filter_aside.html:15 -#: pod/video/templates/videos/filter_aside_category.html:24 -#: pod/video_search/forms.py:8 pod/video_search/templates/search/search.html:8 -#: pod/video_search/templates/search/search.html:17 -#: pod/video_search/templates/search/search.html:38 -msgid "Search" -msgstr "Rechercher" - #: pod/main/templates/navbar.html:60 msgid "Some features are unavailable" msgstr "Certaines fonctionnalités sont indisponibles" -#: pod/main/templates/navbar.html:63 pod/main/templates/navbar.html:65 -msgid "Add a video" -msgstr "Ajouter une vidéo" - -#: pod/main/templates/navbar.html:91 -msgid "Add your picture" -msgstr "Ajouter votre image de profil" - -#: pod/main/templates/navbar.html:96 -#: pod/video/templates/channel/channel_edit.html:17 -#: pod/video/templates/channel/my_channels.html:6 -#: pod/video/templates/channel/my_channels.html:9 -#: pod/video/templates/channel/theme_edit.html:18 -msgid "My channels" -msgstr "Mes chaînes" - -#: pod/main/templates/navbar.html:100 pod/podfile/templates/podfile/home.html:6 -#: pod/podfile/templates/podfile/home.html:10 -msgid "My files" -msgstr "Mes fichiers" - -#: pod/main/templates/navbar.html:103 -#: pod/recorder/templates/recorder/claim_record.html:11 -#: pod/recorder/templates/recorder/record_delete.html:8 -#: pod/recorder/templates/recorder/record_delete.html:20 -msgid "Claim a record" -msgstr "Revendiquer un enregistrement" - -#: pod/main/templates/navbar.html:110 pod/main/templates/navbar.html:111 -msgid "Log out" -msgstr "Déconnexion" - #: pod/main/templates/navbar_collapse.html:8 #, python-format msgid "%(counter)s Channel" @@ -3255,7 +3473,7 @@ msgstr "La vidéo a été ajoutée à votre liste de lecture." msgid "This playlist has been deleted." msgstr "Cette liste de lecture a été supprimée." -#: pod/podfile/forms.py:49 pod/video/forms.py:262 +#: pod/podfile/forms.py:49 pod/video/forms.py:264 #, python-format msgid "" "The current file %(size)s, which is too large. The maximum file size is " @@ -3330,7 +3548,7 @@ msgid "Enter new name of folder" msgstr "Indiquer un nouveau nom à ce dossier" #: pod/podfile/templates/podfile/home_content.html:53 -#: pod/podfile/templates/podfile/list_folder_files.html:80 +#: pod/podfile/templates/podfile/list_folder_files.html:189 #: pod/video/templates/videos/video_edit.html:119 msgid "Loading" msgstr "Chargement" @@ -3351,40 +3569,36 @@ msgstr "Nom d'utilisateur" msgid "Enter new username" msgstr "Entrer un nom d'utilsateur" -#: pod/podfile/templates/podfile/list_folder_files.html:10 -msgid "file" -msgstr "fichier" - -#: pod/podfile/templates/podfile/list_folder_files.html:27 +#: pod/podfile/templates/podfile/list_folder_files.html:78 msgid "Rename" msgstr "Renomer" -#: pod/podfile/templates/podfile/list_folder_files.html:50 +#: pod/podfile/templates/podfile/list_folder_files.html:134 msgid "Share this folder" msgstr "Partager ce dossier" -#: pod/podfile/templates/podfile/list_folder_files.html:68 +#: pod/podfile/templates/podfile/list_folder_files.html:179 msgid "Upload Files" msgstr "Téléverser des fichiers" -#: pod/podfile/templates/podfile/list_folder_files.html:117 +#: pod/podfile/templates/podfile/list_folder_files.html:273 msgid "Download" msgstr "Télécharger" -#: pod/podfile/templates/podfile/userfolder.html:7 +#: pod/podfile/templates/podfile/userfolder.html:25 msgid "My folders" msgstr "Mes dossiers" -#: pod/podfile/templates/podfile/userfolder.html:12 -#: pod/podfile/templates/podfile/userfolder.html:13 +#: pod/podfile/templates/podfile/userfolder.html:49 +#: pod/podfile/templates/podfile/userfolder.html:50 msgid "Add new folder" msgstr "Ajouter un nouveau dossier" -#: pod/podfile/templates/podfile/userfolder.html:20 +#: pod/podfile/templates/podfile/userfolder.html:70 msgid "Filter files" msgstr "Filtrer les fichiers" -#: pod/podfile/templates/podfile/userfolder.html:21 +#: pod/podfile/templates/podfile/userfolder.html:91 msgid "" "SuperUser mode : the folders of all users are listed (the owner is noted in " "brackets)" @@ -3392,49 +3606,49 @@ msgstr "" "Mode SuperUtilisateur : les dossiers de tout les utilisateurs vous sont " "listés (le propriétaire est noté entre parenthèse)" -#: pod/podfile/templates/podfile/userfolder.html:31 +#: pod/podfile/templates/podfile/userfolder.html:114 msgid "Shared folders" msgstr "Dossiers partagés" -#: pod/podfile/views.py:143 pod/podfile/views.py:552 +#: pod/podfile/views.py:145 pod/podfile/views.py:554 msgid "You cannot see this folder." msgstr "Vous ne pouvez pas voir ce dossier." -#: pod/podfile/views.py:217 +#: pod/podfile/views.py:219 msgid "You cannot edit this folder." msgstr "Vous ne pouvez pas éditer ce dossier." -#: pod/podfile/views.py:232 +#: pod/podfile/views.py:234 msgid "Two folders cannot have the same name." msgstr "Deux dossiers ne peuvent pas avoir le même nom." -#: pod/podfile/views.py:265 +#: pod/podfile/views.py:267 msgid "You cannot delete home folder." msgstr "Vous ne pouvez pas supprimer le fichier racine." -#: pod/podfile/views.py:296 +#: pod/podfile/views.py:298 msgid "You cannot delete this file." msgstr "Vous ne pouvez pas supprimer ce fichier." -#: pod/podfile/views.py:333 +#: pod/podfile/views.py:335 msgid "You cannot edit file on this folder." msgstr "Vous ne pouvez pas éditer de fichier dans ce dossier." -#: pod/podfile/views.py:384 +#: pod/podfile/views.py:386 #, python-format msgid "The file %(fname)s has not allowed format" msgstr "Le format du fichier %(fname)s n’est pas autorisé" -#: pod/podfile/views.py:401 +#: pod/podfile/views.py:403 #, python-format msgid "The file %(fname)s is not valid (%(form_error)s)" msgstr "Le fichier %(fname)s n’est pas valide (%(form_error)s)" -#: pod/podfile/views.py:426 +#: pod/podfile/views.py:428 msgid "You cannot access this folder." msgstr "Vous ne pouvez pas voir ce dossier." -#: pod/podfile/views.py:438 +#: pod/podfile/views.py:440 msgid "You cannot edit this file." msgstr "Vous ne pouvez pas éditer ce fichier." @@ -3456,7 +3670,7 @@ msgstr "Supprimer cet enregistrement" msgid "If checked, record will be deleted instead of saving it" msgstr "Si coché, l'enregistrement sera supprimé et non ajouté" -#: pod/recorder/forms.py:74 pod/video/forms.py:716 +#: pod/recorder/forms.py:74 pod/video/forms.py:727 msgid "I agree" msgstr "J'accepte" @@ -3484,34 +3698,34 @@ msgstr "Doctorat" msgid "Other" msgstr "Autre" -#: pod/recorder/models.py:39 pod/video/forms.py:145 pod/video/models.py:78 +#: pod/recorder/models.py:39 pod/video/forms.py:147 pod/video/models.py:78 msgid "Attribution 4.0 International (CC BY 4.0)" msgstr "Attribution 4.0 International (CC BY 4.0)" -#: pod/recorder/models.py:40 pod/video/forms.py:148 pod/video/models.py:79 +#: pod/recorder/models.py:40 pod/video/forms.py:150 pod/video/models.py:79 msgid "Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)" msgstr "Attribution - Pas de Modification 4.0 International (CC BY-ND 4.0)" -#: pod/recorder/models.py:44 pod/video/forms.py:152 pod/video/models.py:83 +#: pod/recorder/models.py:44 pod/video/forms.py:154 pod/video/models.py:83 msgid "" "Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)" msgstr "" "Attribution - Pas d'Utilisation Commerciale - Pas de Modification 4.0 " "International (CC BY-NC-ND 4.0)" -#: pod/recorder/models.py:47 pod/video/forms.py:156 pod/video/models.py:86 +#: pod/recorder/models.py:47 pod/video/forms.py:158 pod/video/models.py:86 msgid "Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)" msgstr "" "Attribution - Pas d’Utilisation Commerciale 4.0 International (CC BY-NC 4.0)" -#: pod/recorder/models.py:50 pod/video/forms.py:161 pod/video/models.py:89 +#: pod/recorder/models.py:50 pod/video/forms.py:163 pod/video/models.py:89 msgid "" "Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)" msgstr "" "Attribution - Pas d’Utilisation Commerciale - Partage dans les Mêmes " "Conditions 4.0 International (CC BY-NC-SA 4.0)" -#: pod/recorder/models.py:54 pod/video/forms.py:167 pod/video/models.py:93 +#: pod/recorder/models.py:54 pod/video/forms.py:169 pod/video/models.py:93 msgid "Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)" msgstr "" "Attribution - Partage dans les Mêmes Conditions 4.0 International (CC BY-SA " @@ -3569,7 +3783,7 @@ msgstr "" msgid "Video type by default." msgstr "Type par défaut des vidéos." -#: pod/recorder/models.py:148 pod/video/forms.py:180 pod/video/models.py:544 +#: pod/recorder/models.py:148 pod/video/forms.py:182 pod/video/models.py:544 msgid "Draft" msgstr "Brouillon" @@ -3597,26 +3811,26 @@ msgstr "Sélectionner un ou plusieurs groupes qui auront accès à cette vidéo" msgid "Viewing this video will not be possible without this password." msgstr "Voir cette vidéo n'est pas possible sans mot de passe." -#: pod/recorder/models.py:169 pod/video/forms.py:120 pod/video/models.py:504 +#: pod/recorder/models.py:169 pod/video/forms.py:122 pod/video/models.py:504 #: pod/video_search/templates/search/search.html:140 msgid "University course" msgstr "Cursus universitaire" -#: pod/recorder/models.py:171 pod/video/forms.py:121 pod/video/models.py:506 +#: pod/recorder/models.py:171 pod/video/forms.py:123 pod/video/models.py:506 msgid "Select an university course as audience target of the content." msgstr "" "Sélectionner un cursus universitaire qui convient à l'audience de ce contenu." -#: pod/recorder/models.py:174 pod/video/forms.py:127 pod/video/models.py:509 +#: pod/recorder/models.py:174 pod/video/forms.py:129 pod/video/models.py:509 #: pod/video_search/templates/search/search.html:127 msgid "Main language" msgstr "Langue principale" -#: pod/recorder/models.py:176 pod/video/forms.py:128 pod/video/models.py:511 +#: pod/recorder/models.py:176 pod/video/forms.py:130 pod/video/models.py:511 msgid "Select the main language used in the content." msgstr "Sélectionner la langue principalement utilisée dans ce contenu." -#: pod/recorder/models.py:178 pod/video/forms.py:199 pod/video/models.py:513 +#: pod/recorder/models.py:178 pod/video/forms.py:201 pod/video/models.py:513 #: pod/video/templates/videos/add_video.html:52 #: pod/video/templates/videos/add_video.html:98 msgid "Transcript" @@ -3637,16 +3851,16 @@ msgstr "" "Séparer les mots clés par des espaces, écrire les mots clés en plusieurs " "mots entre guillemets." -#: pod/recorder/models.py:190 pod/video/forms.py:141 pod/video/models.py:525 +#: pod/recorder/models.py:190 pod/video/forms.py:143 pod/video/models.py:525 msgid "Licence" msgstr "Licence" -#: pod/recorder/models.py:198 pod/video/forms.py:170 pod/video/models.py:392 +#: pod/recorder/models.py:198 pod/video/forms.py:172 pod/video/models.py:392 #: pod/video/models.py:533 msgid "Themes" msgstr "Thèmes" -#: pod/recorder/models.py:200 pod/video/forms.py:138 pod/video/forms.py:174 +#: pod/recorder/models.py:200 pod/video/forms.py:140 pod/video/forms.py:176 #: pod/video/models.py:535 pod/video/models.py:1534 msgid "" "Hold down \"Control\", or \"Command\" on a Mac, to select more than one." @@ -3923,30 +4137,30 @@ msgstr "(Ré)encoder la sélection" msgid "Transcript selected" msgstr "Transcription selectionnée" -#: pod/video/admin.py:268 pod/video/forms.py:234 pod/video/forms.py:585 -#: pod/video/forms.py:587 pod/video/models.py:245 +#: pod/video/admin.py:268 pod/video/forms.py:236 pod/video/forms.py:596 +#: pod/video/forms.py:598 pod/video/models.py:245 msgid "Owners" msgstr "Propriétaires" -#: pod/video/forms.py:87 +#: pod/video/forms.py:89 msgid "File field" msgstr "Fichier" -#: pod/video/forms.py:88 pod/video/models.py:458 +#: pod/video/forms.py:90 pod/video/models.py:458 #: pod/video/templates/videos/add_video.html:88 msgid "You can send an audio or video file." msgstr "Vous pouvez envoyer un fichier audio ou vidéo." -#: pod/video/forms.py:89 pod/video/views.py:1644 +#: pod/video/forms.py:91 pod/video/views.py:1644 #, python-format msgid "The following formats are supported: %s" msgstr "Les formats suivants sont supportés: %s" -#: pod/video/forms.py:92 pod/video/forms.py:219 pod/video/forms.py:245 +#: pod/video/forms.py:94 pod/video/forms.py:221 pod/video/forms.py:247 msgid "Title field" msgstr "Champ de titre" -#: pod/video/forms.py:93 pod/video/forms.py:220 pod/video/forms.py:246 +#: pod/video/forms.py:95 pod/video/forms.py:222 pod/video/forms.py:248 msgid "" "Please choose a title as short and accurate as possible, reflecting the main " "subject / context of the content." @@ -3954,14 +4168,14 @@ msgstr "" "Veuillez choisir un titre aussi court et précis que possible, symbolisant le " "sujet principal / contexte du contenu." -#: pod/video/forms.py:95 pod/video/forms.py:222 pod/video/forms.py:248 +#: pod/video/forms.py:97 pod/video/forms.py:224 pod/video/forms.py:250 msgid "" "You can use the “Description” field below for all additional information." msgstr "" "Vous pouvez utiliser le champ \"Description\" pour des informations " "supplémentaires." -#: pod/video/forms.py:97 +#: pod/video/forms.py:99 msgid "" "You may add contributors later using the second button of the content " "edition toolbar: they will appear in the “Info” tab at the bottom of the " @@ -3971,7 +4185,7 @@ msgstr "" "bouton de la barre d'outils du contenu: ils apparaissent dans la barre " "d'info en bas du lecteur audio / vidéo." -#: pod/video/forms.py:102 +#: pod/video/forms.py:104 msgid "" "Select the type of your content. If the type you wish does not appear in the " "list, please temporary select “Other” and contact us to explain your needs." @@ -3980,11 +4194,11 @@ msgstr "" "n’apparaît pas dans la liste, veuillez temporairement choisir \"Autres\" et " "contactez-nous pour expliquer vos besoins." -#: pod/video/forms.py:106 pod/video/models.py:487 +#: pod/video/forms.py:108 pod/video/models.py:487 msgid "Additional owners" msgstr "Propriétaires additionels" -#: pod/video/forms.py:107 +#: pod/video/forms.py:109 msgid "" "In this field you can select and add additional owners to the video. These " "additional owners will have the same rights as you except that they can't " @@ -3994,7 +4208,7 @@ msgstr "" "supplémentaires à la vidéo. Ces autres propriétaires auront les mêmes droits " "que vous sauf qu'ils ne peuvent pas supprimer cette vidéo." -#: pod/video/forms.py:112 pod/video/forms.py:226 pod/video/forms.py:252 +#: pod/video/forms.py:114 pod/video/forms.py:228 pod/video/forms.py:254 #: pod/video/models.py:230 pod/video/models.py:313 pod/video/models.py:497 msgid "" "In this field you can describe your content, add all needed related " @@ -4004,15 +4218,15 @@ msgstr "" "informations nécessaires, et mettre en forme le résultat en utilisant la " "barre d'outils." -#: pod/video/forms.py:116 +#: pod/video/forms.py:118 msgid "Date of the event field" msgstr "Date de l'évènement" -#: pod/video/forms.py:117 +#: pod/video/forms.py:119 msgid "Enter the date of the event, if applicable, in the AAAA-MM-JJ format." msgstr "Entrer la date de l’évènement, si possible, au format AAAA-MM-JJ." -#: pod/video/forms.py:123 +#: pod/video/forms.py:125 msgid "" "Choose “None / All” if it does not apply or if all are concerned, or “Other” " "for an audience outside the european LMD scheme." @@ -4020,14 +4234,14 @@ msgstr "" "Choisissez \"Aucun / Tous\" si ce n'est pas applicable ou si tous sont " "concernés, ou \"Autre\" pour une audience en dehors du schéma européen LMD." -#: pod/video/forms.py:131 +#: pod/video/forms.py:133 msgid "" "Please try to add only relevant keywords that can be useful to other users." msgstr "" "Veuiller essayer d'ajouter uniquement des mots clés pertinents qui pourront " "être utiles aux autres utilisateurs." -#: pod/video/forms.py:135 +#: pod/video/forms.py:137 msgid "" "Select the discipline to which your content belongs. If the discipline you " "wish does not appear in the list, please select nothing and contact us to " @@ -4037,17 +4251,17 @@ msgstr "" "discipline que vous désirez n’apparaît pas dans la liste, veuillez n'en " "sélectionner aucune et contactez nous pour expliquer vos besoins." -#: pod/video/forms.py:171 +#: pod/video/forms.py:173 msgid "Select the channel in which you want your content to appear." msgstr "Sélectionner la chaîne où vous voulez que votre contenu apparaisse." -#: pod/video/forms.py:172 +#: pod/video/forms.py:174 msgid "Themes related to this channel will appear in the “Themes” list below." msgstr "" "Les thèmes relatifs à cette chaîne apparaîtront dans la liste \"Thèmes\" ci-" "dessous." -#: pod/video/forms.py:176 +#: pod/video/forms.py:178 msgid "" "If the channel or Themes you wish does not appear in the list, please select " "nothing and contact us to explain your needs." @@ -4056,7 +4270,7 @@ msgstr "" "liste, veuillez ne rien sélectionner et contactez nous pour expliquer vos " "besoins." -#: pod/video/forms.py:181 +#: pod/video/forms.py:183 msgid "" "In “Draft mode”, the content shows nowhere and nobody else but you can see " "it." @@ -4064,7 +4278,7 @@ msgstr "" "En \"Mode brouillon\", le contenu n’apparaîtra nul part et uniquement vous " "pourrez le voir." -#: pod/video/forms.py:185 +#: pod/video/forms.py:187 msgid "" "If you don't select “Draft mode”, you can restrict the content access to " "only people who can log in" @@ -4072,7 +4286,7 @@ msgstr "" "Si vous ne sélectionnez pas le \"Mode brouillon\", vous pouvez restreindre " "son accès aux personnes authentifiées" -#: pod/video/forms.py:189 +#: pod/video/forms.py:191 msgid "" "If you don't select “Draft mode”, you can add a password which will be asked " "to anybody willing to watch your content." @@ -4080,7 +4294,7 @@ msgstr "" "Si vous ne sélectionnez par le \"Mode brouillon\", vous pouvez ajouter un " "mot de passe qui sera demandé aux utilisateurs souhaitant voir votre contenu." -#: pod/video/forms.py:192 +#: pod/video/forms.py:194 msgid "" "If your video is in a playlist the password of your video will be removed " "automatically." @@ -4088,7 +4302,7 @@ msgstr "" "Si votre vidéo est dans une liste de lecture vous ne pourrez pas lui ajouter " "de mot de passe." -#: pod/video/forms.py:200 pod/video/templates/videos/add_video.html:101 +#: pod/video/forms.py:202 pod/video/templates/videos/add_video.html:101 msgid "" "Available only in French and English, transcription is a speech recognition " "technology that transforms an oral speech into text in an automated way. By " @@ -4100,7 +4314,7 @@ msgstr "" "automatiquement. En cochant cette case, cela va générer un fichier de sous-" "titre durant l’encodage de la vidéo." -#: pod/video/forms.py:205 pod/video/templates/videos/add_video.html:102 +#: pod/video/forms.py:207 pod/video/templates/videos/add_video.html:102 msgid "" "You will probably have to modify this file using the captioning tool in the " "completion page to improve it." @@ -4108,20 +4322,20 @@ msgstr "" "Vous aurez probablement à améliorer ce fichier en utilisant l’outil de sous-" "titrage accessible sur la page de complétion de la video." -#: pod/video/forms.py:230 pod/video/models.py:242 +#: pod/video/forms.py:232 pod/video/models.py:242 msgid "Extra style" msgstr "Style supplémentaire" -#: pod/video/forms.py:230 pod/video/models.py:237 +#: pod/video/forms.py:232 pod/video/models.py:237 msgid "Background color" msgstr "Couleur d'arrière-plan" -#: pod/video/forms.py:231 +#: pod/video/forms.py:233 msgid "In this field you can add some style to personnalize your channel." msgstr "" "Dans ce champ vous pouvez ajouter des styles pour personnaliser votre chaîne." -#: pod/video/forms.py:235 +#: pod/video/forms.py:237 msgid "" "Owners can add videos to this channel and access this page to customize the " "channel." @@ -4129,33 +4343,33 @@ msgstr "" "Les propriétaires peuvent ajouter des vidéos dans cette chaîne et accéder à " "cette page pour la personnaliser." -#: pod/video/forms.py:237 +#: pod/video/forms.py:239 msgid "Users can only add videos to this channel" msgstr "Les utilisateurs peuvent uniquement ajouter des vidéos à cette chaîne" -#: pod/video/forms.py:393 +#: pod/video/forms.py:395 msgid "The date must be before or equal to " msgstr "La date doit être antérieure ou égale à " -#: pod/video/forms.py:412 +#: pod/video/forms.py:414 msgid "Owner of the video cannot be an additional owner too" msgstr "" "Le propriétaire de la video ne peut pas être propriétaire additionnel en " "même temps" -#: pod/video/forms.py:466 pod/video/templates/videos/add_video.html:85 +#: pod/video/forms.py:471 pod/video/templates/videos/add_video.html:85 msgid "File" msgstr "Fichier" -#: pod/video/forms.py:717 +#: pod/video/forms.py:728 msgid "Delete video cannot be undo" msgstr "La suppression est définitive" -#: pod/video/forms.py:784 +#: pod/video/forms.py:795 msgid "A note can't be empty" msgstr "Une note ne peut pas être vide" -#: pod/video/forms.py:806 +#: pod/video/forms.py:817 msgid "A comment can't be empty" msgstr "Un commentaire ne peut pas être vide" @@ -4639,14 +4853,14 @@ msgstr "Les utilisateurs peuvent uniquement ajouter des vidéos à cette chaîne #: pod/video/templates/channel/channel_edit.html:32 #: pod/video/templates/channel/channel_edit.html:33 #: pod/video/templates/channel/theme_edit.html:32 -#: pod/video/templates/videos/video.html:97 +#: pod/video/templates/videos/video.html:98 msgid "Edit the themes" msgstr "Editer les thèmes" #: pod/video/templates/channel/channel.html:76 #: pod/video/templates/channel/my_channels.html:20 #: pod/video/templates/channel/theme_edit.html:33 -#: pod/video/templates/videos/video.html:97 +#: pod/video/templates/videos/video.html:98 msgid "Edit the channel" msgstr "Éditer la chaîne" @@ -4986,187 +5200,23 @@ msgstr "Si vous n'avez pas le mot de passe pour ce contenu, veuillez" msgid "contact its owner" msgstr "contacter son propriétaire" -#: pod/video/templates/videos/video-info.html:10 -msgid "" -"This is a 360 degree video. To look around click and drag your mouse on the " -"video." -msgstr "" -"C'est une vidéo 360. Pour déplacer la vue, cliquer et faites glisser la " -"souris sur la vidéo." - -#: pod/video/templates/videos/video-info.html:15 -msgid "Tags:" -msgstr "Mots clés :" - -#: pod/video/templates/videos/video-info.html:24 -msgid "No information available" -msgstr "Aucune information disponible" - -#: pod/video/templates/videos/video-info.html:36 -msgid "Added by:" -msgstr "Ajouté par :" - -#: pod/video/templates/videos/video-info.html:46 -msgid "Additional owners:" -msgstr "Propriétaires additionels :" - -#: pod/video/templates/videos/video-info.html:59 -msgid "Contributors:" -msgstr "Contributeurs :" - -#: pod/video/templates/videos/video-info.html:63 -msgid "send an email" -msgstr "envoyer un courriel" - -#: pod/video/templates/videos/video-info.html:68 -msgid "contributor web link" -msgstr "lien du contributeur" - -#: pod/video/templates/videos/video-info.html:78 -msgid "Updated on:" -msgstr "Mis à jour le :" - -#: pod/video/templates/videos/video-info.html:79 -msgid "Duration:" -msgstr "Durée :" - -#: pod/video/templates/videos/video-info.html:80 -msgid "Channel:" -msgid_plural "Channels:" -msgstr[0] "Chaîne :" -msgstr[1] "Chaînes :" - -#: pod/video/templates/videos/video-info.html:81 -msgid "Number of view:" -msgstr "Nombre de vues :" - -#: pod/video/templates/videos/video-info.html:81 -msgid "Show details of view statistics" -msgstr "Afficher les details des statistiques de visualisation" - -#: pod/video/templates/videos/video-info.html:81 -msgid "Show details views" -msgstr "Afficher les details de visualisation" - -#: pod/video/templates/videos/video-info.html:84 -msgid "Type:" -msgstr "Type :" - -#: pod/video/templates/videos/video-info.html:85 -msgid "Main language:" -msgstr "Langue principale :" - -#: pod/video/templates/videos/video-info.html:87 -msgid "Audience:" -msgstr "Public :" - -#: pod/video/templates/videos/video-info.html:91 -msgid "Disciplines:" -msgstr "Disciplines :" - -#: pod/video/templates/videos/video-info.html:100 -msgid "Licence:" -msgstr "Licence :" - -#: pod/video/templates/videos/video-info.html:112 -msgid "Video file(s):" -msgstr "Fichiers vidéos :" - -#: pod/video/templates/videos/video-info.html:126 -msgid "Audio file:" -msgstr "Fichier audio :" - -#: pod/video/templates/videos/video-info.html:138 -msgid "Document:" -msgstr "Document :" - -#: pod/video/templates/videos/video-info.html:154 -#: pod/video/templates/videos/video_edit.html:161 -msgid "Embed/Share (Draft Mode)" -msgstr "Intégrer/Partager (Mode brouillon)" - -#: pod/video/templates/videos/video-info.html:157 -msgid "Social Networks" -msgstr "Réseaux sociaux" - -#: pod/video/templates/videos/video-info.html:167 -msgid "" -"Please note that your video is in draft mode.
The following links " -"contain a key allowing access. Anyone with this links can access it." -msgstr "" -"Veuillez noter que votre vidéo est en mode brouillon.
Les liens " -"suivants contiennent une clé permettant l’accès. Toute personne disposant de " -"ces liens peut y accéder." - -#: pod/video/templates/videos/video-info.html:173 -msgid "Options" -msgstr "Options" - -#: pod/video/templates/videos/video-info.html:176 -msgid "Autoplay" -msgstr "Lecture automatique" - -#: pod/video/templates/videos/video-info.html:177 -msgid "Check the box to autoplay the video." -msgstr "Cocher cette case pour lancer la lecture automatiquement." - -#: pod/video/templates/videos/video-info.html:182 -msgid "Loop" -msgstr "Boucle" - -#: pod/video/templates/videos/video-info.html:183 -msgid "Check the box to loop the video." -msgstr "Cocher cette case pour lire la vidéo en boucle." - -#: pod/video/templates/videos/video-info.html:189 -msgid "Start video" -msgstr "Début de la vidéo" - -#: pod/video/templates/videos/video-info.html:190 -msgid "Start at" -msgstr "Démarrer à" - -#: pod/video/templates/videos/video-info.html:193 -msgid "Check the box to indicate the beginning of playing desired." -msgstr "Cocher la case pour indiquer le début de lecture souhaité." - -#: pod/video/templates/videos/video-info.html:198 -msgid "Embed in a web page" -msgstr "Intégrer dans une page web" - -#: pod/video/templates/videos/video-info.html:200 -msgid "Copy the content of this text box and paste it in the page:" -msgstr "Copier le contenu de cette boite de texte et coller le sur la page :" - -#: pod/video/templates/videos/video-info.html:205 -msgid "Share the link" -msgstr "Partager le lien" - -#: pod/video/templates/videos/video-info.html:207 -msgid "Use this link to share the video:" -msgstr "Utiliser ce lien pour partager la vidéo :" - -#: pod/video/templates/videos/video-info.html:211 -msgid "QR code for this link:" -msgstr "QR code pour le lien :" - #: pod/video/templates/videos/video.html:24 #: pod/video/templates/videos/video.html:37 -#: pod/video/templates/videos/video.html:94 +#: pod/video/templates/videos/video.html:95 msgid "Added by" msgstr "Ajouté par" -#: pod/video/templates/videos/video.html:118 +#: pod/video/templates/videos/video.html:119 #: pod/video/templates/videos/video_edit.html:71 msgid "The video is currently waiting for encoding." msgstr "La vidéo est actuellement en attente d’encodage." -#: pod/video/templates/videos/video.html:130 +#: pod/video/templates/videos/video.html:131 #: pod/video/templates/videos/video_edit.html:83 msgid "The video is currently being transcripted." msgstr "La vidéo est en cours de transcription." -#: pod/video/templates/videos/video.html:158 +#: pod/video/templates/videos/video.html:159 msgid "" "This video is chaptered. Click the chapter button on the video player to view them." @@ -5576,5 +5626,11 @@ msgstr "facettage" msgid "Remove selection" msgstr "Retirer la sélection" +#~ msgid "Dutch (Netherlands)" +#~ msgstr "Néerlandais (Pays-Bas)" + +#~ msgid "file" +#~ msgstr "fichier" + #~ msgid "go to his web link" #~ msgstr "suivre son lien web" diff --git a/pod/locale/nl/LC_MESSAGES/django.po b/pod/locale/nl/LC_MESSAGES/django.po old mode 100644 new mode 100755 index cfeae98282..780ef51d86 --- a/pod/locale/nl/LC_MESSAGES/django.po +++ b/pod/locale/nl/LC_MESSAGES/django.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Pod\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-29 14:49+0000\n" +"POT-Creation-Date: 2021-02-18 09:38+0100\n" "PO-Revision-Date: 2021-01-22 12:27+0100\n" "Last-Translator: obado \n" "Language-Team: \n" @@ -26,10 +26,11 @@ msgid "Establishment" msgstr "" #: pod/authentication/forms.py:60 pod/authentication/forms.py:61 -#: pod/bbb/models.py:141 pod/main/templates/navbar.html:22 -#: pod/main/templates/navbar_collapse.html:76 pod/podfile/models.py:37 -#: pod/video/forms.py:234 pod/video/forms.py:578 pod/video/forms.py:582 -#: pod/video/models.py:248 pod/video/templates/videos/filter_aside.html:13 +#: pod/bbb/models.py:141 pod/custom/templates/navbar.html:22 +#: pod/main/templates/navbar.html:22 pod/main/templates/navbar_collapse.html:76 +#: pod/podfile/models.py:37 pod/video/forms.py:236 pod/video/forms.py:589 +#: pod/video/forms.py:593 pod/video/models.py:248 +#: pod/video/templates/videos/filter_aside.html:13 msgid "Users" msgstr "" @@ -114,7 +115,7 @@ msgstr "" #: pod/authentication/templates/registration/login.html:9 #: pod/authentication/templates/registration/login.html:12 #: pod/authentication/templates/registration/login.html:63 -#: pod/main/templates/navbar.html:117 +#: pod/custom/templates/navbar.html:111 pod/main/templates/navbar.html:117 msgid "Log in" msgstr "Inloggen" @@ -138,7 +139,7 @@ msgid "Forgotten your password or username?" msgstr "" #: pod/authentication/templates/userpicture/userpicture.html:7 -#: pod/main/templates/navbar.html:88 +#: pod/custom/templates/navbar.html:85 pod/main/templates/navbar.html:88 msgid "Change your picture" msgstr "" @@ -476,6 +477,8 @@ msgid "Chapter" msgstr "" #: pod/chapter/models.py:31 pod/chapter/templates/video_chapter.html:67 +#: pod/enrichment/templates/enrichment/video_enrichment-iframe.html:36 +#: pod/enrichment/templates/enrichment/video_enrichment.html:43 #: pod/video/templates/videos/video-element.html:38 msgid "Chapters" msgstr "" @@ -562,7 +565,7 @@ msgstr "" #: pod/completion/templates/track/list_track.html:23 #: pod/completion/templates/track/list_track.html:42 #: pod/enrichment/templates/enrichment/list_enrichment.html:30 -#: pod/podfile/templates/podfile/list_folder_files.html:106 +#: pod/podfile/templates/podfile/list_folder_files.html:251 #: pod/video/templates/channel/list_theme.html:27 msgid "Modify" msgstr "" @@ -574,8 +577,8 @@ msgstr "" #: pod/chapter/templates/chapter/list_chapter.html:32 #: pod/enrichment/templates/enrichment/list_enrichment.html:38 #: pod/playlist/templates/playlist.html:68 -#: pod/podfile/templates/podfile/list_folder_files.html:39 -#: pod/podfile/templates/podfile/list_folder_files.html:127 +#: pod/podfile/templates/podfile/list_folder_files.html:104 +#: pod/podfile/templates/podfile/list_folder_files.html:299 #: pod/recorder/templates/recorder/record_delete.html:9 #: pod/video/templates/channel/list_theme.html:35 #: pod/video/templates/videos/category_modal.html:66 @@ -591,6 +594,7 @@ msgstr "" #: pod/chapter/templates/video_chapter.html:16 #: pod/completion/templates/video_caption_maker.html:13 #: pod/completion/templates/video_completion.html:13 +#: pod/custom/templates/navbar.html:91 #: pod/enrichment/templates/enrichment/group_enrichment.html:10 #: pod/interactive/templates/interactive/group_interactive.html:10 #: pod/main/templates/navbar.html:94 @@ -628,7 +632,7 @@ msgstr "" #: pod/enrichment/templates/enrichment/group_enrichment.html:71 #: pod/interactive/templates/interactive/edit_interactive.html:128 #: pod/interactive/templates/interactive/group_interactive.html:71 -#: pod/video/templates/videos/video.html:250 +#: pod/video/templates/videos/video.html:251 #: pod/video/templates/videos/video_edit.html:143 msgid "Manage video" msgstr "" @@ -779,7 +783,7 @@ msgstr "" #: pod/completion/models.py:125 pod/completion/models.py:129 #: pod/completion/templates/document/list_document.html:10 #: pod/enrichment/models.py:147 -#: pod/enrichment/templates/enrichment/video_enrichment.html:126 +#: pod/enrichment/templates/enrichment/video_enrichment.html:142 #: pod/podfile/models.py:164 msgid "Document" msgstr "" @@ -1293,13 +1297,358 @@ msgid "The file has not been saved." msgstr "" #: pod/completion/views.py:237 pod/completion/views.py:413 -#: pod/completion/views.py:814 pod/podfile/views.py:468 -#: pod/podfile/views.py:518 pod/video/views.py:349 pod/video/views.py:1384 +#: pod/completion/views.py:814 pod/podfile/views.py:470 +#: pod/podfile/views.py:520 pod/video/views.py:349 pod/video/views.py:1384 msgid "Please correct errors" msgstr "" -#: pod/custom/settings_local.py:76 -msgid "Dutch (Netherlands)" +#: pod/custom/templates/base.html:71 pod/main/templates/base.html:71 +msgid "Home" +msgstr "" + +#: pod/custom/templates/footer.html:27 pod/main/templates/footer.html:30 +msgid "Pod Project" +msgstr "" + +#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 +#: pod/video/feeds.py:107 +msgid "video platform of" +msgstr "" + +#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 +msgid "Release" +msgstr "" + +#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 +msgid "videos availables" +msgstr "" + +#: pod/custom/templates/navbar.html:17 pod/main/templates/navbar.html:17 +#: pod/recorder/models.py:194 pod/video/forms.py:172 pod/video/models.py:261 +#: pod/video/models.py:529 +msgid "Channels" +msgstr "" + +#: pod/custom/templates/navbar.html:27 pod/main/templates/navbar.html:27 +#: pod/video/models.py:419 pod/video/templates/videos/filter_aside.html:34 +msgid "Types" +msgstr "" + +#: pod/custom/templates/navbar.html:32 pod/live/templates/live/building.html:11 +#: pod/live/templates/live/live.html:20 pod/live/templates/live/live.html:24 +#: pod/live/templates/live/lives.html:15 pod/live/templates/live/lives.html:18 +#: pod/live/templates/live/lives.html:21 pod/main/templates/navbar.html:32 +msgid "Lives" +msgstr "" + +#: pod/custom/templates/navbar.html:53 pod/custom/templates/navbar.html:55 +#: pod/main/templates/navbar.html:53 pod/main/templates/navbar.html:55 +#: pod/main/templates/navbar_collapse.html:85 +#: pod/main/templates/navbar_collapse.html:86 +#: pod/video/templates/videos/filter_aside.html:15 +#: pod/video/templates/videos/filter_aside_category.html:24 +#: pod/video_search/forms.py:8 pod/video_search/templates/search/search.html:8 +#: pod/video_search/templates/search/search.html:17 +#: pod/video_search/templates/search/search.html:38 +msgid "Search" +msgstr "" + +#: pod/custom/templates/navbar.html:60 pod/custom/templates/navbar.html:62 +#: pod/main/templates/navbar.html:63 pod/main/templates/navbar.html:65 +msgid "Add a video" +msgstr "" + +#: pod/custom/templates/navbar.html:88 pod/main/templates/navbar.html:91 +msgid "Add your picture" +msgstr "" + +#: pod/custom/templates/navbar.html:93 pod/main/templates/navbar.html:96 +#: pod/video/templates/channel/channel_edit.html:17 +#: pod/video/templates/channel/my_channels.html:6 +#: pod/video/templates/channel/my_channels.html:9 +#: pod/video/templates/channel/theme_edit.html:18 +msgid "My channels" +msgstr "" + +#: pod/custom/templates/navbar.html:95 +#: pod/enrichment/templates/enrichment/video_enrichment.html:106 +#: pod/interactive/templates/interactive/video_interactive.html:101 +#: pod/main/templates/navbar.html:98 +#: pod/playlist/templates/my_playlists.html:10 +#: pod/playlist/templates/my_playlists.html:17 +#: pod/playlist/templates/playlist.html:14 +#: pod/video/templates/videos/video.html:218 +msgid "My playlists" +msgstr "" + +#: pod/custom/templates/navbar.html:97 pod/main/templates/navbar.html:100 +#: pod/podfile/templates/podfile/home.html:6 +#: pod/podfile/templates/podfile/home.html:10 +msgid "My files" +msgstr "" + +#: pod/custom/templates/navbar.html:100 pod/main/templates/navbar.html:103 +#: pod/recorder/templates/recorder/claim_record.html:11 +#: pod/recorder/templates/recorder/record_delete.html:8 +#: pod/recorder/templates/recorder/record_delete.html:20 +msgid "Claim a record" +msgstr "" + +#: pod/custom/templates/navbar.html:104 pod/custom/templates/navbar.html:105 +#: pod/main/templates/navbar.html:110 pod/main/templates/navbar.html:111 +msgid "Log out" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:9 +#: pod/enrichment/templates/enrichment/video_enrichment.html:69 +#: pod/enrichment/templates/enrichment/video_enrichment.html:70 +#: pod/interactive/templates/interactive/video_interactive.html:56 +#: pod/interactive/templates/interactive/video_interactive.html:57 +#: pod/video/templates/videos/video-info.html:9 +#: pod/video/templates/videos/video.html:168 +#: pod/video/templates/videos/video.html:169 +msgid "Summary" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:10 +#: pod/video/templates/videos/video-info.html:10 +msgid "" +"This is a 360 degree video. To look around click and drag your mouse on the " +"video." +msgstr "" + +#: pod/custom/templates/videos/video-info.html:15 +#: pod/video/templates/videos/video-info.html:15 +msgid "Tags:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:24 +#: pod/video/templates/videos/video-info.html:24 +msgid "No information available" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:33 +#: pod/enrichment/templates/enrichment/video_enrichment.html:74 +#: pod/enrichment/templates/enrichment/video_enrichment.html:75 +#: pod/interactive/templates/interactive/video_interactive.html:61 +#: pod/interactive/templates/interactive/video_interactive.html:62 +#: pod/video/templates/videos/video-info.html:33 +#: pod/video/templates/videos/video.html:175 +#: pod/video/templates/videos/video.html:177 +#: pod/video/templates/videos/video.html:179 +msgid "Infos" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:36 +#: pod/video/templates/videos/video-info.html:36 +msgid "Added by:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:46 +#: pod/video/templates/videos/video-info.html:46 +msgid "Additional owners:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:59 +#: pod/video/templates/videos/video-info.html:59 +msgid "Contributors:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:63 +#: pod/video/templates/videos/video-info.html:63 +msgid "send an email" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:68 +#: pod/video/templates/videos/video-info.html:68 +msgid "contributor web link" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:78 +#: pod/video/templates/videos/video-info.html:78 +msgid "Updated on:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:79 +#: pod/video/templates/videos/video-info.html:79 +msgid "Duration:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:82 +msgid "Channel:" +msgid_plural " Channels:" +msgstr[0] "" +msgstr[1] "" + +#: pod/custom/templates/videos/video-info.html:83 +#: pod/video/templates/videos/video-info.html:80 +msgid "Number of view:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:83 +#: pod/video/templates/videos/video-info.html:80 +msgid "Show details of view statistics" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:83 +#: pod/video/templates/videos/video-info.html:80 +msgid "Show details views" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:87 +#: pod/video/templates/videos/video-info.html:84 +msgid "Type:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:88 +#: pod/video/templates/videos/video-info.html:85 +msgid "Main language:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:90 +#: pod/video/templates/videos/video-info.html:87 +msgid "Audience:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:94 +#: pod/video/templates/videos/video-info.html:91 +msgid "Disciplines:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:103 +#: pod/video/templates/videos/video-info.html:100 +msgid "Licence:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:111 +#: pod/enrichment/templates/enrichment/video_enrichment.html:80 +#: pod/enrichment/templates/enrichment/video_enrichment.html:81 +#: pod/interactive/templates/interactive/video_interactive.html:67 +#: pod/interactive/templates/interactive/video_interactive.html:68 +#: pod/video/templates/videos/video-info.html:108 +#: pod/video/templates/videos/video.html:184 +#: pod/video/templates/videos/video.html:185 +msgid "Downloads" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:115 +#: pod/video/templates/videos/video-info.html:112 +msgid "Video file(s):" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:129 +#: pod/video/templates/videos/video-info.html:126 +msgid "Audio file:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:141 +#: pod/video/templates/videos/video-info.html:138 +msgid "Document:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:157 +#: pod/video/templates/videos/video-info.html:154 +#: pod/video/templates/videos/video_edit.html:161 +msgid "Embed/Share (Draft Mode)" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:157 +#: pod/enrichment/templates/enrichment/video_enrichment.html:86 +#: pod/enrichment/templates/enrichment/video_enrichment.html:87 +#: pod/interactive/templates/interactive/video_interactive.html:73 +#: pod/interactive/templates/interactive/video_interactive.html:74 +#: pod/video/templates/videos/video-info.html:154 +#: pod/video/templates/videos/video.html:191 +#: pod/video/templates/videos/video.html:192 +msgid "Embed/Share" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:160 +#: pod/video/templates/videos/video-info.html:157 +msgid "Social Networks" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:161 +#: pod/custom/templates/videos/video-info.html:162 +#: pod/custom/templates/videos/video-info.html:163 +#: pod/main/templates/aside.html:11 pod/main/templates/aside.html:12 +#: pod/main/templates/aside.html:13 +#: pod/video/templates/videos/video-info.html:158 +#: pod/video/templates/videos/video-info.html:159 +#: pod/video/templates/videos/video-info.html:160 +msgid "Share on" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:170 +#: pod/video/templates/videos/video-info.html:167 +msgid "" +"Please note that your video is in draft mode.
The following links " +"contain a key allowing access. Anyone with this links can access it." +msgstr "" + +#: pod/custom/templates/videos/video-info.html:176 +#: pod/video/templates/videos/video-info.html:173 +msgid "Options" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:179 +#: pod/video/templates/videos/video-info.html:176 +msgid "Autoplay" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:180 +#: pod/video/templates/videos/video-info.html:177 +msgid "Check the box to autoplay the video." +msgstr "" + +#: pod/custom/templates/videos/video-info.html:185 +#: pod/video/templates/videos/video-info.html:182 +msgid "Loop" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:186 +#: pod/video/templates/videos/video-info.html:183 +msgid "Check the box to loop the video." +msgstr "" + +#: pod/custom/templates/videos/video-info.html:192 +#: pod/video/templates/videos/video-info.html:189 +msgid "Start video" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:193 +#: pod/video/templates/videos/video-info.html:190 +msgid "Start at" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:196 +#: pod/video/templates/videos/video-info.html:193 +msgid "Check the box to indicate the beginning of playing desired." +msgstr "" + +#: pod/custom/templates/videos/video-info.html:201 +#: pod/video/templates/videos/video-info.html:198 +msgid "Embed in a web page" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:203 +#: pod/video/templates/videos/video-info.html:200 +msgid "Copy the content of this text box and paste it in the page:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:208 +#: pod/video/templates/videos/video-info.html:205 +msgid "Share the link" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:210 +#: pod/video/templates/videos/video-info.html:207 +msgid "Use this link to share the video:" +msgstr "" + +#: pod/custom/templates/videos/video-info.html:214 +#: pod/video/templates/videos/video-info.html:211 +msgid "QR code for this link:" msgstr "" #: pod/enrichment/apps.py:7 @@ -1364,13 +1713,13 @@ msgstr "" #: pod/enrichment/models.py:137 #: pod/enrichment/templates/enrichment/list_enrichment.html:11 -#: pod/video/forms.py:101 pod/video/models.py:418 pod/video/models.py:473 +#: pod/video/forms.py:103 pod/video/models.py:418 pod/video/models.py:473 #: pod/video/views.py:1332 pod/video_search/templates/search/search.html:77 msgid "Type" msgstr "" #: pod/enrichment/models.py:144 -#: pod/enrichment/templates/enrichment/video_enrichment.html:125 +#: pod/enrichment/templates/enrichment/video_enrichment.html:141 #: pod/main/models.py:42 pod/main/models.py:73 pod/podfile/models.py:200 msgid "Image" msgstr "" @@ -1380,12 +1729,12 @@ msgid "Integrate an document (PDF, text, html)" msgstr "" #: pod/enrichment/models.py:151 -#: pod/enrichment/templates/enrichment/video_enrichment.html:127 +#: pod/enrichment/templates/enrichment/video_enrichment.html:143 msgid "Richtext" msgstr "" #: pod/enrichment/models.py:155 -#: pod/enrichment/templates/enrichment/video_enrichment.html:129 +#: pod/enrichment/templates/enrichment/video_enrichment.html:145 msgid "Embed" msgstr "" @@ -1476,7 +1825,7 @@ msgid "See the enrich video" msgstr "" #: pod/enrichment/templates/enrichment/edit_enrichment.html:81 -#: pod/enrichment/templates/enrichment/video_enrichment.html:119 +#: pod/enrichment/templates/enrichment/video_enrichment.html:135 #: pod/interactive/templates/interactive/edit_interactive.html:113 msgid "Informations" msgstr "" @@ -1518,7 +1867,7 @@ msgstr "" #: pod/enrichment/templates/enrichment/group_enrichment.html:34 #: pod/interactive/templates/interactive/group_interactive.html:34 -#: pod/video/templates/videos/video.html:124 +#: pod/video/templates/videos/video.html:125 #: pod/video/templates/videos/video_edit.html:77 msgid "The video is currently being encoded." msgstr "" @@ -1536,99 +1885,48 @@ msgid "Delete the enrichment" msgstr "" #: pod/enrichment/templates/enrichment/video_enrichment-iframe.html:11 -#: pod/enrichment/templates/enrichment/video_enrichment.html:15 -msgid "Enriched" -msgstr "" - -#: pod/enrichment/templates/enrichment/video_enrichment.html:44 -#: pod/interactive/templates/interactive/video_interactive.html:47 -#: pod/video/templates/videos/video.html:152 -msgid "Report the video" -msgstr "" - -#: pod/enrichment/templates/enrichment/video_enrichment.html:53 -#: pod/enrichment/templates/enrichment/video_enrichment.html:54 -#: pod/interactive/templates/interactive/video_interactive.html:56 -#: pod/interactive/templates/interactive/video_interactive.html:57 -#: pod/video/templates/videos/video-info.html:9 -#: pod/video/templates/videos/video.html:167 -#: pod/video/templates/videos/video.html:168 -msgid "Summary" -msgstr "" - -#: pod/enrichment/templates/enrichment/video_enrichment.html:58 -#: pod/enrichment/templates/enrichment/video_enrichment.html:59 -#: pod/interactive/templates/interactive/video_interactive.html:61 -#: pod/interactive/templates/interactive/video_interactive.html:62 -#: pod/video/templates/videos/video-info.html:33 -#: pod/video/templates/videos/video.html:174 -#: pod/video/templates/videos/video.html:176 -#: pod/video/templates/videos/video.html:178 -msgid "Infos" -msgstr "" - -#: pod/enrichment/templates/enrichment/video_enrichment.html:64 -#: pod/enrichment/templates/enrichment/video_enrichment.html:65 -#: pod/interactive/templates/interactive/video_interactive.html:67 -#: pod/interactive/templates/interactive/video_interactive.html:68 -#: pod/video/templates/videos/video-info.html:108 -#: pod/video/templates/videos/video.html:183 -#: pod/video/templates/videos/video.html:184 -msgid "Downloads" +#: pod/enrichment/templates/enrichment/video_enrichment.html:14 +msgid "Enriched" msgstr "" -#: pod/enrichment/templates/enrichment/video_enrichment.html:70 -#: pod/enrichment/templates/enrichment/video_enrichment.html:71 -#: pod/interactive/templates/interactive/video_interactive.html:73 -#: pod/interactive/templates/interactive/video_interactive.html:74 -#: pod/video/templates/videos/video-info.html:154 -#: pod/video/templates/videos/video.html:190 -#: pod/video/templates/videos/video.html:191 -msgid "Embed/Share" +#: pod/enrichment/templates/enrichment/video_enrichment.html:60 +#: pod/interactive/templates/interactive/video_interactive.html:47 +#: pod/video/templates/videos/video.html:153 +msgid "Report the video" msgstr "" -#: pod/enrichment/templates/enrichment/video_enrichment.html:76 -#: pod/enrichment/templates/enrichment/video_enrichment.html:77 +#: pod/enrichment/templates/enrichment/video_enrichment.html:92 +#: pod/enrichment/templates/enrichment/video_enrichment.html:93 #: pod/interactive/templates/interactive/video_interactive.html:85 #: pod/interactive/templates/interactive/video_interactive.html:86 -#: pod/video/templates/videos/video.html:198 #: pod/video/templates/videos/video.html:199 +#: pod/video/templates/videos/video.html:200 msgid "Other versions" msgstr "" -#: pod/enrichment/templates/enrichment/video_enrichment.html:81 -#: pod/enrichment/templates/enrichment/video_enrichment.html:83 +#: pod/enrichment/templates/enrichment/video_enrichment.html:97 +#: pod/enrichment/templates/enrichment/video_enrichment.html:99 #: pod/interactive/templates/interactive/video_interactive.html:90 #: pod/interactive/templates/interactive/video_interactive.html:92 #: pod/video/templates/videos/link_video.html:35 msgid "Original version" msgstr "" -#: pod/enrichment/templates/enrichment/video_enrichment.html:89 +#: pod/enrichment/templates/enrichment/video_enrichment.html:105 #: pod/interactive/templates/interactive/video_interactive.html:100 -#: pod/video/templates/videos/video.html:216 -msgid "Add the video to a playlist" -msgstr "" - -#: pod/enrichment/templates/enrichment/video_enrichment.html:90 -#: pod/interactive/templates/interactive/video_interactive.html:101 -#: pod/main/templates/navbar.html:98 -#: pod/playlist/templates/my_playlists.html:10 -#: pod/playlist/templates/my_playlists.html:17 -#: pod/playlist/templates/playlist.html:14 #: pod/video/templates/videos/video.html:217 -msgid "My playlists" +msgid "Add the video to a playlist" msgstr "" -#: pod/enrichment/templates/enrichment/video_enrichment.html:122 +#: pod/enrichment/templates/enrichment/video_enrichment.html:138 msgid "To help you, the different types of enrichments have specific colors" msgstr "" -#: pod/enrichment/templates/enrichment/video_enrichment.html:128 +#: pod/enrichment/templates/enrichment/video_enrichment.html:144 msgid "Weblink" msgstr "" -#: pod/enrichment/templates/enrichment/video_enrichment.html:132 +#: pod/enrichment/templates/enrichment/video_enrichment.html:148 msgid "They are visible on the video playback bar." msgstr "" @@ -1786,7 +2084,7 @@ msgstr "" msgid "You cannot add interactivity to this video." msgstr "" -#: pod/live/forms.py:51 pod/video/forms.py:188 pod/video/forms.py:706 +#: pod/live/forms.py:51 pod/video/forms.py:190 pod/video/forms.py:717 msgid "Password" msgstr "" @@ -1799,8 +2097,8 @@ msgstr "" #: pod/video/templates/channel/channel.html:79 #: pod/video/templates/channel/channel.html:90 #: pod/video/templates/channel/channel_edit.html:38 -#: pod/video/templates/videos/video.html:99 -#: pod/video/templates/videos/video.html:108 +#: pod/video/templates/videos/video.html:100 +#: pod/video/templates/videos/video.html:109 msgid "Headband" msgstr "" @@ -1865,7 +2163,7 @@ msgstr "" msgid "Enable viewers count on live." msgstr "" -#: pod/live/models.py:102 pod/recorder/models.py:155 pod/video/forms.py:184 +#: pod/live/models.py:102 pod/recorder/models.py:155 pod/video/forms.py:186 #: pod/video/models.py:551 msgid "Restricted access" msgstr "" @@ -1922,13 +2220,6 @@ msgstr "" msgid "Heartbeats" msgstr "" -#: pod/live/templates/live/building.html:11 -#: pod/live/templates/live/live.html:20 pod/live/templates/live/live.html:24 -#: pod/live/templates/live/lives.html:15 pod/live/templates/live/lives.html:18 -#: pod/live/templates/live/lives.html:21 pod/main/templates/navbar.html:32 -msgid "Lives" -msgstr "" - #: pod/live/templates/live/building.html:39 #: pod/live/templates/live/live.html:104 pod/live/templates/live/lives.html:37 msgid "Sorry, no lives found" @@ -2050,7 +2341,7 @@ msgid "Please choose a subjects related your request" msgstr "" #: pod/main/forms.py:60 pod/main/models.py:142 pod/playlist/models.py:22 -#: pod/video/forms.py:111 pod/video/forms.py:225 pod/video/forms.py:251 +#: pod/video/forms.py:113 pod/video/forms.py:227 pod/video/forms.py:253 #: pod/video/models.py:228 pod/video/models.py:312 pod/video/models.py:494 msgid "Description" msgstr "" @@ -2744,22 +3035,14 @@ msgstr "" msgid "Share" msgstr "" -#: pod/main/templates/aside.html:11 pod/main/templates/aside.html:12 -#: pod/main/templates/aside.html:13 -#: pod/video/templates/videos/video-info.html:158 -#: pod/video/templates/videos/video-info.html:159 -#: pod/video/templates/videos/video-info.html:160 -msgid "Share on" -msgstr "" - #: pod/main/templates/aside.html:21 pod/main/templates/aside.html:27 -#: pod/recorder/models.py:188 pod/video/forms.py:134 pod/video/models.py:445 +#: pod/recorder/models.py:188 pod/video/forms.py:136 pod/video/models.py:445 #: pod/video/models.py:523 pod/video/templates/videos/filter_aside.html:56 msgid "Disciplines" msgstr "" #: pod/main/templates/aside.html:40 pod/recorder/models.py:184 -#: pod/video/forms.py:130 pod/video/models.py:519 +#: pod/video/forms.py:132 pod/video/models.py:519 #: pod/video/templates/videos/filter_aside.html:78 #: pod/video_search/templates/search/search.html:89 msgid "Tags" @@ -2769,10 +3052,6 @@ msgstr "" msgid "Breadcrumb" msgstr "" -#: pod/main/templates/base.html:71 -msgid "Home" -msgstr "" - #: pod/main/templates/base.html:76 msgid "Toggle side Menu" msgstr "" @@ -2810,22 +3089,6 @@ msgstr "" msgid "Esup Portal" msgstr "" -#: pod/main/templates/footer.html:30 -msgid "Pod Project" -msgstr "" - -#: pod/main/templates/footer.html:34 pod/video/feeds.py:107 -msgid "video platform of" -msgstr "" - -#: pod/main/templates/footer.html:34 -msgid "Release" -msgstr "" - -#: pod/main/templates/footer.html:34 -msgid "videos availables" -msgstr "" - #: pod/main/templates/mail/mail.html:2 pod/main/templates/mail/mail.txt:2 #: pod/main/templates/mail/mail_sender.html:2 #: pod/main/templates/mail/mail_sender.txt:2 @@ -2870,63 +3133,10 @@ msgstr "" msgid "Return to homepage" msgstr "" -#: pod/main/templates/navbar.html:17 pod/recorder/models.py:194 -#: pod/video/forms.py:170 pod/video/models.py:261 pod/video/models.py:529 -msgid "Channels" -msgstr "" - -#: pod/main/templates/navbar.html:27 pod/video/models.py:419 -#: pod/video/templates/videos/filter_aside.html:34 -msgid "Types" -msgstr "" - -#: pod/main/templates/navbar.html:53 pod/main/templates/navbar.html:55 -#: pod/main/templates/navbar_collapse.html:85 -#: pod/main/templates/navbar_collapse.html:86 -#: pod/video/templates/videos/filter_aside.html:15 -#: pod/video/templates/videos/filter_aside_category.html:24 -#: pod/video_search/forms.py:8 pod/video_search/templates/search/search.html:8 -#: pod/video_search/templates/search/search.html:17 -#: pod/video_search/templates/search/search.html:38 -msgid "Search" -msgstr "" - #: pod/main/templates/navbar.html:60 msgid "Some features are unavailable" msgstr "" -#: pod/main/templates/navbar.html:63 pod/main/templates/navbar.html:65 -msgid "Add a video" -msgstr "" - -#: pod/main/templates/navbar.html:91 -msgid "Add your picture" -msgstr "" - -#: pod/main/templates/navbar.html:96 -#: pod/video/templates/channel/channel_edit.html:17 -#: pod/video/templates/channel/my_channels.html:6 -#: pod/video/templates/channel/my_channels.html:9 -#: pod/video/templates/channel/theme_edit.html:18 -msgid "My channels" -msgstr "" - -#: pod/main/templates/navbar.html:100 pod/podfile/templates/podfile/home.html:6 -#: pod/podfile/templates/podfile/home.html:10 -msgid "My files" -msgstr "" - -#: pod/main/templates/navbar.html:103 -#: pod/recorder/templates/recorder/claim_record.html:11 -#: pod/recorder/templates/recorder/record_delete.html:8 -#: pod/recorder/templates/recorder/record_delete.html:20 -msgid "Claim a record" -msgstr "" - -#: pod/main/templates/navbar.html:110 pod/main/templates/navbar.html:111 -msgid "Log out" -msgstr "" - #: pod/main/templates/navbar_collapse.html:8 #, python-format msgid "%(counter)s Channel" @@ -3148,7 +3358,7 @@ msgstr "" msgid "This playlist has been deleted." msgstr "" -#: pod/podfile/forms.py:49 pod/video/forms.py:262 +#: pod/podfile/forms.py:49 pod/video/forms.py:264 #, python-format msgid "" "The current file %(size)s, which is too large. The maximum file size is " @@ -3221,7 +3431,7 @@ msgid "Enter new name of folder" msgstr "" #: pod/podfile/templates/podfile/home_content.html:53 -#: pod/podfile/templates/podfile/list_folder_files.html:80 +#: pod/podfile/templates/podfile/list_folder_files.html:189 #: pod/video/templates/videos/video_edit.html:119 msgid "Loading" msgstr "" @@ -3242,88 +3452,84 @@ msgstr "" msgid "Enter new username" msgstr "" -#: pod/podfile/templates/podfile/list_folder_files.html:10 -msgid "file" -msgstr "" - -#: pod/podfile/templates/podfile/list_folder_files.html:27 +#: pod/podfile/templates/podfile/list_folder_files.html:78 msgid "Rename" msgstr "" -#: pod/podfile/templates/podfile/list_folder_files.html:50 +#: pod/podfile/templates/podfile/list_folder_files.html:134 msgid "Share this folder" msgstr "" -#: pod/podfile/templates/podfile/list_folder_files.html:68 +#: pod/podfile/templates/podfile/list_folder_files.html:179 msgid "Upload Files" msgstr "" -#: pod/podfile/templates/podfile/list_folder_files.html:117 +#: pod/podfile/templates/podfile/list_folder_files.html:273 msgid "Download" msgstr "" -#: pod/podfile/templates/podfile/userfolder.html:7 +#: pod/podfile/templates/podfile/userfolder.html:25 msgid "My folders" msgstr "" -#: pod/podfile/templates/podfile/userfolder.html:12 -#: pod/podfile/templates/podfile/userfolder.html:13 +#: pod/podfile/templates/podfile/userfolder.html:49 +#: pod/podfile/templates/podfile/userfolder.html:50 msgid "Add new folder" msgstr "" -#: pod/podfile/templates/podfile/userfolder.html:20 +#: pod/podfile/templates/podfile/userfolder.html:70 msgid "Filter files" msgstr "" -#: pod/podfile/templates/podfile/userfolder.html:21 +#: pod/podfile/templates/podfile/userfolder.html:91 msgid "" "SuperUser mode : the folders of all users are listed (the owner is noted in " "brackets)" msgstr "" -#: pod/podfile/templates/podfile/userfolder.html:31 +#: pod/podfile/templates/podfile/userfolder.html:114 msgid "Shared folders" msgstr "" -#: pod/podfile/views.py:143 pod/podfile/views.py:552 +#: pod/podfile/views.py:145 pod/podfile/views.py:554 msgid "You cannot see this folder." msgstr "" -#: pod/podfile/views.py:217 +#: pod/podfile/views.py:219 msgid "You cannot edit this folder." msgstr "" -#: pod/podfile/views.py:232 +#: pod/podfile/views.py:234 msgid "Two folders cannot have the same name." msgstr "" -#: pod/podfile/views.py:265 +#: pod/podfile/views.py:267 msgid "You cannot delete home folder." msgstr "" -#: pod/podfile/views.py:296 +#: pod/podfile/views.py:298 msgid "You cannot delete this file." msgstr "" -#: pod/podfile/views.py:333 +#: pod/podfile/views.py:335 msgid "You cannot edit file on this folder." msgstr "" -#: pod/podfile/views.py:384 +#: pod/podfile/views.py:386 #, python-format msgid "The file %(fname)s has not allowed format" msgstr "" -#: pod/podfile/views.py:401 +#: pod/podfile/views.py:403 #, python-format msgid "The file %(fname)s is not valid (%(form_error)s)" msgstr "" -#: pod/podfile/views.py:426 +#: pod/podfile/views.py:428 msgid "You cannot access this folder." msgstr "" -#: pod/podfile/views.py:438 +#: pod/podfile/views.py:440 msgid "You cannot edit this file." msgstr "" @@ -3343,7 +3549,7 @@ msgstr "" msgid "If checked, record will be deleted instead of saving it" msgstr "" -#: pod/recorder/forms.py:74 pod/video/forms.py:716 +#: pod/recorder/forms.py:74 pod/video/forms.py:727 msgid "I agree" msgstr "" @@ -3371,29 +3577,29 @@ msgstr "" msgid "Other" msgstr "" -#: pod/recorder/models.py:39 pod/video/forms.py:145 pod/video/models.py:78 +#: pod/recorder/models.py:39 pod/video/forms.py:147 pod/video/models.py:78 msgid "Attribution 4.0 International (CC BY 4.0)" msgstr "" -#: pod/recorder/models.py:40 pod/video/forms.py:148 pod/video/models.py:79 +#: pod/recorder/models.py:40 pod/video/forms.py:150 pod/video/models.py:79 msgid "Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)" msgstr "" -#: pod/recorder/models.py:44 pod/video/forms.py:152 pod/video/models.py:83 +#: pod/recorder/models.py:44 pod/video/forms.py:154 pod/video/models.py:83 msgid "" "Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)" msgstr "" -#: pod/recorder/models.py:47 pod/video/forms.py:156 pod/video/models.py:86 +#: pod/recorder/models.py:47 pod/video/forms.py:158 pod/video/models.py:86 msgid "Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)" msgstr "" -#: pod/recorder/models.py:50 pod/video/forms.py:161 pod/video/models.py:89 +#: pod/recorder/models.py:50 pod/video/forms.py:163 pod/video/models.py:89 msgid "" "Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)" msgstr "" -#: pod/recorder/models.py:54 pod/video/forms.py:167 pod/video/models.py:93 +#: pod/recorder/models.py:54 pod/video/forms.py:169 pod/video/models.py:93 msgid "Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)" msgstr "" @@ -3443,7 +3649,7 @@ msgstr "" msgid "Video type by default." msgstr "" -#: pod/recorder/models.py:148 pod/video/forms.py:180 pod/video/models.py:544 +#: pod/recorder/models.py:148 pod/video/forms.py:182 pod/video/models.py:544 msgid "Draft" msgstr "" @@ -3467,25 +3673,25 @@ msgstr "" msgid "Viewing this video will not be possible without this password." msgstr "" -#: pod/recorder/models.py:169 pod/video/forms.py:120 pod/video/models.py:504 +#: pod/recorder/models.py:169 pod/video/forms.py:122 pod/video/models.py:504 #: pod/video_search/templates/search/search.html:140 msgid "University course" msgstr "" -#: pod/recorder/models.py:171 pod/video/forms.py:121 pod/video/models.py:506 +#: pod/recorder/models.py:171 pod/video/forms.py:123 pod/video/models.py:506 msgid "Select an university course as audience target of the content." msgstr "" -#: pod/recorder/models.py:174 pod/video/forms.py:127 pod/video/models.py:509 +#: pod/recorder/models.py:174 pod/video/forms.py:129 pod/video/models.py:509 #: pod/video_search/templates/search/search.html:127 msgid "Main language" msgstr "" -#: pod/recorder/models.py:176 pod/video/forms.py:128 pod/video/models.py:511 +#: pod/recorder/models.py:176 pod/video/forms.py:130 pod/video/models.py:511 msgid "Select the main language used in the content." msgstr "" -#: pod/recorder/models.py:178 pod/video/forms.py:199 pod/video/models.py:513 +#: pod/recorder/models.py:178 pod/video/forms.py:201 pod/video/models.py:513 #: pod/video/templates/videos/add_video.html:52 #: pod/video/templates/videos/add_video.html:98 msgid "Transcript" @@ -3502,16 +3708,16 @@ msgid "" "quotation marks." msgstr "" -#: pod/recorder/models.py:190 pod/video/forms.py:141 pod/video/models.py:525 +#: pod/recorder/models.py:190 pod/video/forms.py:143 pod/video/models.py:525 msgid "Licence" msgstr "" -#: pod/recorder/models.py:198 pod/video/forms.py:170 pod/video/models.py:392 +#: pod/recorder/models.py:198 pod/video/forms.py:172 pod/video/models.py:392 #: pod/video/models.py:533 msgid "Themes" msgstr "" -#: pod/recorder/models.py:200 pod/video/forms.py:138 pod/video/forms.py:174 +#: pod/recorder/models.py:200 pod/video/forms.py:140 pod/video/forms.py:176 #: pod/video/models.py:535 pod/video/models.py:1534 msgid "" "Hold down \"Control\", or \"Command\" on a Mac, to select more than one." @@ -3763,136 +3969,136 @@ msgstr "" msgid "Transcript selected" msgstr "" -#: pod/video/admin.py:268 pod/video/forms.py:234 pod/video/forms.py:585 -#: pod/video/forms.py:587 pod/video/models.py:245 +#: pod/video/admin.py:268 pod/video/forms.py:236 pod/video/forms.py:596 +#: pod/video/forms.py:598 pod/video/models.py:245 msgid "Owners" msgstr "" -#: pod/video/forms.py:87 +#: pod/video/forms.py:89 msgid "File field" msgstr "" -#: pod/video/forms.py:88 pod/video/models.py:458 +#: pod/video/forms.py:90 pod/video/models.py:458 #: pod/video/templates/videos/add_video.html:88 msgid "You can send an audio or video file." msgstr "" -#: pod/video/forms.py:89 pod/video/views.py:1644 +#: pod/video/forms.py:91 pod/video/views.py:1644 #, python-format msgid "The following formats are supported: %s" msgstr "" -#: pod/video/forms.py:92 pod/video/forms.py:219 pod/video/forms.py:245 +#: pod/video/forms.py:94 pod/video/forms.py:221 pod/video/forms.py:247 msgid "Title field" msgstr "" -#: pod/video/forms.py:93 pod/video/forms.py:220 pod/video/forms.py:246 +#: pod/video/forms.py:95 pod/video/forms.py:222 pod/video/forms.py:248 msgid "" "Please choose a title as short and accurate as possible, reflecting the main " "subject / context of the content." msgstr "" -#: pod/video/forms.py:95 pod/video/forms.py:222 pod/video/forms.py:248 +#: pod/video/forms.py:97 pod/video/forms.py:224 pod/video/forms.py:250 msgid "" "You can use the “Description” field below for all additional information." msgstr "" -#: pod/video/forms.py:97 +#: pod/video/forms.py:99 msgid "" "You may add contributors later using the second button of the content " "edition toolbar: they will appear in the “Info” tab at the bottom of the " "audio / video player." msgstr "" -#: pod/video/forms.py:102 +#: pod/video/forms.py:104 msgid "" "Select the type of your content. If the type you wish does not appear in the " "list, please temporary select “Other” and contact us to explain your needs." msgstr "" -#: pod/video/forms.py:106 pod/video/models.py:487 +#: pod/video/forms.py:108 pod/video/models.py:487 msgid "Additional owners" msgstr "" -#: pod/video/forms.py:107 +#: pod/video/forms.py:109 msgid "" "In this field you can select and add additional owners to the video. These " "additional owners will have the same rights as you except that they can't " "delete this video." msgstr "" -#: pod/video/forms.py:112 pod/video/forms.py:226 pod/video/forms.py:252 +#: pod/video/forms.py:114 pod/video/forms.py:228 pod/video/forms.py:254 #: pod/video/models.py:230 pod/video/models.py:313 pod/video/models.py:497 msgid "" "In this field you can describe your content, add all needed related " "information, and format the result using the toolbar." msgstr "" -#: pod/video/forms.py:116 +#: pod/video/forms.py:118 msgid "Date of the event field" msgstr "" -#: pod/video/forms.py:117 +#: pod/video/forms.py:119 msgid "Enter the date of the event, if applicable, in the AAAA-MM-JJ format." msgstr "" -#: pod/video/forms.py:123 +#: pod/video/forms.py:125 msgid "" "Choose “None / All” if it does not apply or if all are concerned, or “Other” " "for an audience outside the european LMD scheme." msgstr "" -#: pod/video/forms.py:131 +#: pod/video/forms.py:133 msgid "" "Please try to add only relevant keywords that can be useful to other users." msgstr "" -#: pod/video/forms.py:135 +#: pod/video/forms.py:137 msgid "" "Select the discipline to which your content belongs. If the discipline you " "wish does not appear in the list, please select nothing and contact us to " "explain your needs." msgstr "" -#: pod/video/forms.py:171 +#: pod/video/forms.py:173 msgid "Select the channel in which you want your content to appear." msgstr "" -#: pod/video/forms.py:172 +#: pod/video/forms.py:174 msgid "Themes related to this channel will appear in the “Themes” list below." msgstr "" -#: pod/video/forms.py:176 +#: pod/video/forms.py:178 msgid "" "If the channel or Themes you wish does not appear in the list, please select " "nothing and contact us to explain your needs." msgstr "" -#: pod/video/forms.py:181 +#: pod/video/forms.py:183 msgid "" "In “Draft mode”, the content shows nowhere and nobody else but you can see " "it." msgstr "" -#: pod/video/forms.py:185 +#: pod/video/forms.py:187 msgid "" "If you don't select “Draft mode”, you can restrict the content access to " "only people who can log in" msgstr "" -#: pod/video/forms.py:189 +#: pod/video/forms.py:191 msgid "" "If you don't select “Draft mode”, you can add a password which will be asked " "to anybody willing to watch your content." msgstr "" -#: pod/video/forms.py:192 +#: pod/video/forms.py:194 msgid "" "If your video is in a playlist the password of your video will be removed " "automatically." msgstr "" -#: pod/video/forms.py:200 pod/video/templates/videos/add_video.html:101 +#: pod/video/forms.py:202 pod/video/templates/videos/add_video.html:101 msgid "" "Available only in French and English, transcription is a speech recognition " "technology that transforms an oral speech into text in an automated way. By " @@ -3900,55 +4106,55 @@ msgid "" "encoding the video." msgstr "" -#: pod/video/forms.py:205 pod/video/templates/videos/add_video.html:102 +#: pod/video/forms.py:207 pod/video/templates/videos/add_video.html:102 msgid "" "You will probably have to modify this file using the captioning tool in the " "completion page to improve it." msgstr "" -#: pod/video/forms.py:230 pod/video/models.py:242 +#: pod/video/forms.py:232 pod/video/models.py:242 msgid "Extra style" msgstr "" -#: pod/video/forms.py:230 pod/video/models.py:237 +#: pod/video/forms.py:232 pod/video/models.py:237 msgid "Background color" msgstr "" -#: pod/video/forms.py:231 +#: pod/video/forms.py:233 msgid "In this field you can add some style to personnalize your channel." msgstr "" -#: pod/video/forms.py:235 +#: pod/video/forms.py:237 msgid "" "Owners can add videos to this channel and access this page to customize the " "channel." msgstr "" -#: pod/video/forms.py:237 +#: pod/video/forms.py:239 msgid "Users can only add videos to this channel" msgstr "" -#: pod/video/forms.py:393 +#: pod/video/forms.py:395 msgid "The date must be before or equal to " msgstr "" -#: pod/video/forms.py:412 +#: pod/video/forms.py:414 msgid "Owner of the video cannot be an additional owner too" msgstr "" -#: pod/video/forms.py:466 pod/video/templates/videos/add_video.html:85 +#: pod/video/forms.py:471 pod/video/templates/videos/add_video.html:85 msgid "File" msgstr "" -#: pod/video/forms.py:717 +#: pod/video/forms.py:728 msgid "Delete video cannot be undo" msgstr "" -#: pod/video/forms.py:784 +#: pod/video/forms.py:795 msgid "A note can't be empty" msgstr "" -#: pod/video/forms.py:806 +#: pod/video/forms.py:817 msgid "A comment can't be empty" msgstr "" @@ -4400,14 +4606,14 @@ msgstr "" #: pod/video/templates/channel/channel_edit.html:32 #: pod/video/templates/channel/channel_edit.html:33 #: pod/video/templates/channel/theme_edit.html:32 -#: pod/video/templates/videos/video.html:97 +#: pod/video/templates/videos/video.html:98 msgid "Edit the themes" msgstr "" #: pod/video/templates/channel/channel.html:76 #: pod/video/templates/channel/my_channels.html:20 #: pod/video/templates/channel/theme_edit.html:33 -#: pod/video/templates/videos/video.html:97 +#: pod/video/templates/videos/video.html:98 msgid "Edit the channel" msgstr "" @@ -4730,182 +4936,23 @@ msgstr "" msgid "contact its owner" msgstr "" -#: pod/video/templates/videos/video-info.html:10 -msgid "" -"This is a 360 degree video. To look around click and drag your mouse on the " -"video." -msgstr "" - -#: pod/video/templates/videos/video-info.html:15 -msgid "Tags:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:24 -msgid "No information available" -msgstr "" - -#: pod/video/templates/videos/video-info.html:36 -msgid "Added by:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:46 -msgid "Additional owners:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:59 -msgid "Contributors:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:63 -msgid "send an email" -msgstr "" - -#: pod/video/templates/videos/video-info.html:68 -msgid "contributor web link" -msgstr "" - -#: pod/video/templates/videos/video-info.html:78 -msgid "Updated on:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:79 -msgid "Duration:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:80 -msgid "Channel:" -msgid_plural "Channels:" -msgstr[0] "" -msgstr[1] "" - -#: pod/video/templates/videos/video-info.html:81 -msgid "Number of view:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:81 -msgid "Show details of view statistics" -msgstr "" - -#: pod/video/templates/videos/video-info.html:81 -msgid "Show details views" -msgstr "" - -#: pod/video/templates/videos/video-info.html:84 -msgid "Type:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:85 -msgid "Main language:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:87 -msgid "Audience:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:91 -msgid "Disciplines:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:100 -msgid "Licence:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:112 -msgid "Video file(s):" -msgstr "" - -#: pod/video/templates/videos/video-info.html:126 -msgid "Audio file:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:138 -msgid "Document:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:154 -#: pod/video/templates/videos/video_edit.html:161 -msgid "Embed/Share (Draft Mode)" -msgstr "" - -#: pod/video/templates/videos/video-info.html:157 -msgid "Social Networks" -msgstr "" - -#: pod/video/templates/videos/video-info.html:167 -msgid "" -"Please note that your video is in draft mode.
The following links " -"contain a key allowing access. Anyone with this links can access it." -msgstr "" - -#: pod/video/templates/videos/video-info.html:173 -msgid "Options" -msgstr "" - -#: pod/video/templates/videos/video-info.html:176 -msgid "Autoplay" -msgstr "" - -#: pod/video/templates/videos/video-info.html:177 -msgid "Check the box to autoplay the video." -msgstr "" - -#: pod/video/templates/videos/video-info.html:182 -msgid "Loop" -msgstr "" - -#: pod/video/templates/videos/video-info.html:183 -msgid "Check the box to loop the video." -msgstr "" - -#: pod/video/templates/videos/video-info.html:189 -msgid "Start video" -msgstr "" - -#: pod/video/templates/videos/video-info.html:190 -msgid "Start at" -msgstr "" - -#: pod/video/templates/videos/video-info.html:193 -msgid "Check the box to indicate the beginning of playing desired." -msgstr "" - -#: pod/video/templates/videos/video-info.html:198 -msgid "Embed in a web page" -msgstr "" - -#: pod/video/templates/videos/video-info.html:200 -msgid "Copy the content of this text box and paste it in the page:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:205 -msgid "Share the link" -msgstr "" - -#: pod/video/templates/videos/video-info.html:207 -msgid "Use this link to share the video:" -msgstr "" - -#: pod/video/templates/videos/video-info.html:211 -msgid "QR code for this link:" -msgstr "" - #: pod/video/templates/videos/video.html:24 #: pod/video/templates/videos/video.html:37 -#: pod/video/templates/videos/video.html:94 +#: pod/video/templates/videos/video.html:95 msgid "Added by" msgstr "" -#: pod/video/templates/videos/video.html:118 +#: pod/video/templates/videos/video.html:119 #: pod/video/templates/videos/video_edit.html:71 msgid "The video is currently waiting for encoding." msgstr "" -#: pod/video/templates/videos/video.html:130 +#: pod/video/templates/videos/video.html:131 #: pod/video/templates/videos/video_edit.html:83 msgid "The video is currently being transcripted." msgstr "" -#: pod/video/templates/videos/video.html:158 +#: pod/video/templates/videos/video.html:159 msgid "" "This video is chaptered. Click the chapter button on the video player to view them." diff --git a/pod/locale/nl/LC_MESSAGES/djangojs.mo b/pod/locale/nl/LC_MESSAGES/djangojs.mo index 6cd597b752eb37f0e0305469c0817a0bf0115e07..2e4dc31b5533e2c16a5173321c00ac7301a901ea 100644 GIT binary patch delta 58 zcmey!^pk0V3Zwl*RSgc;;?e@$fc%t+zD|=B8BHhlPLht$bx+MpElMoOFS1ey$WKkl OEKxAhGto2RVgLY0mlBi! delta 24 gcmey#^pR Date: Thu, 18 Feb 2021 15:55:08 +0100 Subject: [PATCH 11/21] Update encode.py Fix bug with height in mp4 and hls command --- pod/video/encode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pod/video/encode.py b/pod/video/encode.py index d041a8f168..05a3ec54df 100755 --- a/pod/video/encode.py +++ b/pod/video/encode.py @@ -511,7 +511,7 @@ def get_video_command_mp4(video_id, video_data, output_dir): name = "%sp" % height cmd += " %s " % (static_params,) - cmd += FFMPEG_SCALE.format(height=360) + cmd += FFMPEG_SCALE.format(height=height) # cmd += " -vf \"scale=-2:%s\" " % (height) # cmd += "force_original_aspect_ratio=decrease" cmd += " -minrate %s -b:v %s -maxrate %s -bufsize %sk -b:a %s" % ( @@ -747,7 +747,7 @@ def get_video_command_playlist(video_id, video_data, output_dir): name = "%sp" % height cmd += " %s " % (static_params,) - cmd += FFMPEG_SCALE.format(height=360) + cmd += FFMPEG_SCALE.format(height=height) # cmd += " %s -vf " % (static_params,) # cmd += "\"scale=-2:%s\"" % (height) From 9a096581c7a8b7ade919e7ab65d2fdb9bb7b8aee Mon Sep 17 00:00:00 2001 From: Eliam LOTONGA Date: Thu, 18 Feb 2021 16:25:07 +0100 Subject: [PATCH 12/21] Fix upload file by fixing code format --- pod/podfile/templates/podfile/list_folder_files.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pod/podfile/templates/podfile/list_folder_files.html b/pod/podfile/templates/podfile/list_folder_files.html index db9ddc4b46..b5e5785d48 100644 --- a/pod/podfile/templates/podfile/list_folder_files.html +++ b/pod/podfile/templates/podfile/list_folder_files.html @@ -143,9 +143,7 @@ id="formuploadfile" enctype="multipart/form-data" style="" - action="{% url " - podfile:uploadfiles - " %}" + action="{% url "podfile:uploadfiles" %}" > {% csrf_token %} From be50966ee8ff94bb2b3d0564435b83a1d339d4de Mon Sep 17 00:00:00 2001 From: ptitloup Date: Fri, 19 Feb 2021 10:04:48 +0100 Subject: [PATCH 13/21] update messages --- pod/locale/fr/LC_MESSAGES/django.mo | Bin 97230 -> 97286 bytes pod/locale/fr/LC_MESSAGES/django.po | 705 +++++++++++++--------------- pod/locale/nl/LC_MESSAGES/django.po | 692 +++++++++++++-------------- 3 files changed, 645 insertions(+), 752 deletions(-) diff --git a/pod/locale/fr/LC_MESSAGES/django.mo b/pod/locale/fr/LC_MESSAGES/django.mo index d38c5e09bd4edb431ce0f2493b30063f163a012d..71571b780c34674cf14165f5f21a9f5273db4cf5 100644 GIT binary patch delta 24316 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 delta 24274 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 M@gp{ldE%S!KVB@6+W-In diff --git a/pod/locale/fr/LC_MESSAGES/django.po b/pod/locale/fr/LC_MESSAGES/django.po index 26a948de95..8142ccfb9c 100755 --- a/pod/locale/fr/LC_MESSAGES/django.po +++ b/pod/locale/fr/LC_MESSAGES/django.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Pod\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-18 09:38+0100\n" +"POT-Creation-Date: 2021-02-19 08:39+0000\n" "PO-Revision-Date: \n" "Last-Translator: obado \n" "Language-Team: \n" @@ -26,11 +26,10 @@ msgid "Establishment" msgstr "Etablissement" #: pod/authentication/forms.py:60 pod/authentication/forms.py:61 -#: pod/bbb/models.py:141 pod/custom/templates/navbar.html:22 -#: pod/main/templates/navbar.html:22 pod/main/templates/navbar_collapse.html:76 -#: pod/podfile/models.py:37 pod/video/forms.py:236 pod/video/forms.py:589 -#: pod/video/forms.py:593 pod/video/models.py:248 -#: pod/video/templates/videos/filter_aside.html:13 +#: pod/bbb/models.py:141 pod/main/templates/navbar.html:22 +#: pod/main/templates/navbar_collapse.html:76 pod/podfile/models.py:37 +#: pod/video/forms.py:236 pod/video/forms.py:589 pod/video/forms.py:593 +#: pod/video/models.py:248 pod/video/templates/videos/filter_aside.html:13 msgid "Users" msgstr "Utilisateurs" @@ -115,7 +114,7 @@ msgstr "Authentification locale" #: pod/authentication/templates/registration/login.html:9 #: pod/authentication/templates/registration/login.html:12 #: pod/authentication/templates/registration/login.html:63 -#: pod/custom/templates/navbar.html:111 pod/main/templates/navbar.html:117 +#: pod/main/templates/navbar.html:117 msgid "Log in" msgstr "Connexion" @@ -141,7 +140,7 @@ msgid "Forgotten your password or username?" msgstr "Mot de passe ou identifiant perdu ?" #: pod/authentication/templates/userpicture/userpicture.html:7 -#: pod/custom/templates/navbar.html:85 pod/main/templates/navbar.html:88 +#: pod/main/templates/navbar.html:88 msgid "Change your picture" msgstr "Changer votre image de profil" @@ -594,7 +593,7 @@ msgstr "Éditer le chapitre" #: pod/completion/templates/track/list_track.html:23 #: pod/completion/templates/track/list_track.html:42 #: pod/enrichment/templates/enrichment/list_enrichment.html:30 -#: pod/podfile/templates/podfile/list_folder_files.html:251 +#: pod/podfile/templates/podfile/list_folder_files.html:249 #: pod/video/templates/channel/list_theme.html:27 msgid "Modify" msgstr "Modifier" @@ -607,7 +606,7 @@ msgstr "Supprimer le chapitre" #: pod/enrichment/templates/enrichment/list_enrichment.html:38 #: pod/playlist/templates/playlist.html:68 #: pod/podfile/templates/podfile/list_folder_files.html:104 -#: pod/podfile/templates/podfile/list_folder_files.html:299 +#: pod/podfile/templates/podfile/list_folder_files.html:297 #: pod/recorder/templates/recorder/record_delete.html:9 #: pod/video/templates/channel/list_theme.html:35 #: pod/video/templates/videos/category_modal.html:66 @@ -623,7 +622,6 @@ msgstr "Chapitre vidéo" #: pod/chapter/templates/video_chapter.html:16 #: pod/completion/templates/video_caption_maker.html:13 #: pod/completion/templates/video_completion.html:13 -#: pod/custom/templates/navbar.html:91 #: pod/enrichment/templates/enrichment/group_enrichment.html:10 #: pod/interactive/templates/interactive/group_interactive.html:10 #: pod/main/templates/navbar.html:94 @@ -1368,363 +1366,6 @@ msgstr "Le fichier n’a pas été enregistré." msgid "Please correct errors" msgstr "Veuillez corriger les erreurs" -#: pod/custom/templates/base.html:71 pod/main/templates/base.html:71 -msgid "Home" -msgstr "Accueil" - -#: pod/custom/templates/footer.html:27 pod/main/templates/footer.html:30 -msgid "Pod Project" -msgstr "Projet Pod" - -#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 -#: pod/video/feeds.py:107 -msgid "video platform of" -msgstr "plateforme vidéos de" - -#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 -msgid "Release" -msgstr "Version" - -#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 -msgid "videos availables" -msgstr "vidéos disponibles" - -#: pod/custom/templates/navbar.html:17 pod/main/templates/navbar.html:17 -#: pod/recorder/models.py:194 pod/video/forms.py:172 pod/video/models.py:261 -#: pod/video/models.py:529 -msgid "Channels" -msgstr "Chaînes" - -#: pod/custom/templates/navbar.html:27 pod/main/templates/navbar.html:27 -#: pod/video/models.py:419 pod/video/templates/videos/filter_aside.html:34 -msgid "Types" -msgstr "Types" - -#: pod/custom/templates/navbar.html:32 pod/live/templates/live/building.html:11 -#: pod/live/templates/live/live.html:20 pod/live/templates/live/live.html:24 -#: pod/live/templates/live/lives.html:15 pod/live/templates/live/lives.html:18 -#: pod/live/templates/live/lives.html:21 pod/main/templates/navbar.html:32 -msgid "Lives" -msgstr "Directs" - -#: pod/custom/templates/navbar.html:53 pod/custom/templates/navbar.html:55 -#: pod/main/templates/navbar.html:53 pod/main/templates/navbar.html:55 -#: pod/main/templates/navbar_collapse.html:85 -#: pod/main/templates/navbar_collapse.html:86 -#: pod/video/templates/videos/filter_aside.html:15 -#: pod/video/templates/videos/filter_aside_category.html:24 -#: pod/video_search/forms.py:8 pod/video_search/templates/search/search.html:8 -#: pod/video_search/templates/search/search.html:17 -#: pod/video_search/templates/search/search.html:38 -msgid "Search" -msgstr "Rechercher" - -#: pod/custom/templates/navbar.html:60 pod/custom/templates/navbar.html:62 -#: pod/main/templates/navbar.html:63 pod/main/templates/navbar.html:65 -msgid "Add a video" -msgstr "Ajouter une vidéo" - -#: pod/custom/templates/navbar.html:88 pod/main/templates/navbar.html:91 -msgid "Add your picture" -msgstr "Ajouter votre image de profil" - -#: pod/custom/templates/navbar.html:93 pod/main/templates/navbar.html:96 -#: pod/video/templates/channel/channel_edit.html:17 -#: pod/video/templates/channel/my_channels.html:6 -#: pod/video/templates/channel/my_channels.html:9 -#: pod/video/templates/channel/theme_edit.html:18 -msgid "My channels" -msgstr "Mes chaînes" - -#: pod/custom/templates/navbar.html:95 -#: pod/enrichment/templates/enrichment/video_enrichment.html:106 -#: pod/interactive/templates/interactive/video_interactive.html:101 -#: pod/main/templates/navbar.html:98 -#: pod/playlist/templates/my_playlists.html:10 -#: pod/playlist/templates/my_playlists.html:17 -#: pod/playlist/templates/playlist.html:14 -#: pod/video/templates/videos/video.html:218 -msgid "My playlists" -msgstr "Mes listes de lecture" - -#: pod/custom/templates/navbar.html:97 pod/main/templates/navbar.html:100 -#: pod/podfile/templates/podfile/home.html:6 -#: pod/podfile/templates/podfile/home.html:10 -msgid "My files" -msgstr "Mes fichiers" - -#: pod/custom/templates/navbar.html:100 pod/main/templates/navbar.html:103 -#: pod/recorder/templates/recorder/claim_record.html:11 -#: pod/recorder/templates/recorder/record_delete.html:8 -#: pod/recorder/templates/recorder/record_delete.html:20 -msgid "Claim a record" -msgstr "Revendiquer un enregistrement" - -#: pod/custom/templates/navbar.html:104 pod/custom/templates/navbar.html:105 -#: pod/main/templates/navbar.html:110 pod/main/templates/navbar.html:111 -msgid "Log out" -msgstr "Déconnexion" - -#: pod/custom/templates/videos/video-info.html:9 -#: pod/enrichment/templates/enrichment/video_enrichment.html:69 -#: pod/enrichment/templates/enrichment/video_enrichment.html:70 -#: pod/interactive/templates/interactive/video_interactive.html:56 -#: pod/interactive/templates/interactive/video_interactive.html:57 -#: pod/video/templates/videos/video-info.html:9 -#: pod/video/templates/videos/video.html:168 -#: pod/video/templates/videos/video.html:169 -msgid "Summary" -msgstr "Description" - -#: pod/custom/templates/videos/video-info.html:10 -#: pod/video/templates/videos/video-info.html:10 -msgid "" -"This is a 360 degree video. To look around click and drag your mouse on the " -"video." -msgstr "" -"C'est une vidéo 360. Pour déplacer la vue, cliquer et faites glisser la " -"souris sur la vidéo." - -#: pod/custom/templates/videos/video-info.html:15 -#: pod/video/templates/videos/video-info.html:15 -msgid "Tags:" -msgstr "Mots clés :" - -#: pod/custom/templates/videos/video-info.html:24 -#: pod/video/templates/videos/video-info.html:24 -msgid "No information available" -msgstr "Aucune information disponible" - -#: pod/custom/templates/videos/video-info.html:33 -#: pod/enrichment/templates/enrichment/video_enrichment.html:74 -#: pod/enrichment/templates/enrichment/video_enrichment.html:75 -#: pod/interactive/templates/interactive/video_interactive.html:61 -#: pod/interactive/templates/interactive/video_interactive.html:62 -#: pod/video/templates/videos/video-info.html:33 -#: pod/video/templates/videos/video.html:175 -#: pod/video/templates/videos/video.html:177 -#: pod/video/templates/videos/video.html:179 -msgid "Infos" -msgstr "Informations" - -#: pod/custom/templates/videos/video-info.html:36 -#: pod/video/templates/videos/video-info.html:36 -msgid "Added by:" -msgstr "Ajouté par :" - -#: pod/custom/templates/videos/video-info.html:46 -#: pod/video/templates/videos/video-info.html:46 -msgid "Additional owners:" -msgstr "Propriétaires additionels :" - -#: pod/custom/templates/videos/video-info.html:59 -#: pod/video/templates/videos/video-info.html:59 -msgid "Contributors:" -msgstr "Contributeurs :" - -#: pod/custom/templates/videos/video-info.html:63 -#: pod/video/templates/videos/video-info.html:63 -msgid "send an email" -msgstr "envoyer un courriel" - -#: pod/custom/templates/videos/video-info.html:68 -#: pod/video/templates/videos/video-info.html:68 -msgid "contributor web link" -msgstr "lien du contributeur" - -#: pod/custom/templates/videos/video-info.html:78 -#: pod/video/templates/videos/video-info.html:78 -msgid "Updated on:" -msgstr "Mis à jour le :" - -#: pod/custom/templates/videos/video-info.html:79 -#: pod/video/templates/videos/video-info.html:79 -msgid "Duration:" -msgstr "Durée :" - -#: pod/custom/templates/videos/video-info.html:82 -#, fuzzy -#| msgid "Channel:" -#| msgid_plural "Channels:" -msgid "Channel:" -msgid_plural " Channels:" -msgstr[0] "Chaîne :" -msgstr[1] "Chaînes :" - -#: pod/custom/templates/videos/video-info.html:83 -#: pod/video/templates/videos/video-info.html:80 -msgid "Number of view:" -msgstr "Nombre de vues :" - -#: pod/custom/templates/videos/video-info.html:83 -#: pod/video/templates/videos/video-info.html:80 -msgid "Show details of view statistics" -msgstr "Afficher les details des statistiques de visualisation" - -#: pod/custom/templates/videos/video-info.html:83 -#: pod/video/templates/videos/video-info.html:80 -msgid "Show details views" -msgstr "Afficher les details de visualisation" - -#: pod/custom/templates/videos/video-info.html:87 -#: pod/video/templates/videos/video-info.html:84 -msgid "Type:" -msgstr "Type :" - -#: pod/custom/templates/videos/video-info.html:88 -#: pod/video/templates/videos/video-info.html:85 -msgid "Main language:" -msgstr "Langue principale :" - -#: pod/custom/templates/videos/video-info.html:90 -#: pod/video/templates/videos/video-info.html:87 -msgid "Audience:" -msgstr "Public :" - -#: pod/custom/templates/videos/video-info.html:94 -#: pod/video/templates/videos/video-info.html:91 -msgid "Disciplines:" -msgstr "Disciplines :" - -#: pod/custom/templates/videos/video-info.html:103 -#: pod/video/templates/videos/video-info.html:100 -msgid "Licence:" -msgstr "Licence :" - -#: pod/custom/templates/videos/video-info.html:111 -#: pod/enrichment/templates/enrichment/video_enrichment.html:80 -#: pod/enrichment/templates/enrichment/video_enrichment.html:81 -#: pod/interactive/templates/interactive/video_interactive.html:67 -#: pod/interactive/templates/interactive/video_interactive.html:68 -#: pod/video/templates/videos/video-info.html:108 -#: pod/video/templates/videos/video.html:184 -#: pod/video/templates/videos/video.html:185 -msgid "Downloads" -msgstr "Téléchargements" - -#: pod/custom/templates/videos/video-info.html:115 -#: pod/video/templates/videos/video-info.html:112 -msgid "Video file(s):" -msgstr "Fichiers vidéos :" - -#: pod/custom/templates/videos/video-info.html:129 -#: pod/video/templates/videos/video-info.html:126 -msgid "Audio file:" -msgstr "Fichier audio :" - -#: pod/custom/templates/videos/video-info.html:141 -#: pod/video/templates/videos/video-info.html:138 -msgid "Document:" -msgstr "Document :" - -#: pod/custom/templates/videos/video-info.html:157 -#: pod/video/templates/videos/video-info.html:154 -#: pod/video/templates/videos/video_edit.html:161 -msgid "Embed/Share (Draft Mode)" -msgstr "Intégrer/Partager (Mode brouillon)" - -#: pod/custom/templates/videos/video-info.html:157 -#: pod/enrichment/templates/enrichment/video_enrichment.html:86 -#: pod/enrichment/templates/enrichment/video_enrichment.html:87 -#: pod/interactive/templates/interactive/video_interactive.html:73 -#: pod/interactive/templates/interactive/video_interactive.html:74 -#: pod/video/templates/videos/video-info.html:154 -#: pod/video/templates/videos/video.html:191 -#: pod/video/templates/videos/video.html:192 -msgid "Embed/Share" -msgstr "Intégrer/Partager" - -#: pod/custom/templates/videos/video-info.html:160 -#: pod/video/templates/videos/video-info.html:157 -msgid "Social Networks" -msgstr "Réseaux sociaux" - -#: pod/custom/templates/videos/video-info.html:161 -#: pod/custom/templates/videos/video-info.html:162 -#: pod/custom/templates/videos/video-info.html:163 -#: pod/main/templates/aside.html:11 pod/main/templates/aside.html:12 -#: pod/main/templates/aside.html:13 -#: pod/video/templates/videos/video-info.html:158 -#: pod/video/templates/videos/video-info.html:159 -#: pod/video/templates/videos/video-info.html:160 -msgid "Share on" -msgstr "Partager sur" - -#: pod/custom/templates/videos/video-info.html:170 -#: pod/video/templates/videos/video-info.html:167 -msgid "" -"Please note that your video is in draft mode.
The following links " -"contain a key allowing access. Anyone with this links can access it." -msgstr "" -"Veuillez noter que votre vidéo est en mode brouillon.
Les liens " -"suivants contiennent une clé permettant l’accès. Toute personne disposant de " -"ces liens peut y accéder." - -#: pod/custom/templates/videos/video-info.html:176 -#: pod/video/templates/videos/video-info.html:173 -msgid "Options" -msgstr "Options" - -#: pod/custom/templates/videos/video-info.html:179 -#: pod/video/templates/videos/video-info.html:176 -msgid "Autoplay" -msgstr "Lecture automatique" - -#: pod/custom/templates/videos/video-info.html:180 -#: pod/video/templates/videos/video-info.html:177 -msgid "Check the box to autoplay the video." -msgstr "Cocher cette case pour lancer la lecture automatiquement." - -#: pod/custom/templates/videos/video-info.html:185 -#: pod/video/templates/videos/video-info.html:182 -msgid "Loop" -msgstr "Boucle" - -#: pod/custom/templates/videos/video-info.html:186 -#: pod/video/templates/videos/video-info.html:183 -msgid "Check the box to loop the video." -msgstr "Cocher cette case pour lire la vidéo en boucle." - -#: pod/custom/templates/videos/video-info.html:192 -#: pod/video/templates/videos/video-info.html:189 -msgid "Start video" -msgstr "Début de la vidéo" - -#: pod/custom/templates/videos/video-info.html:193 -#: pod/video/templates/videos/video-info.html:190 -msgid "Start at" -msgstr "Démarrer à" - -#: pod/custom/templates/videos/video-info.html:196 -#: pod/video/templates/videos/video-info.html:193 -msgid "Check the box to indicate the beginning of playing desired." -msgstr "Cocher la case pour indiquer le début de lecture souhaité." - -#: pod/custom/templates/videos/video-info.html:201 -#: pod/video/templates/videos/video-info.html:198 -msgid "Embed in a web page" -msgstr "Intégrer dans une page web" - -#: pod/custom/templates/videos/video-info.html:203 -#: pod/video/templates/videos/video-info.html:200 -msgid "Copy the content of this text box and paste it in the page:" -msgstr "Copier le contenu de cette boite de texte et coller le sur la page :" - -#: pod/custom/templates/videos/video-info.html:208 -#: pod/video/templates/videos/video-info.html:205 -msgid "Share the link" -msgstr "Partager le lien" - -#: pod/custom/templates/videos/video-info.html:210 -#: pod/video/templates/videos/video-info.html:207 -msgid "Use this link to share the video:" -msgstr "Utiliser ce lien pour partager la vidéo :" - -#: pod/custom/templates/videos/video-info.html:214 -#: pod/video/templates/videos/video-info.html:211 -msgid "QR code for this link:" -msgstr "QR code pour le lien :" - #: pod/enrichment/apps.py:7 msgid "Enrichment version" msgstr "Version enrichie" @@ -1966,16 +1607,57 @@ msgstr "Liste des enrichissements" msgid "Delete the enrichment" msgstr "Supprimer l'enrichissement" -#: pod/enrichment/templates/enrichment/video_enrichment-iframe.html:11 -#: pod/enrichment/templates/enrichment/video_enrichment.html:14 -msgid "Enriched" -msgstr "Enrichi" +#: pod/enrichment/templates/enrichment/video_enrichment-iframe.html:11 +#: pod/enrichment/templates/enrichment/video_enrichment.html:14 +msgid "Enriched" +msgstr "Enrichi" + +#: pod/enrichment/templates/enrichment/video_enrichment.html:60 +#: pod/interactive/templates/interactive/video_interactive.html:47 +#: pod/video/templates/videos/video.html:153 +msgid "Report the video" +msgstr "Signaler la vidéo" + +#: pod/enrichment/templates/enrichment/video_enrichment.html:69 +#: pod/enrichment/templates/enrichment/video_enrichment.html:70 +#: pod/interactive/templates/interactive/video_interactive.html:56 +#: pod/interactive/templates/interactive/video_interactive.html:57 +#: pod/video/templates/videos/video-info.html:9 +#: pod/video/templates/videos/video.html:168 +#: pod/video/templates/videos/video.html:169 +msgid "Summary" +msgstr "Description" + +#: pod/enrichment/templates/enrichment/video_enrichment.html:74 +#: pod/enrichment/templates/enrichment/video_enrichment.html:75 +#: pod/interactive/templates/interactive/video_interactive.html:61 +#: pod/interactive/templates/interactive/video_interactive.html:62 +#: pod/video/templates/videos/video-info.html:33 +#: pod/video/templates/videos/video.html:175 +#: pod/video/templates/videos/video.html:177 +#: pod/video/templates/videos/video.html:179 +msgid "Infos" +msgstr "Informations" + +#: pod/enrichment/templates/enrichment/video_enrichment.html:80 +#: pod/enrichment/templates/enrichment/video_enrichment.html:81 +#: pod/interactive/templates/interactive/video_interactive.html:67 +#: pod/interactive/templates/interactive/video_interactive.html:68 +#: pod/video/templates/videos/video-info.html:109 +#: pod/video/templates/videos/video.html:184 +#: pod/video/templates/videos/video.html:185 +msgid "Downloads" +msgstr "Téléchargements" -#: pod/enrichment/templates/enrichment/video_enrichment.html:60 -#: pod/interactive/templates/interactive/video_interactive.html:47 -#: pod/video/templates/videos/video.html:153 -msgid "Report the video" -msgstr "Signaler la vidéo" +#: pod/enrichment/templates/enrichment/video_enrichment.html:86 +#: pod/enrichment/templates/enrichment/video_enrichment.html:87 +#: pod/interactive/templates/interactive/video_interactive.html:73 +#: pod/interactive/templates/interactive/video_interactive.html:74 +#: pod/video/templates/videos/video-info.html:155 +#: pod/video/templates/videos/video.html:191 +#: pod/video/templates/videos/video.html:192 +msgid "Embed/Share" +msgstr "Intégrer/Partager" #: pod/enrichment/templates/enrichment/video_enrichment.html:92 #: pod/enrichment/templates/enrichment/video_enrichment.html:93 @@ -2000,6 +1682,16 @@ msgstr "Version originale" msgid "Add the video to a playlist" msgstr "Ajouter une vidéo à une liste de lecture" +#: pod/enrichment/templates/enrichment/video_enrichment.html:106 +#: pod/interactive/templates/interactive/video_interactive.html:101 +#: pod/main/templates/navbar.html:98 +#: pod/playlist/templates/my_playlists.html:10 +#: pod/playlist/templates/my_playlists.html:17 +#: pod/playlist/templates/playlist.html:14 +#: pod/video/templates/videos/video.html:218 +msgid "My playlists" +msgstr "Mes listes de lecture" + #: pod/enrichment/templates/enrichment/video_enrichment.html:138 msgid "To help you, the different types of enrichments have specific colors" msgstr "" @@ -2316,6 +2008,13 @@ msgstr "Signal" msgid "Heartbeats" msgstr "Signaux" +#: pod/live/templates/live/building.html:11 +#: pod/live/templates/live/live.html:20 pod/live/templates/live/live.html:24 +#: pod/live/templates/live/lives.html:15 pod/live/templates/live/lives.html:18 +#: pod/live/templates/live/lives.html:21 pod/main/templates/navbar.html:32 +msgid "Lives" +msgstr "Directs" + #: pod/live/templates/live/building.html:39 #: pod/live/templates/live/live.html:104 pod/live/templates/live/lives.html:37 msgid "Sorry, no lives found" @@ -3140,6 +2839,14 @@ msgstr "Administration de Pod" msgid "Share" msgstr "Partager" +#: pod/main/templates/aside.html:11 pod/main/templates/aside.html:12 +#: pod/main/templates/aside.html:13 +#: pod/video/templates/videos/video-info.html:159 +#: pod/video/templates/videos/video-info.html:160 +#: pod/video/templates/videos/video-info.html:161 +msgid "Share on" +msgstr "Partager sur" + #: pod/main/templates/aside.html:21 pod/main/templates/aside.html:27 #: pod/recorder/models.py:188 pod/video/forms.py:136 pod/video/models.py:445 #: pod/video/models.py:523 pod/video/templates/videos/filter_aside.html:56 @@ -3157,6 +2864,10 @@ msgstr "Mots clés" msgid "Breadcrumb" msgstr "Fil d’Ariane" +#: pod/main/templates/base.html:71 +msgid "Home" +msgstr "Accueil" + #: pod/main/templates/base.html:76 msgid "Toggle side Menu" msgstr "Afficher/masquer le menu latéral" @@ -3196,6 +2907,22 @@ msgstr "" msgid "Esup Portal" msgstr "ESUP-Portail" +#: pod/main/templates/footer.html:30 +msgid "Pod Project" +msgstr "Projet Pod" + +#: pod/main/templates/footer.html:34 pod/video/feeds.py:107 +msgid "video platform of" +msgstr "plateforme vidéos de" + +#: pod/main/templates/footer.html:34 +msgid "Release" +msgstr "Version" + +#: pod/main/templates/footer.html:34 +msgid "videos availables" +msgstr "vidéos disponibles" + #: pod/main/templates/mail/mail.html:2 pod/main/templates/mail/mail.txt:2 #: pod/main/templates/mail/mail_sender.html:2 #: pod/main/templates/mail/mail_sender.txt:2 @@ -3240,10 +2967,63 @@ msgstr "Vous venez d'envoyer un message depuis" msgid "Return to homepage" msgstr "Revenir à la page d'accueil" +#: pod/main/templates/navbar.html:17 pod/recorder/models.py:194 +#: pod/video/forms.py:172 pod/video/models.py:261 pod/video/models.py:529 +msgid "Channels" +msgstr "Chaînes" + +#: pod/main/templates/navbar.html:27 pod/video/models.py:419 +#: pod/video/templates/videos/filter_aside.html:34 +msgid "Types" +msgstr "Types" + +#: pod/main/templates/navbar.html:53 pod/main/templates/navbar.html:55 +#: pod/main/templates/navbar_collapse.html:85 +#: pod/main/templates/navbar_collapse.html:86 +#: pod/video/templates/videos/filter_aside.html:15 +#: pod/video/templates/videos/filter_aside_category.html:24 +#: pod/video_search/forms.py:8 pod/video_search/templates/search/search.html:8 +#: pod/video_search/templates/search/search.html:17 +#: pod/video_search/templates/search/search.html:38 +msgid "Search" +msgstr "Rechercher" + #: pod/main/templates/navbar.html:60 msgid "Some features are unavailable" msgstr "Certaines fonctionnalités sont indisponibles" +#: pod/main/templates/navbar.html:63 pod/main/templates/navbar.html:65 +msgid "Add a video" +msgstr "Ajouter une vidéo" + +#: pod/main/templates/navbar.html:91 +msgid "Add your picture" +msgstr "Ajouter votre image de profil" + +#: pod/main/templates/navbar.html:96 +#: pod/video/templates/channel/channel_edit.html:17 +#: pod/video/templates/channel/my_channels.html:6 +#: pod/video/templates/channel/my_channels.html:9 +#: pod/video/templates/channel/theme_edit.html:18 +msgid "My channels" +msgstr "Mes chaînes" + +#: pod/main/templates/navbar.html:100 pod/podfile/templates/podfile/home.html:6 +#: pod/podfile/templates/podfile/home.html:10 +msgid "My files" +msgstr "Mes fichiers" + +#: pod/main/templates/navbar.html:103 +#: pod/recorder/templates/recorder/claim_record.html:11 +#: pod/recorder/templates/recorder/record_delete.html:8 +#: pod/recorder/templates/recorder/record_delete.html:20 +msgid "Claim a record" +msgstr "Revendiquer un enregistrement" + +#: pod/main/templates/navbar.html:110 pod/main/templates/navbar.html:111 +msgid "Log out" +msgstr "Déconnexion" + #: pod/main/templates/navbar_collapse.html:8 #, python-format msgid "%(counter)s Channel" @@ -3548,7 +3328,7 @@ msgid "Enter new name of folder" msgstr "Indiquer un nouveau nom à ce dossier" #: pod/podfile/templates/podfile/home_content.html:53 -#: pod/podfile/templates/podfile/list_folder_files.html:189 +#: pod/podfile/templates/podfile/list_folder_files.html:187 #: pod/video/templates/videos/video_edit.html:119 msgid "Loading" msgstr "Chargement" @@ -3577,11 +3357,11 @@ msgstr "Renomer" msgid "Share this folder" msgstr "Partager ce dossier" -#: pod/podfile/templates/podfile/list_folder_files.html:179 +#: pod/podfile/templates/podfile/list_folder_files.html:177 msgid "Upload Files" msgstr "Téléverser des fichiers" -#: pod/podfile/templates/podfile/list_folder_files.html:273 +#: pod/podfile/templates/podfile/list_folder_files.html:271 msgid "Download" msgstr "Télécharger" @@ -4382,6 +4162,7 @@ msgid "USE_OBSOLESCENCE is FALSE" msgstr "USE_OBSOLESCENCE est à FALSE" #: pod/video/management/commands/check_obsolete_videos.py:139 +#: pod/video/management/commands/unarchive_video.py:24 #: pod/video/tests/test_obsolescence.py:175 msgid "Archived" msgstr "Archivé" @@ -5200,6 +4981,170 @@ msgstr "Si vous n'avez pas le mot de passe pour ce contenu, veuillez" msgid "contact its owner" msgstr "contacter son propriétaire" +#: pod/video/templates/videos/video-info.html:10 +msgid "" +"This is a 360 degree video. To look around click and drag your mouse on the " +"video." +msgstr "" +"C'est une vidéo 360. Pour déplacer la vue, cliquer et faites glisser la " +"souris sur la vidéo." + +#: pod/video/templates/videos/video-info.html:15 +msgid "Tags:" +msgstr "Mots clés :" + +#: pod/video/templates/videos/video-info.html:24 +msgid "No information available" +msgstr "Aucune information disponible" + +#: pod/video/templates/videos/video-info.html:36 +msgid "Added by:" +msgstr "Ajouté par :" + +#: pod/video/templates/videos/video-info.html:46 +msgid "Additional owners:" +msgstr "Propriétaires additionels :" + +#: pod/video/templates/videos/video-info.html:59 +msgid "Contributors:" +msgstr "Contributeurs :" + +#: pod/video/templates/videos/video-info.html:63 +msgid "send an email" +msgstr "envoyer un courriel" + +#: pod/video/templates/videos/video-info.html:68 +msgid "contributor web link" +msgstr "lien du contributeur" + +#: pod/video/templates/videos/video-info.html:78 +msgid "Updated on:" +msgstr "Mis à jour le :" + +#: pod/video/templates/videos/video-info.html:79 +msgid "Duration:" +msgstr "Durée :" + +#: pod/video/templates/videos/video-info.html:80 +msgid "Channel:" +msgid_plural " Channels:" +msgstr[0] "Chaîne:" +msgstr[1] " Chaînes:" + +#: pod/video/templates/videos/video-info.html:81 +msgid "Number of view:" +msgstr "Nombre de vues :" + +#: pod/video/templates/videos/video-info.html:81 +msgid "Show details of view statistics" +msgstr "Afficher les details des statistiques de visualisation" + +#: pod/video/templates/videos/video-info.html:81 +msgid "Show details views" +msgstr "Afficher les details de visualisation" + +#: pod/video/templates/videos/video-info.html:85 +msgid "Type:" +msgstr "Type :" + +#: pod/video/templates/videos/video-info.html:86 +msgid "Main language:" +msgstr "Langue principale :" + +#: pod/video/templates/videos/video-info.html:88 +msgid "Audience:" +msgstr "Public :" + +#: pod/video/templates/videos/video-info.html:92 +msgid "Disciplines:" +msgstr "Disciplines :" + +#: pod/video/templates/videos/video-info.html:101 +msgid "Licence:" +msgstr "Licence :" + +#: pod/video/templates/videos/video-info.html:113 +msgid "Video file(s):" +msgstr "Fichiers vidéos :" + +#: pod/video/templates/videos/video-info.html:127 +msgid "Audio file:" +msgstr "Fichier audio :" + +#: pod/video/templates/videos/video-info.html:139 +msgid "Document:" +msgstr "Document :" + +#: pod/video/templates/videos/video-info.html:155 +#: pod/video/templates/videos/video_edit.html:161 +msgid "Embed/Share (Draft Mode)" +msgstr "Intégrer/Partager (Mode brouillon)" + +#: pod/video/templates/videos/video-info.html:158 +msgid "Social Networks" +msgstr "Réseaux sociaux" + +#: pod/video/templates/videos/video-info.html:168 +msgid "" +"Please note that your video is in draft mode.
The following links " +"contain a key allowing access. Anyone with this links can access it." +msgstr "" +"Veuillez noter que votre vidéo est en mode brouillon.
Les liens " +"suivants contiennent une clé permettant l’accès. Toute personne disposant de " +"ces liens peut y accéder." + +#: pod/video/templates/videos/video-info.html:174 +msgid "Options" +msgstr "Options" + +#: pod/video/templates/videos/video-info.html:177 +msgid "Autoplay" +msgstr "Lecture automatique" + +#: pod/video/templates/videos/video-info.html:178 +msgid "Check the box to autoplay the video." +msgstr "Cocher cette case pour lancer la lecture automatiquement." + +#: pod/video/templates/videos/video-info.html:183 +msgid "Loop" +msgstr "Boucle" + +#: pod/video/templates/videos/video-info.html:184 +msgid "Check the box to loop the video." +msgstr "Cocher cette case pour lire la vidéo en boucle." + +#: pod/video/templates/videos/video-info.html:190 +msgid "Start video" +msgstr "Début de la vidéo" + +#: pod/video/templates/videos/video-info.html:191 +msgid "Start at" +msgstr "Démarrer à" + +#: pod/video/templates/videos/video-info.html:194 +msgid "Check the box to indicate the beginning of playing desired." +msgstr "Cocher la case pour indiquer le début de lecture souhaité." + +#: pod/video/templates/videos/video-info.html:199 +msgid "Embed in a web page" +msgstr "Intégrer dans une page web" + +#: pod/video/templates/videos/video-info.html:201 +msgid "Copy the content of this text box and paste it in the page:" +msgstr "Copier le contenu de cette boite de texte et coller le sur la page :" + +#: pod/video/templates/videos/video-info.html:206 +msgid "Share the link" +msgstr "Partager le lien" + +#: pod/video/templates/videos/video-info.html:208 +msgid "Use this link to share the video:" +msgstr "Utiliser ce lien pour partager la vidéo :" + +#: pod/video/templates/videos/video-info.html:212 +msgid "QR code for this link:" +msgstr "QR code pour le lien :" + #: pod/video/templates/videos/video.html:24 #: pod/video/templates/videos/video.html:37 #: pod/video/templates/videos/video.html:95 diff --git a/pod/locale/nl/LC_MESSAGES/django.po b/pod/locale/nl/LC_MESSAGES/django.po index 780ef51d86..9f0c6de264 100755 --- a/pod/locale/nl/LC_MESSAGES/django.po +++ b/pod/locale/nl/LC_MESSAGES/django.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Pod\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-18 09:38+0100\n" +"POT-Creation-Date: 2021-02-19 08:39+0000\n" "PO-Revision-Date: 2021-01-22 12:27+0100\n" "Last-Translator: obado \n" "Language-Team: \n" @@ -26,11 +26,10 @@ msgid "Establishment" msgstr "" #: pod/authentication/forms.py:60 pod/authentication/forms.py:61 -#: pod/bbb/models.py:141 pod/custom/templates/navbar.html:22 -#: pod/main/templates/navbar.html:22 pod/main/templates/navbar_collapse.html:76 -#: pod/podfile/models.py:37 pod/video/forms.py:236 pod/video/forms.py:589 -#: pod/video/forms.py:593 pod/video/models.py:248 -#: pod/video/templates/videos/filter_aside.html:13 +#: pod/bbb/models.py:141 pod/main/templates/navbar.html:22 +#: pod/main/templates/navbar_collapse.html:76 pod/podfile/models.py:37 +#: pod/video/forms.py:236 pod/video/forms.py:589 pod/video/forms.py:593 +#: pod/video/models.py:248 pod/video/templates/videos/filter_aside.html:13 msgid "Users" msgstr "" @@ -115,7 +114,7 @@ msgstr "" #: pod/authentication/templates/registration/login.html:9 #: pod/authentication/templates/registration/login.html:12 #: pod/authentication/templates/registration/login.html:63 -#: pod/custom/templates/navbar.html:111 pod/main/templates/navbar.html:117 +#: pod/main/templates/navbar.html:117 msgid "Log in" msgstr "Inloggen" @@ -139,7 +138,7 @@ msgid "Forgotten your password or username?" msgstr "" #: pod/authentication/templates/userpicture/userpicture.html:7 -#: pod/custom/templates/navbar.html:85 pod/main/templates/navbar.html:88 +#: pod/main/templates/navbar.html:88 msgid "Change your picture" msgstr "" @@ -565,7 +564,7 @@ msgstr "" #: pod/completion/templates/track/list_track.html:23 #: pod/completion/templates/track/list_track.html:42 #: pod/enrichment/templates/enrichment/list_enrichment.html:30 -#: pod/podfile/templates/podfile/list_folder_files.html:251 +#: pod/podfile/templates/podfile/list_folder_files.html:249 #: pod/video/templates/channel/list_theme.html:27 msgid "Modify" msgstr "" @@ -578,7 +577,7 @@ msgstr "" #: pod/enrichment/templates/enrichment/list_enrichment.html:38 #: pod/playlist/templates/playlist.html:68 #: pod/podfile/templates/podfile/list_folder_files.html:104 -#: pod/podfile/templates/podfile/list_folder_files.html:299 +#: pod/podfile/templates/podfile/list_folder_files.html:297 #: pod/recorder/templates/recorder/record_delete.html:9 #: pod/video/templates/channel/list_theme.html:35 #: pod/video/templates/videos/category_modal.html:66 @@ -594,7 +593,6 @@ msgstr "" #: pod/chapter/templates/video_chapter.html:16 #: pod/completion/templates/video_caption_maker.html:13 #: pod/completion/templates/video_completion.html:13 -#: pod/custom/templates/navbar.html:91 #: pod/enrichment/templates/enrichment/group_enrichment.html:10 #: pod/interactive/templates/interactive/group_interactive.html:10 #: pod/main/templates/navbar.html:94 @@ -1302,355 +1300,6 @@ msgstr "" msgid "Please correct errors" msgstr "" -#: pod/custom/templates/base.html:71 pod/main/templates/base.html:71 -msgid "Home" -msgstr "" - -#: pod/custom/templates/footer.html:27 pod/main/templates/footer.html:30 -msgid "Pod Project" -msgstr "" - -#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 -#: pod/video/feeds.py:107 -msgid "video platform of" -msgstr "" - -#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 -msgid "Release" -msgstr "" - -#: pod/custom/templates/footer.html:30 pod/main/templates/footer.html:34 -msgid "videos availables" -msgstr "" - -#: pod/custom/templates/navbar.html:17 pod/main/templates/navbar.html:17 -#: pod/recorder/models.py:194 pod/video/forms.py:172 pod/video/models.py:261 -#: pod/video/models.py:529 -msgid "Channels" -msgstr "" - -#: pod/custom/templates/navbar.html:27 pod/main/templates/navbar.html:27 -#: pod/video/models.py:419 pod/video/templates/videos/filter_aside.html:34 -msgid "Types" -msgstr "" - -#: pod/custom/templates/navbar.html:32 pod/live/templates/live/building.html:11 -#: pod/live/templates/live/live.html:20 pod/live/templates/live/live.html:24 -#: pod/live/templates/live/lives.html:15 pod/live/templates/live/lives.html:18 -#: pod/live/templates/live/lives.html:21 pod/main/templates/navbar.html:32 -msgid "Lives" -msgstr "" - -#: pod/custom/templates/navbar.html:53 pod/custom/templates/navbar.html:55 -#: pod/main/templates/navbar.html:53 pod/main/templates/navbar.html:55 -#: pod/main/templates/navbar_collapse.html:85 -#: pod/main/templates/navbar_collapse.html:86 -#: pod/video/templates/videos/filter_aside.html:15 -#: pod/video/templates/videos/filter_aside_category.html:24 -#: pod/video_search/forms.py:8 pod/video_search/templates/search/search.html:8 -#: pod/video_search/templates/search/search.html:17 -#: pod/video_search/templates/search/search.html:38 -msgid "Search" -msgstr "" - -#: pod/custom/templates/navbar.html:60 pod/custom/templates/navbar.html:62 -#: pod/main/templates/navbar.html:63 pod/main/templates/navbar.html:65 -msgid "Add a video" -msgstr "" - -#: pod/custom/templates/navbar.html:88 pod/main/templates/navbar.html:91 -msgid "Add your picture" -msgstr "" - -#: pod/custom/templates/navbar.html:93 pod/main/templates/navbar.html:96 -#: pod/video/templates/channel/channel_edit.html:17 -#: pod/video/templates/channel/my_channels.html:6 -#: pod/video/templates/channel/my_channels.html:9 -#: pod/video/templates/channel/theme_edit.html:18 -msgid "My channels" -msgstr "" - -#: pod/custom/templates/navbar.html:95 -#: pod/enrichment/templates/enrichment/video_enrichment.html:106 -#: pod/interactive/templates/interactive/video_interactive.html:101 -#: pod/main/templates/navbar.html:98 -#: pod/playlist/templates/my_playlists.html:10 -#: pod/playlist/templates/my_playlists.html:17 -#: pod/playlist/templates/playlist.html:14 -#: pod/video/templates/videos/video.html:218 -msgid "My playlists" -msgstr "" - -#: pod/custom/templates/navbar.html:97 pod/main/templates/navbar.html:100 -#: pod/podfile/templates/podfile/home.html:6 -#: pod/podfile/templates/podfile/home.html:10 -msgid "My files" -msgstr "" - -#: pod/custom/templates/navbar.html:100 pod/main/templates/navbar.html:103 -#: pod/recorder/templates/recorder/claim_record.html:11 -#: pod/recorder/templates/recorder/record_delete.html:8 -#: pod/recorder/templates/recorder/record_delete.html:20 -msgid "Claim a record" -msgstr "" - -#: pod/custom/templates/navbar.html:104 pod/custom/templates/navbar.html:105 -#: pod/main/templates/navbar.html:110 pod/main/templates/navbar.html:111 -msgid "Log out" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:9 -#: pod/enrichment/templates/enrichment/video_enrichment.html:69 -#: pod/enrichment/templates/enrichment/video_enrichment.html:70 -#: pod/interactive/templates/interactive/video_interactive.html:56 -#: pod/interactive/templates/interactive/video_interactive.html:57 -#: pod/video/templates/videos/video-info.html:9 -#: pod/video/templates/videos/video.html:168 -#: pod/video/templates/videos/video.html:169 -msgid "Summary" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:10 -#: pod/video/templates/videos/video-info.html:10 -msgid "" -"This is a 360 degree video. To look around click and drag your mouse on the " -"video." -msgstr "" - -#: pod/custom/templates/videos/video-info.html:15 -#: pod/video/templates/videos/video-info.html:15 -msgid "Tags:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:24 -#: pod/video/templates/videos/video-info.html:24 -msgid "No information available" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:33 -#: pod/enrichment/templates/enrichment/video_enrichment.html:74 -#: pod/enrichment/templates/enrichment/video_enrichment.html:75 -#: pod/interactive/templates/interactive/video_interactive.html:61 -#: pod/interactive/templates/interactive/video_interactive.html:62 -#: pod/video/templates/videos/video-info.html:33 -#: pod/video/templates/videos/video.html:175 -#: pod/video/templates/videos/video.html:177 -#: pod/video/templates/videos/video.html:179 -msgid "Infos" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:36 -#: pod/video/templates/videos/video-info.html:36 -msgid "Added by:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:46 -#: pod/video/templates/videos/video-info.html:46 -msgid "Additional owners:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:59 -#: pod/video/templates/videos/video-info.html:59 -msgid "Contributors:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:63 -#: pod/video/templates/videos/video-info.html:63 -msgid "send an email" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:68 -#: pod/video/templates/videos/video-info.html:68 -msgid "contributor web link" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:78 -#: pod/video/templates/videos/video-info.html:78 -msgid "Updated on:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:79 -#: pod/video/templates/videos/video-info.html:79 -msgid "Duration:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:82 -msgid "Channel:" -msgid_plural " Channels:" -msgstr[0] "" -msgstr[1] "" - -#: pod/custom/templates/videos/video-info.html:83 -#: pod/video/templates/videos/video-info.html:80 -msgid "Number of view:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:83 -#: pod/video/templates/videos/video-info.html:80 -msgid "Show details of view statistics" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:83 -#: pod/video/templates/videos/video-info.html:80 -msgid "Show details views" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:87 -#: pod/video/templates/videos/video-info.html:84 -msgid "Type:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:88 -#: pod/video/templates/videos/video-info.html:85 -msgid "Main language:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:90 -#: pod/video/templates/videos/video-info.html:87 -msgid "Audience:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:94 -#: pod/video/templates/videos/video-info.html:91 -msgid "Disciplines:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:103 -#: pod/video/templates/videos/video-info.html:100 -msgid "Licence:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:111 -#: pod/enrichment/templates/enrichment/video_enrichment.html:80 -#: pod/enrichment/templates/enrichment/video_enrichment.html:81 -#: pod/interactive/templates/interactive/video_interactive.html:67 -#: pod/interactive/templates/interactive/video_interactive.html:68 -#: pod/video/templates/videos/video-info.html:108 -#: pod/video/templates/videos/video.html:184 -#: pod/video/templates/videos/video.html:185 -msgid "Downloads" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:115 -#: pod/video/templates/videos/video-info.html:112 -msgid "Video file(s):" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:129 -#: pod/video/templates/videos/video-info.html:126 -msgid "Audio file:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:141 -#: pod/video/templates/videos/video-info.html:138 -msgid "Document:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:157 -#: pod/video/templates/videos/video-info.html:154 -#: pod/video/templates/videos/video_edit.html:161 -msgid "Embed/Share (Draft Mode)" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:157 -#: pod/enrichment/templates/enrichment/video_enrichment.html:86 -#: pod/enrichment/templates/enrichment/video_enrichment.html:87 -#: pod/interactive/templates/interactive/video_interactive.html:73 -#: pod/interactive/templates/interactive/video_interactive.html:74 -#: pod/video/templates/videos/video-info.html:154 -#: pod/video/templates/videos/video.html:191 -#: pod/video/templates/videos/video.html:192 -msgid "Embed/Share" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:160 -#: pod/video/templates/videos/video-info.html:157 -msgid "Social Networks" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:161 -#: pod/custom/templates/videos/video-info.html:162 -#: pod/custom/templates/videos/video-info.html:163 -#: pod/main/templates/aside.html:11 pod/main/templates/aside.html:12 -#: pod/main/templates/aside.html:13 -#: pod/video/templates/videos/video-info.html:158 -#: pod/video/templates/videos/video-info.html:159 -#: pod/video/templates/videos/video-info.html:160 -msgid "Share on" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:170 -#: pod/video/templates/videos/video-info.html:167 -msgid "" -"Please note that your video is in draft mode.
The following links " -"contain a key allowing access. Anyone with this links can access it." -msgstr "" - -#: pod/custom/templates/videos/video-info.html:176 -#: pod/video/templates/videos/video-info.html:173 -msgid "Options" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:179 -#: pod/video/templates/videos/video-info.html:176 -msgid "Autoplay" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:180 -#: pod/video/templates/videos/video-info.html:177 -msgid "Check the box to autoplay the video." -msgstr "" - -#: pod/custom/templates/videos/video-info.html:185 -#: pod/video/templates/videos/video-info.html:182 -msgid "Loop" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:186 -#: pod/video/templates/videos/video-info.html:183 -msgid "Check the box to loop the video." -msgstr "" - -#: pod/custom/templates/videos/video-info.html:192 -#: pod/video/templates/videos/video-info.html:189 -msgid "Start video" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:193 -#: pod/video/templates/videos/video-info.html:190 -msgid "Start at" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:196 -#: pod/video/templates/videos/video-info.html:193 -msgid "Check the box to indicate the beginning of playing desired." -msgstr "" - -#: pod/custom/templates/videos/video-info.html:201 -#: pod/video/templates/videos/video-info.html:198 -msgid "Embed in a web page" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:203 -#: pod/video/templates/videos/video-info.html:200 -msgid "Copy the content of this text box and paste it in the page:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:208 -#: pod/video/templates/videos/video-info.html:205 -msgid "Share the link" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:210 -#: pod/video/templates/videos/video-info.html:207 -msgid "Use this link to share the video:" -msgstr "" - -#: pod/custom/templates/videos/video-info.html:214 -#: pod/video/templates/videos/video-info.html:211 -msgid "QR code for this link:" -msgstr "" - #: pod/enrichment/apps.py:7 msgid "Enrichment version" msgstr "" @@ -1880,19 +1529,60 @@ msgstr "" msgid "List of the enrichments" msgstr "" -#: pod/enrichment/templates/enrichment/list_enrichment.html:38 -msgid "Delete the enrichment" +#: pod/enrichment/templates/enrichment/list_enrichment.html:38 +msgid "Delete the enrichment" +msgstr "" + +#: pod/enrichment/templates/enrichment/video_enrichment-iframe.html:11 +#: pod/enrichment/templates/enrichment/video_enrichment.html:14 +msgid "Enriched" +msgstr "" + +#: pod/enrichment/templates/enrichment/video_enrichment.html:60 +#: pod/interactive/templates/interactive/video_interactive.html:47 +#: pod/video/templates/videos/video.html:153 +msgid "Report the video" +msgstr "" + +#: pod/enrichment/templates/enrichment/video_enrichment.html:69 +#: pod/enrichment/templates/enrichment/video_enrichment.html:70 +#: pod/interactive/templates/interactive/video_interactive.html:56 +#: pod/interactive/templates/interactive/video_interactive.html:57 +#: pod/video/templates/videos/video-info.html:9 +#: pod/video/templates/videos/video.html:168 +#: pod/video/templates/videos/video.html:169 +msgid "Summary" +msgstr "" + +#: pod/enrichment/templates/enrichment/video_enrichment.html:74 +#: pod/enrichment/templates/enrichment/video_enrichment.html:75 +#: pod/interactive/templates/interactive/video_interactive.html:61 +#: pod/interactive/templates/interactive/video_interactive.html:62 +#: pod/video/templates/videos/video-info.html:33 +#: pod/video/templates/videos/video.html:175 +#: pod/video/templates/videos/video.html:177 +#: pod/video/templates/videos/video.html:179 +msgid "Infos" msgstr "" -#: pod/enrichment/templates/enrichment/video_enrichment-iframe.html:11 -#: pod/enrichment/templates/enrichment/video_enrichment.html:14 -msgid "Enriched" +#: pod/enrichment/templates/enrichment/video_enrichment.html:80 +#: pod/enrichment/templates/enrichment/video_enrichment.html:81 +#: pod/interactive/templates/interactive/video_interactive.html:67 +#: pod/interactive/templates/interactive/video_interactive.html:68 +#: pod/video/templates/videos/video-info.html:109 +#: pod/video/templates/videos/video.html:184 +#: pod/video/templates/videos/video.html:185 +msgid "Downloads" msgstr "" -#: pod/enrichment/templates/enrichment/video_enrichment.html:60 -#: pod/interactive/templates/interactive/video_interactive.html:47 -#: pod/video/templates/videos/video.html:153 -msgid "Report the video" +#: pod/enrichment/templates/enrichment/video_enrichment.html:86 +#: pod/enrichment/templates/enrichment/video_enrichment.html:87 +#: pod/interactive/templates/interactive/video_interactive.html:73 +#: pod/interactive/templates/interactive/video_interactive.html:74 +#: pod/video/templates/videos/video-info.html:155 +#: pod/video/templates/videos/video.html:191 +#: pod/video/templates/videos/video.html:192 +msgid "Embed/Share" msgstr "" #: pod/enrichment/templates/enrichment/video_enrichment.html:92 @@ -1918,6 +1608,16 @@ msgstr "" msgid "Add the video to a playlist" msgstr "" +#: pod/enrichment/templates/enrichment/video_enrichment.html:106 +#: pod/interactive/templates/interactive/video_interactive.html:101 +#: pod/main/templates/navbar.html:98 +#: pod/playlist/templates/my_playlists.html:10 +#: pod/playlist/templates/my_playlists.html:17 +#: pod/playlist/templates/playlist.html:14 +#: pod/video/templates/videos/video.html:218 +msgid "My playlists" +msgstr "" + #: pod/enrichment/templates/enrichment/video_enrichment.html:138 msgid "To help you, the different types of enrichments have specific colors" msgstr "" @@ -2220,6 +1920,13 @@ msgstr "" msgid "Heartbeats" msgstr "" +#: pod/live/templates/live/building.html:11 +#: pod/live/templates/live/live.html:20 pod/live/templates/live/live.html:24 +#: pod/live/templates/live/lives.html:15 pod/live/templates/live/lives.html:18 +#: pod/live/templates/live/lives.html:21 pod/main/templates/navbar.html:32 +msgid "Lives" +msgstr "" + #: pod/live/templates/live/building.html:39 #: pod/live/templates/live/live.html:104 pod/live/templates/live/lives.html:37 msgid "Sorry, no lives found" @@ -3035,6 +2742,14 @@ msgstr "" msgid "Share" msgstr "" +#: pod/main/templates/aside.html:11 pod/main/templates/aside.html:12 +#: pod/main/templates/aside.html:13 +#: pod/video/templates/videos/video-info.html:159 +#: pod/video/templates/videos/video-info.html:160 +#: pod/video/templates/videos/video-info.html:161 +msgid "Share on" +msgstr "" + #: pod/main/templates/aside.html:21 pod/main/templates/aside.html:27 #: pod/recorder/models.py:188 pod/video/forms.py:136 pod/video/models.py:445 #: pod/video/models.py:523 pod/video/templates/videos/filter_aside.html:56 @@ -3052,6 +2767,10 @@ msgstr "" msgid "Breadcrumb" msgstr "" +#: pod/main/templates/base.html:71 +msgid "Home" +msgstr "" + #: pod/main/templates/base.html:76 msgid "Toggle side Menu" msgstr "" @@ -3089,6 +2808,22 @@ msgstr "" msgid "Esup Portal" msgstr "" +#: pod/main/templates/footer.html:30 +msgid "Pod Project" +msgstr "" + +#: pod/main/templates/footer.html:34 pod/video/feeds.py:107 +msgid "video platform of" +msgstr "" + +#: pod/main/templates/footer.html:34 +msgid "Release" +msgstr "" + +#: pod/main/templates/footer.html:34 +msgid "videos availables" +msgstr "" + #: pod/main/templates/mail/mail.html:2 pod/main/templates/mail/mail.txt:2 #: pod/main/templates/mail/mail_sender.html:2 #: pod/main/templates/mail/mail_sender.txt:2 @@ -3133,10 +2868,63 @@ msgstr "" msgid "Return to homepage" msgstr "" +#: pod/main/templates/navbar.html:17 pod/recorder/models.py:194 +#: pod/video/forms.py:172 pod/video/models.py:261 pod/video/models.py:529 +msgid "Channels" +msgstr "" + +#: pod/main/templates/navbar.html:27 pod/video/models.py:419 +#: pod/video/templates/videos/filter_aside.html:34 +msgid "Types" +msgstr "" + +#: pod/main/templates/navbar.html:53 pod/main/templates/navbar.html:55 +#: pod/main/templates/navbar_collapse.html:85 +#: pod/main/templates/navbar_collapse.html:86 +#: pod/video/templates/videos/filter_aside.html:15 +#: pod/video/templates/videos/filter_aside_category.html:24 +#: pod/video_search/forms.py:8 pod/video_search/templates/search/search.html:8 +#: pod/video_search/templates/search/search.html:17 +#: pod/video_search/templates/search/search.html:38 +msgid "Search" +msgstr "" + #: pod/main/templates/navbar.html:60 msgid "Some features are unavailable" msgstr "" +#: pod/main/templates/navbar.html:63 pod/main/templates/navbar.html:65 +msgid "Add a video" +msgstr "" + +#: pod/main/templates/navbar.html:91 +msgid "Add your picture" +msgstr "" + +#: pod/main/templates/navbar.html:96 +#: pod/video/templates/channel/channel_edit.html:17 +#: pod/video/templates/channel/my_channels.html:6 +#: pod/video/templates/channel/my_channels.html:9 +#: pod/video/templates/channel/theme_edit.html:18 +msgid "My channels" +msgstr "" + +#: pod/main/templates/navbar.html:100 pod/podfile/templates/podfile/home.html:6 +#: pod/podfile/templates/podfile/home.html:10 +msgid "My files" +msgstr "" + +#: pod/main/templates/navbar.html:103 +#: pod/recorder/templates/recorder/claim_record.html:11 +#: pod/recorder/templates/recorder/record_delete.html:8 +#: pod/recorder/templates/recorder/record_delete.html:20 +msgid "Claim a record" +msgstr "" + +#: pod/main/templates/navbar.html:110 pod/main/templates/navbar.html:111 +msgid "Log out" +msgstr "" + #: pod/main/templates/navbar_collapse.html:8 #, python-format msgid "%(counter)s Channel" @@ -3431,7 +3219,7 @@ msgid "Enter new name of folder" msgstr "" #: pod/podfile/templates/podfile/home_content.html:53 -#: pod/podfile/templates/podfile/list_folder_files.html:189 +#: pod/podfile/templates/podfile/list_folder_files.html:187 #: pod/video/templates/videos/video_edit.html:119 msgid "Loading" msgstr "" @@ -3460,11 +3248,11 @@ msgstr "" msgid "Share this folder" msgstr "" -#: pod/podfile/templates/podfile/list_folder_files.html:179 +#: pod/podfile/templates/podfile/list_folder_files.html:177 msgid "Upload Files" msgstr "" -#: pod/podfile/templates/podfile/list_folder_files.html:273 +#: pod/podfile/templates/podfile/list_folder_files.html:271 msgid "Download" msgstr "" @@ -4167,6 +3955,7 @@ msgid "USE_OBSOLESCENCE is FALSE" msgstr "" #: pod/video/management/commands/check_obsolete_videos.py:139 +#: pod/video/management/commands/unarchive_video.py:24 #: pod/video/tests/test_obsolescence.py:175 msgid "Archived" msgstr "" @@ -4936,6 +4725,165 @@ msgstr "" msgid "contact its owner" msgstr "" +#: pod/video/templates/videos/video-info.html:10 +msgid "" +"This is a 360 degree video. To look around click and drag your mouse on the " +"video." +msgstr "" + +#: pod/video/templates/videos/video-info.html:15 +msgid "Tags:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:24 +msgid "No information available" +msgstr "" + +#: pod/video/templates/videos/video-info.html:36 +msgid "Added by:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:46 +msgid "Additional owners:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:59 +msgid "Contributors:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:63 +msgid "send an email" +msgstr "" + +#: pod/video/templates/videos/video-info.html:68 +msgid "contributor web link" +msgstr "" + +#: pod/video/templates/videos/video-info.html:78 +msgid "Updated on:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:79 +msgid "Duration:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:80 +msgid "Channel:" +msgid_plural " Channels:" +msgstr[0] "" +msgstr[1] "" + +#: pod/video/templates/videos/video-info.html:81 +msgid "Number of view:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:81 +msgid "Show details of view statistics" +msgstr "" + +#: pod/video/templates/videos/video-info.html:81 +msgid "Show details views" +msgstr "" + +#: pod/video/templates/videos/video-info.html:85 +msgid "Type:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:86 +msgid "Main language:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:88 +msgid "Audience:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:92 +msgid "Disciplines:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:101 +msgid "Licence:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:113 +msgid "Video file(s):" +msgstr "" + +#: pod/video/templates/videos/video-info.html:127 +msgid "Audio file:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:139 +msgid "Document:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:155 +#: pod/video/templates/videos/video_edit.html:161 +msgid "Embed/Share (Draft Mode)" +msgstr "" + +#: pod/video/templates/videos/video-info.html:158 +msgid "Social Networks" +msgstr "" + +#: pod/video/templates/videos/video-info.html:168 +msgid "" +"Please note that your video is in draft mode.
The following links " +"contain a key allowing access. Anyone with this links can access it." +msgstr "" + +#: pod/video/templates/videos/video-info.html:174 +msgid "Options" +msgstr "" + +#: pod/video/templates/videos/video-info.html:177 +msgid "Autoplay" +msgstr "" + +#: pod/video/templates/videos/video-info.html:178 +msgid "Check the box to autoplay the video." +msgstr "" + +#: pod/video/templates/videos/video-info.html:183 +msgid "Loop" +msgstr "" + +#: pod/video/templates/videos/video-info.html:184 +msgid "Check the box to loop the video." +msgstr "" + +#: pod/video/templates/videos/video-info.html:190 +msgid "Start video" +msgstr "" + +#: pod/video/templates/videos/video-info.html:191 +msgid "Start at" +msgstr "" + +#: pod/video/templates/videos/video-info.html:194 +msgid "Check the box to indicate the beginning of playing desired." +msgstr "" + +#: pod/video/templates/videos/video-info.html:199 +msgid "Embed in a web page" +msgstr "" + +#: pod/video/templates/videos/video-info.html:201 +msgid "Copy the content of this text box and paste it in the page:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:206 +msgid "Share the link" +msgstr "" + +#: pod/video/templates/videos/video-info.html:208 +msgid "Use this link to share the video:" +msgstr "" + +#: pod/video/templates/videos/video-info.html:212 +msgid "QR code for this link:" +msgstr "" + #: pod/video/templates/videos/video.html:24 #: pod/video/templates/videos/video.html:37 #: pod/video/templates/videos/video.html:95 From 0d66b8dce83d90657b37cb97fe877a7ed45bb9e5 Mon Sep 17 00:00:00 2001 From: ptitloup Date: Fri, 19 Feb 2021 10:54:33 +0100 Subject: [PATCH 14/21] remove useless code in views.py --- pod/video/views.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pod/video/views.py b/pod/video/views.py index 756d6820cf..8779597b51 100644 --- a/pod/video/views.py +++ b/pod/video/views.py @@ -93,11 +93,6 @@ } ) -TITLE_SITE = TEMPLATE_VISIBLE_SETTINGS[ - 'TITLE_SITE'] if ( - TEMPLATE_VISIBLE_SETTINGS.get('TITLE_SITE') -) else 'pod' - TITLE_SITE = TEMPLATE_VISIBLE_SETTINGS[ 'TITLE_SITE'] if ( TEMPLATE_VISIBLE_SETTINGS.get('TITLE_SITE') From 96cd73741432a9a4e4cc31430a4c40fc5c39bbf5 Mon Sep 17 00:00:00 2001 From: ptitloup Date: Fri, 19 Feb 2021 11:35:38 +0100 Subject: [PATCH 15/21] call get settings to get playback rate in video script template --- pod/video/templates/videos/video-script.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pod/video/templates/videos/video-script.html b/pod/video/templates/videos/video-script.html index 8e423d174c..fea3f2bdf7 100644 --- a/pod/video/templates/videos/video-script.html +++ b/pod/video/templates/videos/video-script.html @@ -1,5 +1,6 @@ -{% load staticfiles %} +{% load staticfiles custom_tags %} {% load i18n %} +{% get_setting "VIDEO_PLAYBACKRATES" '[0.5, 1, 1.5, 2]' as video_playbackrates %}