From: yomguy Date: Mon, 18 Feb 2013 17:39:57 +0000 (+0100) Subject: locales, messages X-Git-Tag: 0.9-probarreau~40 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=68a05c1504d4365ffedc4e82bad8a4bc78f1f2ab;p=teleforma.git locales, messages --- diff --git a/teleforma/locale/fr/LC_MESSAGES/django.mo b/teleforma/locale/fr/LC_MESSAGES/django.mo index 53a1ceda..3759b133 100644 Binary files a/teleforma/locale/fr/LC_MESSAGES/django.mo and b/teleforma/locale/fr/LC_MESSAGES/django.mo differ diff --git a/teleforma/locale/fr/LC_MESSAGES/django.po b/teleforma/locale/fr/LC_MESSAGES/django.po index 6e8b519a..11884776 100644 --- a/teleforma/locale/fr/LC_MESSAGES/django.po +++ b/teleforma/locale/fr/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-18 17:39+0100\n" +"POT-Creation-Date: 2013-02-18 18:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Guillaume Pellerin \n" "Language-Team: LANGUAGE \n" @@ -254,13 +254,12 @@ msgid "level" msgstr "niveau" #: models/core.py:478 -#, fuzzy msgid "location" -msgstr "Évaluation" +msgstr "lieu" #: models/core.py:479 msgid "city" -msgstr "" +msgstr "ville" #: models/core.py:482 msgid "comment" @@ -283,9 +282,8 @@ msgid "price" msgstr "prix" #: models/core.py:490 models/pro.py:77 -#, fuzzy msgid "description documents" -msgstr "description" +msgstr "documents de description" #: models/crfpa.py:55 models/crfpa.py:56 #: templates/telemeta/profile_detail.html:63 @@ -1708,22 +1706,19 @@ msgstr "" #: views/pro.py:138 msgid "" -"All your answers have been validated but you did not viewed all the " -"contents. Please do so to get access to the next steps." +"All your answers have been validated. You can now read the corrected " +"documents (step 5)." msgstr "" -"Toutes vos consultations fictives ont été validées mais vous n'avez pas lu " -"tous les documents du séminaire. Veuillez le faire s'il vous plaît pour " -"accéder aux prochaines étapes." +"Toutes vos consultations fictives ont été validées. Auto évaluez-vous à " +"l’aide du corrigé type des consultations fictives (étape 5)" #: views/pro.py:140 msgid "" -"You have successfully terminated your e-learning seminar and all your " -"answers have been validated. You can now download your training testimonial " -"below." +"You have successfully terminated all steps of your e-learning seminar. You " +"can now download your training testimonial below." msgstr "" -"Vous avez achevé toutes les étapes de votre formation et toutes vos " -"consultations fictives ont été validées. Vous pouvez désormais télécharger " -"votre attestation de formation ci-dessous." +"Vous avez achevé toutes les étapes de votre formation. Vous pouvez désormais " +"télécharger votre attestation de formation ci-dessous." #: views/pro.py:184 msgid "You have successfully saved your answer" diff --git a/teleforma/views/pro.py b/teleforma/views/pro.py index 23033bb3..217cc415 100644 --- a/teleforma/views/pro.py +++ b/teleforma/views/pro.py @@ -135,9 +135,9 @@ class SeminarView(SeminarAccessMixin, DetailView): if progress == 100 and not validated: messages.info(self.request, _("You have successfully terminated your e-learning seminar. A training testimonial will be available as soon as the pedagogical team validate all your answers (48h maximum).")) elif progress < 100 and validated: - messages.info(self.request, _("All your answers have been validated but you did not viewed all the contents. Please do so to get access to the next steps.")) + messages.info(self.request, _("All your answers have been validated. You can now read the corrected documents (step 5).")) elif progress == 100 and validated: - messages.info(self.request, _("You have successfully terminated your e-learning seminar and all your answers have been validated. You can now download your training testimonial below.")) + messages.info(self.request, _("You have successfully terminated all steps of your e-learning seminar. You can now download your training testimonial below.")) set_revision(user, seminar) return context