From: yomguy Date: Fri, 2 Nov 2012 14:12:01 +0000 (+0100) Subject: fix fr locale X-Git-Tag: 0.9-probarreau~337 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=ad9c98053c58f367f4428a2915ad964680f89999;p=teleforma.git fix fr locale --- diff --git a/teleforma/locale/fr/LC_MESSAGES/django.mo b/teleforma/locale/fr/LC_MESSAGES/django.mo index 0a04bce8..d3b6b026 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 84654477..60f15c8f 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: 2012-11-02 15:09+0100\n" +"POT-Creation-Date: 2012-11-02 15:11+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Guillaume Pellerin \n" "Language-Team: LANGUAGE \n" @@ -39,6 +39,10 @@ msgstr "matières" msgid "AE student" msgstr "Etudiant AE" +#: models/ae.py:63 +msgid "AE students" +msgstr "Etudiants AE" + #: models/core.py:74 msgid "Private" msgstr "Privé" diff --git a/teleforma/models/ae.py b/teleforma/models/ae.py index 407064ab..48b92baa 100644 --- a/teleforma/models/ae.py +++ b/teleforma/models/ae.py @@ -60,4 +60,5 @@ class AEStudent(Model): class Meta(MetaCore): db_table = app_label + '_' + 'ae_student' verbose_name = _('AE student') + verbose_name_plural = _('AE students') ordering = ['user__last_name'] \ No newline at end of file